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

    :root {
      --terra: #C4572B;
      --terra-dark: #A54621;
      --terra-soft: #F6E3D7;
      --terra-glow: rgba(196, 87, 43, 0.12);
      --cream: #FBF6F0;
      --cream-deep: #F4EAE0;
      --white: #FFFFFF;
      --ink: #241B14;
      --ink-soft: #5D5248;
      --ink-faint: #8A7E72;
      --line: #EADDD0;
      --green: #2E7D5B;
      --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      --font-display: 'Fraunces', Georgia, serif;
      --max-width: 1140px;
      --radius: 16px;
      --shadow-sm: 0 1px 3px rgba(36,27,20,0.06);
      --shadow-md: 0 6px 24px rgba(36,27,20,0.08);
      --shadow-lg: 0 16px 48px rgba(36,27,20,0.12);
      --transition: 0.25s ease;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body); color: var(--ink); line-height: 1.65;
      background: var(--cream); -webkit-font-smoothing: antialiased;
      font-size: 16.5px;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    :focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

    .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

    .skip-link {
      position: absolute; left: -9999px; top: 0; z-index: 999;
      background: var(--ink); color: var(--white); padding: 12px 20px; border-radius: 0 0 8px 0;
    }
    .skip-link:focus { left: 0; }

    /* ---- NAV ---- */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(251,246,240,0.92); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line); transition: box-shadow var(--transition);
    }
    .nav-inner {
      max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; height: 74px;
    }
    .logo { font-size: 1.35rem; font-weight: 700; color: var(--ink); display: flex; align-items: center; gap: 10px; font-family: var(--font-display); }
    .logo img { height: 38px; width: 38px; }
    .logo-accent { color: var(--terra); }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); transition: color var(--transition); }
    .nav-links a:hover { color: var(--terra); }
    .nav-cta {
      background: var(--terra); color: var(--white) !important; padding: 10px 22px;
      border-radius: 10px; font-weight: 600; font-size: 0.9rem; transition: var(--transition);
    }
    .nav-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }
    .mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 10px; }
    .mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

    /* ---- HERO ---- */
    .hero { padding: 150px 0 88px; position: relative; overflow: hidden; }
    .hero::before {
      content: ''; position: absolute; top: -30%; right: -15%; width: 640px; height: 640px;
      background: radial-gradient(circle, var(--terra-glow) 0%, transparent 68%); border-radius: 50%;
    }
    .hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; position: relative; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--white); border: 1px solid var(--line);
      padding: 7px 16px; border-radius: 100px; font-size: 0.85rem;
      color: var(--ink-soft); margin-bottom: 22px; font-weight: 500; box-shadow: var(--shadow-sm);
    }
    .hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
    .hero h1 {
      font-family: var(--font-display); font-size: clamp(2.5rem, 5.2vw, 3.55rem);
      font-weight: 600; line-height: 1.12; color: var(--ink); margin-bottom: 22px;
      letter-spacing: -0.5px;
    }
    .hero h1 em { font-style: italic; color: var(--terra); }
    .hero-sub { font-size: 1.13rem; color: var(--ink-soft); margin-bottom: 32px; line-height: 1.7; max-width: 540px; }
    .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
    .btn {
      display: inline-flex; align-items: center; gap: 9px;
      padding: 15px 30px; border-radius: 12px; font-weight: 600;
      font-size: 1rem; transition: var(--transition); cursor: pointer;
      border: none; font-family: var(--font-body);
    }
    .btn svg { flex: none; }
    .btn-primary { background: var(--terra); color: var(--white); box-shadow: 0 4px 14px rgba(196,87,43,0.25); }
    .btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,87,43,0.32); }
    .btn-outline { background: var(--white); color: var(--ink); border: 2px solid var(--line); }
    .btn-outline:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-2px); }
    .hero-psw-link { font-size: 0.95rem; color: var(--ink-soft); font-weight: 500; }
    .hero-psw-link a { color: var(--terra); font-weight: 600; border-bottom: 1px solid transparent; transition: var(--transition); }
    .hero-psw-link a:hover { border-bottom-color: var(--terra); }

    .hero-trust {
      display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 34px; padding-top: 28px;
      border-top: 1px solid var(--line); list-style: none;
    }
    .hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); }
    .hero-trust svg { color: var(--green); flex: none; }
    /* TODO: once liability insurance is active, add a "Fully insured" item to the hero-trust list */

    .hero-visual { position: relative; }
    .hero-frame {
      position: absolute; inset: 18px -18px -18px 18px;
      border: 2px solid var(--terra); border-radius: 24px; opacity: 0.35; z-index: 0;
    }
    .hero-image { border-radius: 24px; overflow: hidden; position: relative; z-index: 1; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
    .hero-image img { width: 100%; height: 100%; object-fit: cover; }
    .hero-float {
      position: absolute; z-index: 2; bottom: 22px; left: -26px;
      background: var(--white); border-radius: 14px; padding: 13px 18px;
      box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 11px;
      font-size: 0.88rem; font-weight: 600; color: var(--ink);
    }
    .hero-float-icon {
      width: 38px; height: 38px; border-radius: 10px; background: var(--terra-soft);
      display: flex; align-items: center; justify-content: center; color: var(--terra); flex: none;
    }
    .hero-float small { display: block; font-weight: 500; color: var(--ink-faint); font-size: 0.78rem; }

    /* ---- AUDIENCE ROUTER ---- */
    .router { padding: 26px 0 0; }
    .router-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .router-card {
      background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
      padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 6px;
      transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    .router-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--terra); }
    .router-card .kicker { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--terra); }
    .router-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--ink); }
    .router-card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
    .router-card .go { font-size: 0.9rem; font-weight: 600; color: var(--terra); margin-top: 10px; display: inline-flex; align-items: center; gap: 6px; }

    /* ---- SECTIONS ---- */
    .section { padding: 96px 0; }
    .section-white { background: var(--white); }
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-label {
      display: inline-block; font-size: 0.8rem; font-weight: 700;
      color: var(--terra); text-transform: uppercase; letter-spacing: 2.2px; margin-bottom: 14px;
    }
    .section-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 600; color: var(--ink); margin-bottom: 16px; letter-spacing: -0.3px; }
    .section-sub { font-size: 1.05rem; color: var(--ink-soft); max-width: 620px; margin: 0 auto; line-height: 1.7; }

    /* ---- SERVICES ---- */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
    .service-card {
      background: var(--cream); border-radius: var(--radius); padding: 34px 28px;
      border: 1px solid var(--line);
      transition: transform 0.35s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.35s ease, border-color 0.35s ease;
    }
    .section-white .service-card { background: var(--cream); }
    .service-card:hover { transform: translateY(-7px); box-shadow: 0 16px 40px rgba(196,87,43,0.13); border-color: var(--terra); }
    .service-card.featured { background: var(--ink); border-color: var(--ink); }
    .service-card.featured h3 { color: var(--white); }
    .service-card.featured p { color: rgba(255,255,255,0.75); }
    .service-card.featured .service-icon { background: rgba(255,255,255,0.12); color: #F0A67E; }
    .service-icon {
      width: 54px; height: 54px; border-radius: 14px; background: var(--terra-soft);
      display: flex; align-items: center; justify-content: center; color: var(--terra);
      margin-bottom: 20px; transition: transform 0.35s ease;
    }
    .service-card:hover .service-icon { transform: scale(1.08) rotate(-4deg); }
    .service-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 9px; color: var(--ink); }
    .service-card p { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.65; }

    /* ---- FACILITIES ---- */
    .facilities { background: var(--cream-deep); }
    .fac-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
    .fac-image { border-radius: 24px; overflow: hidden; aspect-ratio: 11 / 10; box-shadow: var(--shadow-lg); position: relative; }
    .fac-image img { width: 100%; height: 100%; object-fit: cover; }
    .fac-list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 30px 0 34px; }
    .fac-item { display: flex; gap: 15px; transition: transform 0.3s ease; }
    .fac-item:hover { transform: translateX(6px); }
    .fac-check {
      width: 34px; height: 34px; min-width: 34px; border-radius: 10px; margin-top: 2px;
      background: var(--white); border: 1px solid var(--line); display: flex; align-items: center;
      justify-content: center; color: var(--terra);
    }
    .fac-item h4 { font-size: 1.03rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
    .fac-item p { font-size: 0.92rem; color: var(--ink-soft); }
    .fac-types { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
    .fac-type { background: var(--white); border: 1px solid var(--line); padding: 7px 15px; border-radius: 100px; font-size: 0.84rem; font-weight: 500; color: var(--ink-soft); }

    /* ---- WHY ---- */
    .why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
    .promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 56px; }
    .promise-title { text-align: center; font-size: 1.2rem; margin: 6px 0 24px; color: var(--ink); }
    .why-card { text-align: center; padding: 34px 22px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--line); transition: transform 0.3s ease, box-shadow 0.3s ease; }
    .why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
    .why-icon {
      width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
      background: var(--terra-soft); display: flex; align-items: center; justify-content: center; color: var(--terra);
    }
    .why-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
    .why-card p { font-size: 0.9rem; color: var(--ink-soft); }

    .founder-note {
      max-width: 760px; margin: 0 auto; background: var(--white); border-radius: var(--radius);
      border: 1px solid var(--line); border-left: 4px solid var(--terra);
      padding: 36px 44px; box-shadow: var(--shadow-sm);
    }
    .founder-note p { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.65; color: var(--ink); font-style: italic; margin-bottom: 16px; }
    .founder-note cite { font-style: normal; font-size: 0.92rem; font-weight: 600; color: var(--ink-soft); }

    /* ---- PSW SECTION ---- */
    .psw-section { background: var(--ink); color: var(--white); padding: 96px 0; }
    .psw-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
    .psw-label { color: #F0A67E; }
    .psw-title { font-family: var(--font-display); font-size: clamp(1.9rem, 3.6vw, 2.5rem); font-weight: 600; margin-bottom: 16px; color: var(--white); letter-spacing: -0.3px; }
    .psw-sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 32px; line-height: 1.7; }
    .psw-perks { list-style: none; display: flex; flex-direction: column; gap: 15px; margin-bottom: 36px; }
    .psw-perk { display: flex; align-items: center; gap: 13px; font-size: 1rem; color: rgba(255,255,255,0.9); transition: transform 0.25s ease; }
    .psw-perk:hover { transform: translateX(6px); }
    .psw-perk-icon {
      width: 34px; height: 34px; min-width: 34px; border-radius: 10px;
      background: rgba(240,166,126,0.15); color: #F0A67E;
      display: flex; align-items: center; justify-content: center;
    }
    .btn-psw { background: var(--terra); color: var(--white); }
    .btn-psw:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196,87,43,0.4); }
    .psw-alt { margin-top: 14px; font-size: 0.88rem; color: rgba(255,255,255,0.55); }
    .psw-alt a { color: #F0A67E; }
    .psw-image { border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5; max-height: 480px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
    .psw-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

    /* ---- STEPS ---- */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
    .steps::before { content: ''; position: absolute; top: 44px; left: 15%; right: 15%; height: 2px; background: var(--line); }
    .step { text-align: center; position: relative; }
    .step-number {
      width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 24px;
      background: var(--white); border: 3px solid var(--terra);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--terra);
      position: relative; z-index: 1; transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .step:hover .step-number { transform: scale(1.08); box-shadow: 0 0 0 9px var(--terra-glow); }
    .step h3 { font-size: 1.14rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
    .step p { font-size: 0.94rem; color: var(--ink-soft); line-height: 1.65; max-width: 290px; margin: 0 auto; }

    /* ---- FAQ ---- */
    .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
    .faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.3s ease; }
    .faq-item.open { border-color: var(--terra); }
    .faq-q {
      width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
      padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
      font-family: var(--font-body); font-size: 1.02rem; font-weight: 600; color: var(--ink);
    }
    .faq-q .faq-icon {
      width: 30px; height: 30px; min-width: 30px; border-radius: 50%; background: var(--terra-soft);
      color: var(--terra); display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; font-weight: 500; line-height: 1; transition: transform 0.3s ease;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--terra); color: var(--white); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-a p { padding: 0 24px 22px; font-size: 0.96rem; color: var(--ink-soft); line-height: 1.7; }

    /* ---- AREAS ---- */
    .areas { text-align: center; padding: 0 0 96px; }
    .areas h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 22px; }
    .areas-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 820px; margin: 0 auto; list-style: none; }
    .areas-chips li { background: var(--white); border: 1px solid var(--line); padding: 8px 18px; border-radius: 100px; font-size: 0.88rem; font-weight: 500; color: var(--ink-soft); }

    /* ---- CONTACT ---- */
    .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
    .contact-info h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; margin-bottom: 14px; color: var(--ink); }
    .contact-info > p { font-size: 1rem; color: var(--ink-soft); line-height: 1.7; margin-bottom: 30px; }
    .contact-details { list-style: none; display: flex; flex-direction: column; gap: 18px; }
    .contact-detail { display: flex; align-items: flex-start; gap: 14px; font-size: 0.95rem; color: var(--ink); }
    .contact-detail a { color: var(--terra); font-weight: 600; }
    .contact-detail-icon {
      width: 42px; height: 42px; border-radius: 12px; background: var(--terra-soft); color: var(--terra);
      display: flex; align-items: center; justify-content: center; min-width: 42px;
    }
    .contact-detail strong { display: block; margin-bottom: 1px; }
    .contact-note { margin-top: 28px; padding: 18px 22px; background: var(--cream-deep); border-radius: 12px; font-size: 0.9rem; color: var(--ink-soft); }

    .contact-form { background: var(--white); border-radius: var(--radius); padding: 40px; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
    .form-group { margin-bottom: 20px; }
    .form-group label { display: block; font-size: 0.9rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
    .form-group input, .form-group textarea, .form-group select {
      width: 100%; padding: 13px 16px; border: 1px solid var(--line);
      border-radius: 10px; font-family: var(--font-body); font-size: 0.98rem;
      transition: var(--transition); background: var(--cream); color: var(--ink);
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      outline: none; border-color: var(--terra); box-shadow: 0 0 0 3px var(--terra-glow); background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .btn-submit { width: 100%; justify-content: center; font-size: 1.02rem; padding: 15px; }
    .hp-field { display: none !important; }

    /* ---- FOOTER ---- */
    .footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 64px 0 32px; }
    .footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
    .footer-brand .logo { color: var(--white); margin-bottom: 16px; }
    .footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }
    .footer-col h4 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 16px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
    .footer-col a:hover { color: #F0A67E; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center; gap: 8px;
      font-size: 0.82rem; color: rgba(255,255,255,0.4);
    }

    /* ---- BACK TO TOP ---- */
    .back-to-top {
      position: fixed; bottom: 32px; right: 32px; z-index: 99;
      width: 50px; height: 50px; border-radius: 50%;
      background: var(--terra); color: var(--white); border: none;
      cursor: pointer; font-size: 1.3rem; display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(196,87,43,0.35);
      opacity: 0; transform: translateY(20px); pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    }
    .back-to-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .back-to-top:hover { background: var(--terra-dark); }

    /* ---- REVEAL ANIMATIONS ---- */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }
    .stagger > * { transition-delay: calc(var(--i, 0) * 0.09s); }

    .nav-phone { font-weight: 700; color: var(--terra) !important; white-space: nowrap; }
    .hero-call { margin: 16px 0 4px; font-size: 1.05rem; }
    .hero-call a { color: var(--terra); font-weight: 700; border-bottom: 2px solid var(--terra-soft); }
    .fac-urgent { margin-top: 14px; font-size: 0.95rem; }
    .fac-urgent a { color: var(--terra); font-weight: 700; }
    .footer-contact { margin-top: 12px; }
    .footer-contact a { color: rgba(255,255,255,0.85); font-weight: 600; }
    .footer-bottom a { color: rgba(255,255,255,0.7); text-decoration: underline; }
    .mobile-call-bar { display: none; }
    @media (max-width: 768px) {
      .mobile-call-bar { display: flex; align-items: center; justify-content: center; gap: 9px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 998; background: var(--terra); color: var(--white); font-weight: 700; font-size: 1.05rem; padding: 14px 16px; box-shadow: 0 -4px 16px rgba(0,0,0,0.18); }
      body { padding-bottom: 52px; }
    }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
      .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
    }

    /* ---- RESPONSIVE ---- */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid, .promise-grid { grid-template-columns: repeat(2, 1fr); }
      .router-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 900px) {
      .hero-inner, .fac-grid, .psw-inner, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
      .hero { padding: 128px 0 64px; }
      .hero-visual { max-width: 560px; }
      .hero-float { left: 12px; }
      .fac-image { order: -1; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .nav-links.active {
        display: flex; flex-direction: column; align-items: flex-start; position: absolute;
        top: 74px; left: 0; right: 0; background: var(--cream);
        padding: 24px; gap: 18px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
      }
      .mobile-toggle { display: block; }
      .services-grid, .why-grid, .promise-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; gap: 32px; }
      .steps::before { display: none; }
      .form-row { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .founder-note { padding: 28px 24px; }
      .section { padding: 72px 0; }
      .back-to-top { bottom: 20px; right: 20px; }
    }

/* =====================================================
   v3 MULTI-PAGE ADDITIONS
   ===================================================== */

/* Active nav link */
.nav-links a.active { color: var(--terra); }

/* Interior page hero */
.page-hero { padding: 138px 0 56px; position: relative; overflow: hidden; }
.page-hero::before {
  content: ''; position: absolute; top: -40%; right: -18%; width: 560px; height: 560px;
  background: radial-gradient(circle, var(--terra-glow) 0%, transparent 68%); border-radius: 50%;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.1rem, 4.6vw, 3rem);
  font-weight: 600; line-height: 1.14; color: var(--ink); margin: 10px 0 18px; letter-spacing: -0.4px; max-width: 780px;
}
.page-hero h1 em { font-style: italic; color: var(--terra); }
.page-hero .lead { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.7; max-width: 700px; margin-bottom: 26px; }
.page-hero .hero-buttons { margin-bottom: 6px; }

