    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --cream: #fbf4e8;
      --sand: #ead9c0;
      --clay: #d99772;
      --terracotta: #9c6a4a;
      --sage: #8aa37b;
      --sage-deep: #5f7b5e;
      --ink: #2f3029;
      --muted: #776d62;
      --white: #ffffff;
      --shadow: 0 18px 38px rgba(77, 65, 49, 0.12);
      --shadow-hover: 0 24px 48px rgba(77, 65, 49, 0.18);
    }

    body {
      min-height: 100vh;
      font-family: "Poppins", Arial, sans-serif;
      color: var(--ink);
      background: linear-gradient(180deg, #fbf4e8 0%, #fffdf8 42%, #f7efe2 100%);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(251, 244, 232, 0.9);
      border-bottom: 1px solid rgba(95, 123, 94, 0.16);
      backdrop-filter: blur(14px);
    }

    .nav-wrap {
      width: min(1380px, 94vw);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: clamp(1.15rem, 2vw, 1.45rem);
      font-weight: 700;
      color: var(--sage-deep);
      white-space: nowrap;
    }

    .brand-mark {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--sage);
      color: var(--white);
      font-size: 1.25rem;
      box-shadow: 0 10px 22px rgba(95, 123, 94, 0.24);
    }

    nav ul {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    nav li {
      position: relative;
    }

    nav a,
    .dropdown-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 14px;
      border-radius: 999px;
      color: var(--ink);
      font-size: 0.94rem;
      font-weight: 500;
      transition: color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    nav a:hover,
    .dropdown:hover .dropdown-label {
      color: var(--sage-deep);
      background: rgba(138, 163, 123, 0.14);
      transform: translateY(-1px);
    }

    .dropdown-label::after {
      content: "";
      width: 7px;
      height: 7px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      min-width: 170px;
      padding: 8px;
      border: 1px solid rgba(95, 123, 94, 0.14);
      border-radius: 18px;
      background: var(--white);
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    }

    .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu a {
      width: 100%;
      border-radius: 12px;
      justify-content: flex-start;
    }

    main {
      width: min(1380px, 94vw);
      margin: 0 auto;
      padding: 56px 0 78px;
    }

    .intro {
      position: relative;
      isolation: isolate;
      display: grid;
      height: clamp(600px, calc(100vh - 96px), 680px);
      margin-bottom: 48px;
      overflow: hidden;
      border-radius: 0;
      background: #fbf4e8;
      box-shadow: none;
    }

    .hero-image {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 60%;
      z-index: -2;
    }

    .hero-image img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      object-position: center right;
    }

    .intro::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(90deg, #fbf4e8 0%, rgba(251, 244, 232, 0.99) 36%, rgba(251, 244, 232, 0.88) 48%, rgba(251, 244, 232, 0.48) 61%, rgba(251, 244, 232, 0.12) 77%, rgba(138, 163, 123, 0.06) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(95, 123, 94, 0.1) 100%);
    }

    .hero-copy {
      align-self: center;
      width: min(590px, 45%);
      padding: clamp(42px, 5.6vw, 84px) 0 clamp(42px, 5.6vw, 84px) clamp(8px, 1vw, 14px);
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 16px;
      color: var(--sage-deep);
      font-size: 0.86rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    h1 {
      max-width: 720px;
      color: var(--ink);
      font-size: clamp(3rem, 4.7vw, 4.75rem);
      line-height: 1;
      letter-spacing: 0;
    }

    .hero-copy p {
      max-width: 560px;
      margin-top: 22px;
      color: var(--muted);
      font-size: clamp(1.05rem, 1.35vw, 1.22rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 14px 26px;
      border-radius: 999px;
      background: var(--sage-deep);
      color: var(--white);
      font-weight: 700;
      box-shadow: 0 14px 28px rgba(95, 123, 94, 0.18);
      transition: background 180ms ease, transform 180ms ease;
    }

    .hero-cta:hover {
      background: var(--sage);
      transform: translateY(-2px);
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 24px;
      margin-top: 38px;
    }

    .card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      overflow: hidden;
      border: 1px solid rgba(169, 79, 53, 0.12);
      border-radius: 24px;
      background: var(--white);
      box-shadow: var(--shadow);
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    }

    .card:hover {
      transform: translateY(-7px);
      border-color: rgba(201, 111, 74, 0.35);
      box-shadow: var(--shadow-hover);
    }

    .visual {
      display: grid;
      place-items: center;
      min-height: 160px;
      background:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.72), transparent 32%),
        linear-gradient(135deg, #f6c9a8 0%, #e89770 50%, #8aa783 100%);
      color: var(--white);
      font-size: 3rem;
    }

    .card:nth-child(2) .visual {
      background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.72), transparent 30%),
        linear-gradient(135deg, #d7c1ec 0%, #a97cc6 46%, #6f8f72 100%);
    }

    .card:nth-child(3) .visual {
      background:
        radial-gradient(circle at 28% 70%, rgba(255, 255, 255, 0.7), transparent 28%),
        linear-gradient(135deg, #ffcf7a 0%, #d98b54 48%, #567f86 100%);
    }

    .card:nth-child(4) .visual {
      background:
        radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.72), transparent 30%),
        linear-gradient(135deg, #9bc7bd 0%, #6f9b8d 48%, #c96f4a 100%);
    }

    .card-body {
      display: flex;
      flex: 1;
      flex-direction: column;
      padding: 24px;
    }

    .card h2 {
      color: var(--ink);
      font-size: 1.18rem;
      line-height: 1.25;
    }

    .card p {
      display: -webkit-box;
      margin: 12px 0 22px;
      overflow: hidden;
      color: var(--muted);
      font-size: 0.95rem;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
    }

    .cta {
      align-self: flex-start;
      margin-top: auto;
      padding: 11px 18px;
      border-radius: 999px;
      background: var(--terracotta);
      color: var(--white);
      font-size: 0.91rem;
      font-weight: 700;
      box-shadow: 0 12px 22px rgba(169, 79, 53, 0.24);
      transition: background 180ms ease, transform 180ms ease;
    }

    .cta:hover {
      background: var(--clay);
      transform: translateY(-2px);
    }

    .info-sections {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      margin-top: 48px;
    }

    .info-block {
      scroll-margin-top: 110px;
      padding: 24px;
      border: 1px solid rgba(95, 123, 94, 0.14);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.68);
    }

    .info-kicker {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--sage-deep);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .info-block h2 {
      color: var(--ink);
      font-size: 1.08rem;
      line-height: 1.3;
    }

    .info-block p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    footer {
      border-top: 1px solid rgba(169, 79, 53, 0.16);
      background: #2f2924;
      color: rgba(255, 255, 255, 0.84);
    }

    .footer-wrap {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 28px 0;
    }

    .footer-wrap p {
      font-weight: 600;
      color: var(--sand);
    }

    .footer-links {
      display: flex;
      gap: 18px;
      list-style: none;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.9rem;
      transition: color 180ms ease;
    }

    .footer-links a:hover {
      color: var(--sand);
    }

    @media (max-width: 900px) {
      .nav-wrap,
      .footer-wrap {
        align-items: flex-start;
        flex-direction: column;
      }

      nav ul {
        justify-content: flex-start;
      }

      .dropdown-menu {
        left: auto;
        right: 0;
      }

      main {
        padding-top: 56px;
      }

      .content-grid {
        grid-template-columns: 1fr;
      }

      .info-sections {
        grid-template-columns: 1fr;
      }

      .intro {
        height: 680px;
        min-height: 0;
        background: #fbf4e8;
      }

      .hero-image {
        top: auto;
        left: 0;
        width: 100%;
        height: 54%;
      }

      .intro::before {
        background:
          linear-gradient(180deg, #fbf4e8 0%, rgba(251, 244, 232, 0.98) 44%, rgba(251, 244, 232, 0.62) 62%, rgba(251, 244, 232, 0.12) 100%),
          linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(95, 123, 94, 0.08) 100%);
      }

      .hero-image img {
        object-position: center;
      }

      .hero-copy {
        align-self: start;
        width: min(100%, 620px);
        padding: 18px 0 0;
      }

      h1 {
        font-size: clamp(2.65rem, 11vw, 4rem);
      }
    }

    @media (max-width: 460px) {
      .nav-wrap,
      main,
      .footer-wrap {
        width: min(100% - 24px, 1380px);
      }

      nav a,
      .dropdown-label {
        padding: 9px 11px;
        font-size: 0.88rem;
      }

      .card-body {
        padding: 20px;
      }

      .intro {
        height: 660px;
      }

      .hero-copy {
        padding-top: 10px;
      }

      .footer-links {
        flex-direction: column;
        gap: 10px;
      }
    }
