
    @font-face {
      font-family: "Angelton";
      src: url("assets/fonts/Angelton.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "TAN";
      src: url("assets/fonts/TAN.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "The Seasons";
      src: url("assets/fonts/TheSeasons.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Prada";
      src: url("assets/fonts/Prada.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --forest: #004225;
      --forest-shadow: #12392D;
      --forest-dark: #0A1811;
      --gold: #C49A38;
      --bronze: #B88A2E;
      --ivory: #F7F3EA;
      --cream: #EDE6D6;
      --sand: #D8CBB8;
      --sage: #A3AA97;
      --charcoal: #2B2B2B;
      --gray: #6B6B6B;
      --white: #FFFFFF;
      --line: rgba(43, 43, 43, 0.13);
      --soft-shadow: 0 22px 70px rgba(18, 57, 45, 0.12);
      --strong-shadow: 0 34px 90px rgba(18, 57, 45, 0.20);
      --radius: 22px;
      --max-width: 1180px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--ivory);
      color: var(--charcoal);
      font-family: "The Seasons", "Prada", Georgia, serif;
      font-size: 18px;
      line-height: 1.65;
      overflow-x: hidden;
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

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

    .section {
      padding: 80px 0;
      position: relative;
    }

    .section-cream {
      background: var(--cream);
    }

    .section-ivory {
      background: var(--ivory);
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 18px;
      margin-bottom: 28px;
      font-family: "TAN", "Angelton", Georgia, serif;
      color: var(--gold);
      font-size: 18px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .eyebrow::before {
      content: "";
      width: 110px;
      height: 3px;
      background: var(--gold);
      display: inline-block;
      flex: 0 0 auto;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: "Angelton", "TAN", Georgia, serif;
      color: var(--forest-shadow);
      font-weight: 400;
      letter-spacing: -0.035em;
      line-height: 0.98;
    }

    h1 {
      font-size: clamp(34px, 4.6vw, 60px);
      max-width: 760px;
    }

    h2 {
      font-size: clamp(38px, 5vw, 62px);
      max-width: 860px;
    }

    h3 {
      font-size: clamp(26px, 3vw, 34px);
      line-height: 1.1;
    }

    p {
      color: rgba(43, 43, 43, 0.82);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 15px 25px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      font-family: "TAN", "The Seasons", Georgia, serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: 0.25s ease;
      white-space: nowrap;
    }

    .button-primary {
      background: var(--forest);
      color: var(--ivory);
      box-shadow: 0 15px 34px rgba(0, 66, 37, 0.22);
    }

    .button-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 44px rgba(0, 66, 37, 0.28);
    }

    .button-secondary {
      background: transparent;
      color: var(--forest);
      border-color: rgba(0, 66, 37, 0.25);
    }

    .button-secondary:hover {
      border-color: var(--gold);
      color: var(--bronze);
    }

    /* Header CTA: gold-on-forest treatment */
    .header .button-primary {
      background: transparent;
      color: var(--gold);
      border: 1.5px solid var(--gold);
      box-shadow: none;
    }

    .header .button-primary:hover {
      background: var(--gold);
      color: var(--forest-dark);
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(196, 154, 56, 0.28);
    }


    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--forest);
      border-bottom: 1px solid rgba(196, 154, 56, 0.22);
      box-shadow: 0 2px 12px rgba(10, 24, 17, 0.18);
    }

    .header-inner {
      height: 88px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .logo-img {
      height: 54px;
      width: auto;
      object-fit: contain;
    }

    .logo-fallback {
      display: none;
      color: var(--ivory);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
      font-size: 16px;
      color: rgba(247, 243, 234, 0.85);
    }

    .nav a:hover {
      color: var(--gold);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--ivory);
      font-size: 30px;
      cursor: pointer;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid rgba(196, 154, 56, 0.22);
      padding: 22px 24px 28px;
      background: var(--forest-dark);
      color: var(--ivory);
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu a {
      display: block;
      padding: 12px 0;
      font-size: 18px;
      color: var(--ivory);
    }

    .mobile-menu a:hover {
      color: var(--gold);
    }


    .definition {
      background: var(--ivory);
      padding: 88px 0 92px;
      border-bottom: 1px solid var(--line);
      text-align: center;
    }

    .definition .container {
      max-width: 920px;
    }

    .definition .anchor {
      font-family: "Angelton", "TAN", Georgia, serif;
      color: var(--forest-shadow);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.15;
      letter-spacing: -0.025em;
      margin: 22px auto 32px;
      max-width: 820px;
    }

    .definition .promise {
      font-family: "The Seasons", Georgia, serif;
      color: rgba(43, 43, 43, 0.82);
      font-size: 20px;
      line-height: 1.65;
      max-width: 760px;
      margin: 0 auto;
    }

    .definition .eyebrow {
      justify-content: center;
    }

    .definition .eyebrow::before {
      display: none;
    }

    .positioning-callout {
      margin: 30px 0 36px;
      padding: 26px 28px;
      border-left: 3px solid var(--gold);
      background: rgba(196, 154, 56, 0.06);
      border-radius: 4px;
    }

    .positioning-callout p {
      font-family: "The Seasons", Georgia, serif;
      font-style: italic;
      color: var(--forest-shadow);
      font-size: 19px;
      line-height: 1.6;
      margin: 0;
    }

    .deliverables-list {
      margin: 18px 0 22px;
      padding: 0;
      list-style: none;
    }

    .deliverables-list li {
      position: relative;
      padding: 6px 0 6px 22px;
      font-size: 17px;
      color: rgba(43, 43, 43, 0.82);
      line-height: 1.5;
    }

    .deliverables-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      width: 8px;
      height: 2px;
      background: var(--gold);
    }

    .note-line {
      font-size: 15px;
      color: rgba(43, 43, 43, 0.6);
      font-style: italic;
      margin-top: 14px;
    }


    .hero-eyebrow-band {
      text-align: center;
      margin: 0 auto 36px;
      font-family: "TAN", "Angelton", Georgia, serif;
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      font-weight: 600;
      line-height: 1.4;
      padding: 0 20px;
    }

    .hero-eyebrow-band::before,
    .hero-eyebrow-band::after {
      content: "";
      display: inline-block;
      width: 32px;
      height: 2px;
      background: var(--gold);
      vertical-align: middle;
      margin: 0 16px;
    }

    @media (max-width: 640px) {
      .hero-eyebrow-band {
        font-size: 12px;
        letter-spacing: 0.18em;
      }

      .hero-eyebrow-band::before,
      .hero-eyebrow-band::after {
        width: 16px;
        margin: 0 10px;
      }
    }

    .hero {
      padding: 40px 0 72px;
      background:
        radial-gradient(circle at top right, rgba(196, 154, 56, 0.15), transparent 34%),
        linear-gradient(135deg, var(--ivory), #FBF8F0);
      border-bottom: 1px solid var(--line);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 74px;
      align-items: center;
    }

    .hero-subtitle {
      margin-top: 30px;
      max-width: 730px;
      font-size: 21px;
      line-height: 1.6;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 38px;
    }

    .trust-line {
      margin-top: 34px;
      padding-top: 28px;
      border-top: 1px solid rgba(43, 43, 43, 0.14);
      color: var(--forest-shadow);
      font-size: 18px;
      font-style: italic;
      max-width: 640px;
    }

    .hero-visual {
      position: relative;
    }

    .hero-card {
      position: relative;
      min-height: 590px;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--strong-shadow);
      background: var(--forest-shadow);
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(247, 243, 234, 0.24);
      border-radius: 24px;
      z-index: 2;
      pointer-events: none;
    }

    .hero-card img {
      height: 590px;
      width: 100%;
      object-fit: cover;
      object-position: center 25%;
      filter: none;
      opacity: 1;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18, 57, 45, 0.18), transparent 50%);
    }

    .floating-note {
      position: absolute;
      left: -30px;
      bottom: 42px;
      width: 270px;
      background: rgba(247, 243, 234, 0.95);
      border: 1px solid rgba(196, 154, 56, 0.36);
      padding: 24px;
      border-radius: 20px;
      box-shadow: 0 22px 54px rgba(18, 57, 45, 0.20);
    }

    .floating-note strong {
      display: block;
      font-family: "Angelton", Georgia, serif;
      color: var(--forest);
      font-size: 28px;
      line-height: 1.05;
      margin-bottom: 9px;
    }

    .floating-note span {
      display: block;
      color: var(--gray);
      font-size: 15px;
      line-height: 1.4;
    }

    .intro-block {
      max-width: 870px;
      margin-bottom: 60px;
    }

    .intro-block p {
      font-size: 21px;
      margin-top: 24px;
      max-width: 820px;
      line-height: 1.6;
    }


    .problem-subhead {
      font-family: "Angelton", "TAN", Georgia, serif;
      color: var(--forest-shadow);
      font-size: clamp(22px, 2.5vw, 29px);
      line-height: 1.3;
      margin-top: 22px;
      max-width: 920px;
      letter-spacing: -0.015em;
    }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .pain-card,
    .service-card,
    .approach-item,
    .credential-card {
      background: rgba(255, 255, 255, 0.50);
      border: 1px solid rgba(43, 43, 43, 0.12);
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: var(--soft-shadow);
    }

    .pain-card {
      min-height: 285px;
    }

    .icon-mark {
      display: block;
      background: transparent;
      border: none;
      color: var(--gold);
      font-family: "Angelton", Georgia, serif;
      font-size: 52px;
      line-height: 1;
      margin-bottom: 10px;
      font-weight: 400;
      width: auto;
      height: auto;
      letter-spacing: 0.04em;
    }

    .pain-card h3 {
      font-size: 24px;
      margin-top: 4px;
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .pain-card p,
    .approach-item p,
    .service-card p {
      font-size: 19px;
      line-height: 1.65;
    }

    .statement-row {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0;
      align-items: center;
      margin-top: 64px;
      padding-top: 64px;
      border-top: 1px solid var(--line);
      text-align: center;
    }

    .statement-image {
      display: none;
    }

    .statement {
      font-family: "Angelton", Georgia, serif;
      color: var(--forest-shadow);
      font-size: clamp(38px, 5.5vw, 64px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      max-width: 900px;
      margin: 0 auto;
    }

    .statement::after {
      content: "";
      display: block;
      margin: 32px auto 0;
      width: 260px;
      height: 3px;
      background: var(--gold);
    }

    .approach-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 64px;
      align-items: start;
    }

    .approach-list {
      display: grid;
      gap: 24px;
    }

    .approach-item {
      display: grid;
      grid-template-columns: 74px 1fr;
      gap: 22px;
      align-items: start;
    }

    .approach-number {
      font-family: "Angelton", Georgia, serif;
      color: rgba(196, 154, 56, 0.78);
      font-size: 38px;
      line-height: 1;
    }

    .approach-item h3 {
      margin-bottom: 10px;
    }

    .approach-image {
      position: sticky;
      top: 120px;
      height: 620px;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--strong-shadow);
      background: var(--forest-shadow);
    }

    .approach-image img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      filter: grayscale(10%) contrast(1.05);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 26px;
    }

    .service-card {
      padding: 38px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 470px;
      background: rgba(247, 243, 234, 0.78);
    }

    .service-card.featured {
      grid-column: span 2;
      min-height: auto;
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 36px;
      align-items: start;
    }

    .price {
      font-family: "TAN", Georgia, serif;
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 24px;
      font-weight: 600;
    }

    .service-card h3 {
      margin-bottom: 22px;
    }

    .service-card p {
      margin-bottom: 18px;
    }

    .service-card strong {
      color: var(--forest-shadow);
      font-weight: 600;
    }

    .service-card .button {
      margin-top: 28px;
      width: fit-content;
      align-self: center;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 70px;
      align-items: center;
    }

    .portrait {
      position: relative;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: var(--strong-shadow);
      min-height: 660px;
      background: var(--forest-shadow);
    }

    .portrait img {
      width: 100%;
      height: 660px;
      object-fit: cover;
      filter: grayscale(4%) contrast(1.03);
    }

    .portrait::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(18, 57, 45, 0.32), transparent 46%);
    }

    .about-copy p {
      font-size: 19px;
      margin-top: 22px;
      line-height: 1.65;
    }

    .credentials {
      display: grid;
      grid-template-columns: 1fr;
      gap: 22px;
      margin-top: 42px;
    }

    .credential-card {
      padding: 28px;
      background: rgba(255, 255, 255, 0.44);
    }

    .credential-card h3 {
      font-size: 29px;
      margin-bottom: 18px;
    }

    .credential-card ul {
      list-style: none;
      display: grid;
      gap: 14px;
    }

    .credential-card li {
      font-size: 16px;
      line-height: 1.45;
      color: rgba(43, 43, 43, 0.76);
      padding-left: 18px;
      position: relative;
    }

    .credential-card li::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      position: absolute;
      left: 0;
      top: 10px;
    }

    .about-copy .button {
      margin-top: 36px;
    }

    .contact {
      background:
        radial-gradient(circle at top left, rgba(196, 154, 56, 0.16), transparent 38%),
        linear-gradient(135deg, var(--forest), var(--forest-dark));
      color: var(--ivory);
    }

    .contact h2,
    .contact h3 {
      color: var(--ivory);
    }

    .contact h2 {
      font-size: clamp(46px, 6vw, 76px);
      line-height: 1;
    }

    .contact p {
      color: rgba(247, 243, 234, 0.78);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info {
      margin-top: 48px;
      padding-top: 34px;
      border-top: 1px solid rgba(247, 243, 234, 0.18);
      display: grid;
      gap: 24px;
    }

    .contact-info small {
      display: block;
      font-family: "TAN", Georgia, serif;
      color: rgba(247, 243, 234, 0.50);
      font-size: 13px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    .contact-info a,
    .contact-info span {
      color: var(--ivory);
      font-size: 18px;
    }

    .form-card {
      background: rgba(10, 24, 17, 0.44);
      border: 1px solid rgba(247, 243, 234, 0.16);
      border-radius: 26px;
      padding: 40px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .field {
      display: grid;
      gap: 8px;
      margin-bottom: 22px;
    }

    label {
      font-family: "TAN", Georgia, serif;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(247, 243, 234, 0.74);
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(247, 243, 234, 0.20);
      background: rgba(10, 24, 17, 0.48);
      color: var(--ivory);
      border-radius: 12px;
      padding: 15px 16px;
      font-family: "The Seasons", Georgia, serif;
      font-size: 17px;
      outline: none;
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 2px rgba(196, 154, 56, 0.18);
    }

    .form-card .button {
      width: 100%;
      background: var(--gold);
      color: var(--forest-dark);
      font-weight: 600;
      margin-top: 6px;
    }

    .footer {
      background: var(--forest-dark);
      color: rgba(247, 243, 234, 0.68);
      padding: 36px 0;
      border-top: 1px solid rgba(247, 243, 234, 0.08);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-brand {
      font-family: "TAN", Georgia, serif;
      color: var(--ivory);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
      font-size: 15px;
    }

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

    @media (max-width: 980px) {
      .nav,
      .header .button {
        display: none;
      }

      .mobile-toggle {
        display: block;
      }

      .hero-grid,
      .statement-row,
      .approach-grid,
      .about-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .cards-3,
      .services-grid,
      .credentials,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .service-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
      }

      .hero-card,
      .hero-card img,
      .approach-image,
      .portrait,
      .portrait img {
        min-height: auto;
        height: 440px;
      }

      .approach-image {
        position: relative;
        top: auto;
      }

      .floating-note {
        left: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
      }
    }

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

      .section,
      .hero {
        padding: 78px 0;
      }

      .header-inner {
        height: 76px;
      }

      .logo-img {
        height: 44px;
      }

      .logo-fallback {
        font-size: 12px;
      }

      .button {
        width: 100%;
      }

      .hero-actions {
        width: 100%;
      }

      .pain-card,
      .service-card,
      .approach-item,
      .credential-card,
      .form-card {
        padding: 26px;
      }

      .approach-item {
        grid-template-columns: 1fr;
      }

      .hero-card,
      .hero-card img,
      .approach-image,
      .portrait,
      .portrait img,
      .statement-image {
        height: 360px;
      }
    }



    /* Larger logo and rebalanced header */
    .logo-img {
      height: 70px;
      width: auto;
      filter: drop-shadow(0 2px 6px rgba(10, 24, 17, 0.25));
    }

    .header-inner {
      height: 104px;
      gap: 48px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    /* 3-step plan grid */
    .plan-3-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 12px;
    }

    .plan-step {
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(43, 43, 43, 0.12);
      border-radius: var(--radius);
      padding: 38px 32px;
      box-shadow: var(--soft-shadow);
    }

    .plan-step .step-num {
      font-family: "Angelton", "TAN", Georgia, serif;
      color: rgba(196, 154, 56, 0.85);
      font-size: 38px;
      line-height: 1;
      margin-bottom: 18px;
      letter-spacing: 0.04em;
    }

    .plan-step h3 {
      margin-bottom: 14px;
      font-size: clamp(24px, 2.6vw, 30px);
    }

    .plan-step p {
      font-size: 17px;
      line-height: 1.65;
      color: rgba(43, 43, 43, 0.82);
    }

    /* 6-step method line */
    .method-detail {
      margin-top: 72px;
      padding-top: 56px;
      border-top: 1px solid var(--line);
      text-align: center;
    }

    .method-label {
      font-family: "TAN", "Angelton", Georgia, serif;
      color: var(--gold);
      font-size: 14px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      margin-bottom: 28px;
      font-weight: 600;
    }

    .method-line {
      font-family: "Angelton", Georgia, serif;
      color: var(--forest-shadow);
      font-size: clamp(22px, 3vw, 34px);
      margin-bottom: 28px;
      letter-spacing: 0.01em;
      line-height: 1.25;
    }

    .method-line .arrow {
      color: rgba(196, 154, 56, 0.65);
      margin: 0 8px;
    }

    .method-copy {
      max-width: 780px;
      margin: 0 auto;
      font-size: 18px;
      color: rgba(43, 43, 43, 0.78);
      line-height: 1.65;
    }

    /* 4-card grid */
    .cards-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    /* Service readiness header */
    .service-readiness {
      font-family: "Angelton", Georgia, serif;
      font-style: italic;
      color: var(--forest);
      font-size: 18px;
      margin-bottom: 14px;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    .deliverables-line {
      font-size: 16px;
      line-height: 1.6;
      color: rgba(43, 43, 43, 0.75);
      margin: 12px 0 14px;
    }

    @media (max-width: 1100px) {
      .cards-4 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .cards-4 {
        grid-template-columns: 1fr;
      }

      .plan-3-grid {
        grid-template-columns: 1fr;
      }

      .logo-img {
        height: 48px;
      }

      .header-inner {
        height: 80px;
      }
    }


    /* Method flip-card grid */
    .method-flip-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 18px;
    }

    .flip-card {
      perspective: 1400px;
      min-height: 210px;
      cursor: pointer;
      outline: none;
    }

    .flip-card-inner {
      position: relative;
      width: 100%;
      min-height: 210px;
      transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
      transform-style: preserve-3d;
    }

    .flip-card.flipped .flip-card-inner {
      transform: rotateY(180deg);
    }

    .flip-card-front,
    .flip-card-back {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      min-height: 210px;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      border-radius: var(--radius);
      padding: 36px 28px;
      box-shadow: var(--soft-shadow);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }


    .flip-card-front .card-num {
      position: absolute;
      top: 16px;
      left: 0;
      right: 0;
      font-family: "Angelton", "TAN", Georgia, serif;
      color: var(--gold);
      font-size: 26px;
      letter-spacing: 0.08em;
      text-align: center;
      opacity: 0.9;
      font-weight: 400;
    }

    .flip-card-front {
      background: linear-gradient(160deg, var(--forest-shadow), var(--forest-dark));
      color: var(--ivory);
      border: 1px solid rgba(196, 154, 56, 0.28);
      justify-content: center;
      padding: 36px 24px 24px;
    }

    .flip-card-front h3 {
      font-family: "Angelton", Georgia, serif;
      font-size: clamp(34px, 4vw, 46px);
      color: var(--ivory);
      margin: 0;
      line-height: 1.05;
      letter-spacing: -0.02em;
      text-align: center;
    }

    .flip-hint {
      font-family: "TAN", "The Seasons", Georgia, serif;
      color: rgba(196, 154, 56, 0.7);
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      position: absolute;
      bottom: 18px;
      left: 0;
      right: 0;
      text-align: center;
    }

    .flip-card-back {
      background: var(--ivory);
      color: var(--charcoal);
      transform: rotateY(180deg);
      border: 1px solid var(--gold);
    }

    .flip-card-back .step-num-back {
      font-family: "Angelton", Georgia, serif;
      color: var(--forest);
      font-size: 22px;
      margin-bottom: 14px;
      letter-spacing: -0.01em;
    }

    .flip-card-back p {
      font-size: 16.5px;
      line-height: 1.55;
      color: rgba(43, 43, 43, 0.85);
      margin: 0;
    }

    @media (max-width: 900px) {
      .method-flip-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .method-flip-grid {
        grid-template-columns: 1fr;
      }

      .flip-card,
      .flip-card-inner,
      .flip-card-front,
      .flip-card-back {
        min-height: 220px;
      }
    }

  
    /* Page header (used on Method/Services/About/Contact subpages) */
    .page-header {
      background: var(--ivory);
      padding: 80px 0 56px;
      border-bottom: 1px solid var(--line);
      text-align: center;
    }

    .page-header .eyebrow {
      justify-content: center;
      margin-bottom: 18px;
    }

    .page-header .eyebrow::before {
      display: none;
    }

    .page-header h1 {
      font-size: clamp(40px, 5.5vw, 68px);
      max-width: 880px;
      margin: 0 auto;
    }

    .page-header p {
      max-width: 720px;
      margin: 24px auto 0;
      font-size: 20px;
      line-height: 1.6;
      color: rgba(43, 43, 43, 0.78);
    }

    /* Final CTA strip used at bottom of each subpage */
    .final-cta {
      background: linear-gradient(135deg, var(--forest), var(--forest-dark));
      color: var(--ivory);
      padding: 80px 0;
      text-align: center;
    }

    .final-cta h2 {
      color: var(--ivory);
      max-width: 820px;
      margin: 0 auto 18px;
      font-size: clamp(32px, 4vw, 52px);
    }

    .final-cta p {
      color: rgba(247, 243, 234, 0.82);
      max-width: 680px;
      margin: 0 auto 32px;
      font-size: 19px;
      line-height: 1.55;
    }

    .final-cta .button {
      background: var(--gold);
      color: var(--forest-dark);
      font-weight: 700;
    }

    .final-cta .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(196, 154, 56, 0.30);
    }

    /* Three teaser cards on homepage linking to subpages */
    .teaser-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
      margin-top: 18px;
    }

    .teaser-card {
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid rgba(43, 43, 43, 0.12);
      border-radius: var(--radius);
      padding: 36px 30px;
      box-shadow: var(--soft-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 280px;
    }

    .teaser-card h3 {
      font-size: clamp(24px, 2.4vw, 30px);
      margin-bottom: 16px;
    }

    .teaser-card p {
      font-size: 17px;
      line-height: 1.6;
      color: rgba(43, 43, 43, 0.78);
      margin-bottom: 24px;
    }

    .teaser-card .button {
      align-self: flex-start;
      background: transparent;
      color: var(--forest);
      border: 1px solid var(--forest);
    }

    .teaser-card .button:hover {
      background: var(--forest);
      color: var(--ivory);
    }

    @media (max-width: 900px) {
      .teaser-grid { grid-template-columns: 1fr; }
    }