/* Breadcrumbs */
.crumbs { font-size: 0.85rem; color: var(--ink-faint); display: flex; flex-wrap: wrap; gap: 6px; align-items: center; list-style: none; }
.crumbs a { color: var(--ink-soft); font-weight: 500; }
.crumbs a:hover { color: var(--terra); }
.crumbs .sep { opacity: 0.55; }

/* Two-column feature rows */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 72px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row .feature-img { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.feature-row .feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-row h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.05rem); font-weight: 600; margin-bottom: 14px; letter-spacing: -0.3px; }
.feature-row p { color: var(--ink-soft); margin-bottom: 12px; }
@media (max-width: 900px) { .feature-row { grid-template-columns: 1fr; gap: 30px; } }

/* CTA band */
.cta-band { background: var(--ink); color: var(--white); padding: 72px 0; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.4vw, 2.3rem); font-weight: 600; margin-bottom: 12px; color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 28px; }
.cta-band .hero-buttons { justify-content: center; }
.cta-band .btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.35); }
.cta-band .btn-outline:hover { border-color: var(--white); color: var(--white); }
.cta-band .cta-call { margin-top: 18px; font-size: 1rem; color: rgba(255,255,255,0.75); }
.cta-band .cta-call a { color: #F0A67E; font-weight: 700; }

/* Prose (blog articles / long-form) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; margin: 44px 0 14px; letter-spacing: -0.3px; }
.prose h3 { font-size: 1.15rem; font-weight: 700; margin: 30px 0 10px; }
.prose p { margin-bottom: 16px; color: var(--ink-soft); }
.prose ul, .prose ol { margin: 0 0 16px 22px; color: var(--ink-soft); }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose a { color: var(--terra); font-weight: 600; border-bottom: 1px solid var(--terra-soft); }
.prose a:hover { border-bottom-color: var(--terra); }
.prose blockquote { border-left: 4px solid var(--terra); background: var(--white); padding: 18px 24px; border-radius: 0 12px 12px 0; margin: 24px 0; font-style: italic; }
.prose table { width: 100%; border-collapse: collapse; margin: 20px 0 26px; background: var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); font-size: 0.95rem; }
.prose th { background: var(--ink); color: var(--white); text-align: left; padding: 12px 16px; font-weight: 600; }
.prose td { padding: 12px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.prose tr:last-child td { border-bottom: none; }
.article-meta { font-size: 0.88rem; color: var(--ink-faint); margin-bottom: 8px; }
.notice { background: var(--cream-deep); border: 1px solid var(--line); border-radius: 12px; padding: 16px 20px; font-size: 0.9rem; color: var(--ink-soft); margin: 26px 0; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--terra); }
.blog-card .tag { font-size: 0.76rem; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; color: var(--terra); }
.blog-card h3 { font-family: var(--font-display); font-size: 1.28rem; font-weight: 600; line-height: 1.3; }
.blog-card p { font-size: 0.93rem; color: var(--ink-soft); flex: 1; }
.blog-card .go { font-size: 0.9rem; font-weight: 600; color: var(--terra); }
@media (max-width: 1024px) { .blog-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }

/* Language / area chips as links */
.chip-links { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; margin: 18px 0; padding: 0; }
.chip-links li a, .chip-links li span {
  display: inline-block; background: var(--white); border: 1px solid var(--line);
  padding: 8px 18px; border-radius: 100px; font-size: 0.88rem; font-weight: 500; color: var(--ink-soft);
  transition: var(--transition);
}
.chip-links li a:hover { border-color: var(--terra); color: var(--terra); }

/* Checklist bullets (reusable outside facilities) */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin: 26px 0; padding: 0; }
.check-list li { display: flex; gap: 14px; }
.check-list .fac-check { margin-top: 2px; }
.check-list h4 { font-size: 1.02rem; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.check-list p { font-size: 0.93rem; color: var(--ink-soft); }

/* Footer: 5 columns */
.footer-inner { grid-template-columns: 1.8fr 1fr 1fr 1fr 1.1fr; }
@media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* Small helper */
.center { text-align: center; }
.mt-40 { margin-top: 40px; }
.section-tight { padding: 72px 0; }
