:root {
  --bg: #f9f6f3;
  --surface: #ffffff;
  --surface-soft: #f5f3f0;

  --text: #2d3131;
  --muted: #6b7070;

  --accent: #6b8fa6;        
  --accent-dark: #4a6b7f;   

  --line: #e0dcd8;

  --shadow: 0 12px 30px rgba(40, 60, 60, 0.08);

  --radius: 20px;
  --max: 1120px;
}s

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    color: inherit;
  }
  a:hover,
  a:focus-visible {
    text-decoration: underline;
  }

  .container {
    width: min(calc(100% - 2rem), var(--max));
    margin: 0 auto;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--accent-dark);
    border-bottom: 1px solid rgba(50, 70, 85, 0.3);
  }

  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
  }

  .brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #ffffff;
  }

  .brand strong {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: #ffffff;
  }

  .brand span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.96rem;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: #ffffff;
  }

  .button,
  button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    background: var(--accent-dark);
    color: #fff;
    text-decoration: none;
    padding: 0.95rem 1.35rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
    white-space: normal;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  .button.secondary {
    background: transparent;
    color: var(--accent-dark);
    border: 1px solid var(--accent-dark);
  }

  .button:hover,
  button:hover,
  .button:focus-visible,
  button:focus-visible {
    transform: translateY(-1px);
    opacity: 0.96;
  }

  main section {
    padding: 2rem 0;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
  }

  .eyebrow {
    display: inline-block;
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 1rem;
  }

  h1,
  h2,
  h3 {
    line-height: 1.15;
    margin: 0 0 1rem;
    color: #263028;
  }

  h1 {
    font-size: clamp(2.3rem, 5vw, 4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 4vw, 2.2rem);
  }

  h3 {
    font-size: 1.25rem;
  }

  .lead {
    font-size: 1.15rem;
    color: var(--muted);
    max-width: 46rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 1rem;
  }

  .hero-note {
    color: var(--muted);
    font-size: 1rem;
  }

  .portrait-card,
  .card,
  .quote,
  .offer-box {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .portrait-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
  }

  .portrait-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--line);
  }

  .portrait-placeholder div {
    width: 100%;
    height: 100%;
  }

  .portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .section-intro {
    max-width: 44rem;
    margin-bottom: 2rem;
  }

  .story {
    background: var(--surface-soft);
  }

  .story-box {
    padding: 1rem;
  }

  .grid-2,
  .grid-3 {
    display: grid;
    gap: 1.25rem;
  }

  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .card {
    padding: 1.4rem;
  }

  .card p,
  .story-box p,
  .offer-box p,
  .quote p {
    margin: 0;
    color: var(--muted);
  }

  .list-check,
  .list-plain {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
  }

  .list-check li,
  .list-plain li {
    position: relative;
    padding-left: 1.7rem;
    margin-bottom: 0.8rem;
    color: var(--muted);
  }

  .list-check li::before,
  .list-plain li::before {
    position: absolute;
    left: 0;
    top: 0.05rem;
    color: var(--accent-dark);
    font-weight: 700;
  }

  .list-check li::before {
    content: "✓";
  }

  .list-plain li::before {
    content: "•";
  }

  .offer-wrap {
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 1.5rem;
  }

  .offer-box {
    padding: 2rem;
  }

  .quote-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1.25rem;
  }

  .quote {
    padding: 1.5rem;
  }

  .quote p {
    font-size: 1.05rem;
  }

  .quote footer {
    margin-top: 1rem;
    color: var(--text);
    font-weight: 600;
  }

  .background-items .card h3 {
    margin-bottom: 0.6rem;
  }

  .cta {
    padding-bottom: 5rem;
  }

  .cta-box {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(180deg, #fffdf9 0%, #f1ece3 100%);
  }

  .cta-box p {
    max-width: 40rem;
    margin: 0 auto 1.5rem;
    color: var(--muted);
  }

  .footer {
    margin-top: 1rem;
    padding: .25rem 0;
    background: var(--accent-dark);
    color: var(--surface-soft) !important;
    font-size: 0.95rem;
  }

  .footer a {
    color: var(--surface-soft) !important;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 900px) {
    .hero-grid,
    .offer-wrap,
    .quote-grid,
    .grid-3,
    .grid-2 {
      grid-template-columns: 1fr;
    }

    .nav {
      flex-direction: column;
      align-items: flex-start;
      padding: 0.85rem 0;
    }

    .nav-links {
      width: 100%;
      justify-content: flex-start;
    }

    main section,
    .hero {
      padding: 2rem 0;
    }
  }

  @media (max-width: 900px) {
    .nav-links {
      width: 100%;
      justify-content: flex-start;
    }

    main section,
    .hero {
      padding: 2rem 0;
    }

    .button,
    button {
      width: 100%;
    }

    .hero-actions {
      flex-direction: column;
    }

    .card,
    .story-box,
    .offer-box,
    .quote,
    .cta-box,
    .portrait-card {
      padding: 1.25rem;
    }
  }

  @media (max-width: 640px) {
    .container {
      width: min(calc(100% - 1.25rem), var(--max));
    }

    .button,
    button {
      width: 100%;
    }

    .hero-actions {
      flex-direction: column;
    }

    .card,
    .story-box,
    .offer-box,
    .quote,
    .cta-box,
    .portrait-card {
      padding: 1.25rem;
    }
  }