/*
Theme Name: Handful Handyman
Theme URI: https://handfulhandyman.com
Author: Handful Handyman Services
Author URI: https://handfulhandyman.com
Description: Custom single-page theme for Handful Handyman Services. Editorial design with navy, baby-blue, and warm cream palette.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: handful-handyman
Tags: one-page, custom-colors, custom-menu
*/

:root {
    /* Warm paper — feels like a vintage surf zine */
    --paper:        #f1e6cf;
    --paper-light:  #f8efd9;
    --paper-soft:   #fcf7e8;
    --paper-deep:   #e3d3b0;

    /* Brand navy (sampled from logo) */
    --navy:         #2f4654;
    --navy-soft:    #44617a;
    --navy-muted:   #7b8f9e;
    --navy-faint:   #b4c1ca;

    /* Brand baby blue (sampled from wordmark) */
    --baby:         #8bbed1;
    --baby-deep:    #5d9bb3;
    --baby-pale:    #c4dee8;

    /* Warm accent — honey/sand for SoCal moments */
    --honey:        #d4a060;
    --honey-deep:   #b07c3d;
    --clay:         #c97a4e;

    --shadow-sm: 0 1px 2px rgba(47,70,84,0.06);
    --shadow-md: 0 18px 50px rgba(47,70,84,0.10);
    --shadow-lg: 0 40px 90px rgba(47,70,84,0.16);
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body {
    font-family: 'Inter Tight', system-ui, sans-serif;
    background: var(--paper);
    color: var(--navy);
    line-height: 1.55;
    font-size: 16px;
    font-weight: 400;
    overflow-x: hidden;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  svg { display: block; }

  /* ============ TYPE PRIMITIVES ============ */
  .display {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    letter-spacing: -0.018em;
    line-height: 0.95;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 0;
  }
  .display em {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .eyebrow {
    font-family: 'Inter Tight', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--navy-muted);
  }
  .eyebrow-mark {
    display: inline-flex; align-items: center; gap: 14px;
  }
  .eyebrow-mark::before {
    content: ''; width: 24px; height: 1px;
    background: currentColor; opacity: 0.5;
  }

  /* ============ LAYOUT ============ */
  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
  }

  /* ============ WAVE DIVIDERS ============ */
  .wave {
    display: block;
    width: 100%;
    height: 40px;
  }
  .wave-path { fill: currentColor; }

  /* ============ TOP BANNER ============ */
  .top-banner {
    position: fixed; top: 0; left: 0; right: 0; z-index: 101;
    background: var(--baby);
    color: var(--navy);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .top-banner-track {
    display: inline-flex; align-items: center;
    gap: 36px;
    width: max-content;
    animation: bannerScroll 50s linear infinite;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .top-banner-track > span { display: inline-block; }
  .top-banner .dot {
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--navy); opacity: 0.55;
  }
  .top-banner .italic {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    text-transform: none;
    letter-spacing: 0;
    font-size: 15px;
    font-weight: 500;
  }
  @keyframes bannerScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ NAV ============ */
  .nav {
    position: fixed; top: 44px; left: 0; right: 0; z-index: 100;
    padding: 16px 56px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 60px;
    background: var(--navy);
    transition: padding 0.35s ease, box-shadow 0.4s ease;
    box-shadow: 0 1px 0 rgba(255,255,255,0.04);
  }
  .nav.scrolled {
    padding: 12px 56px;
    box-shadow: 0 6px 24px rgba(47,70,84,0.18);
  }
  .nav-logo {
    display: inline-flex; align-items: center;
    height: 38px;
    transition: height 0.35s ease;
  }
  .nav.scrolled .nav-logo { height: 34px; }
  .nav-logo img {
    height: 100%; width: auto;
  }
  .nav-links {
    list-style: none;
    display: flex; gap: 36px;
    justify-content: center;
  }
  .nav-links a {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 36, "SOFT" 100;
    font-size: 16px;
    font-weight: 500;
    color: var(--paper-soft);
    letter-spacing: -0.005em;
    transition: color 0.25s ease;
    position: relative;
  }
  .nav-links a::after {
    content: ''; position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1.5px; background: var(--baby);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links a:hover { color: var(--baby); }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-right {
    display: flex; align-items: center; gap: 20px;
  }
  .nav-phone {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "SOFT" 100, "WONK" 1;
    font-size: 16px;
    color: var(--baby-pale);
  }
  .nav-cta {
    background: var(--baby);
    color: var(--navy);
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.25s ease, transform 0.25s ease;
    display: inline-flex; align-items: center; gap: 9px;
  }
  .nav-cta:hover { background: var(--paper-soft); transform: translateY(-1px); }
  .nav-cta .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--navy);
    box-shadow: 0 0 0 3px rgba(47, 70, 84, 0.2);
  }

  /* ============ HERO ============ */
  /* Make nav-logo show the outlined H icon naturally; no filter */
  .nav-logo img {
    /* keeps baby-blue outline + white fill */
  }

  .hero {
    background: var(--navy);
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
  }
  /* Ghosted H scatter pattern */
  .hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
  }
  .hero-pattern .h-mark {
    position: absolute;
    width: 92px;
    height: 92px;
    opacity: 0.28;
    object-fit: contain;
  }
  @media (min-width: 1100px) {
    .hero-pattern .h-mark { width: 116px; height: 116px; }
  }
  @media (max-width: 640px) {
    .hero-pattern .h-mark { width: 64px; height: 64px; opacity: 0.22; }
  }

  /* Hero on navy — light text overrides */
  .hero .wordmark-stack .sub { color: var(--paper-soft); }
  .hero-tagline,
  .hero .hero-tagline { color: var(--paper-soft); }
  .hero-tagline em,
  .hero .hero-tagline em { color: var(--baby); }
  .hero-lede,
  .hero .hero-lede { color: rgba(252, 247, 232, 0.95); }
  .hero .btn-primary {
    background: var(--baby);
    color: var(--navy);
  }
  .hero .btn-primary:hover { background: var(--paper-soft); }
  .hero .btn-ghost {
    color: var(--paper-soft);
    border-color: rgba(252, 247, 232, 0.5);
  }
  .hero .btn-ghost:hover {
    background: var(--paper-soft);
    color: var(--navy);
    border-color: var(--paper-soft);
  }
  /* Wash removed per request */
  /* Halo removed per request */
  .hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
    position: relative;
    z-index: 1;
  }
  .hero-meta {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    margin-bottom: 40px;
    justify-content: center;
  }
  .hero-meta .pill {
    border: 1px solid rgba(47,70,84,0.2);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-soft);
    background: rgba(252, 247, 232, 0.6);
    display: inline-flex; align-items: center; gap: 8px;
  }
  .hero-meta .pill .dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--baby-deep);
  }

  .hero-wordmark {
    display: flex; justify-content: center;
    margin-bottom: 50px;
  }
  .wordmark-stack {
    display: inline-block;
    position: relative;
    max-width: 720px;
    width: 76%;
    min-width: 280px;
  }
  .wordmark-stack .script {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(47,70,84,0.10));
  }
  .wordmark-stack .sub {
    /* Tucks up under the "andful" portion, overlapping the f-descender area */
    position: absolute;
    left: 44%;
    bottom: 0%;
    color: var(--navy);
    font-family: 'Inter Tight', sans-serif;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 0.98;
    text-align: center;
  }
  .wordmark-stack .sub .row1,
  .wordmark-stack .sub .row2 {
    display: block;
    font-size: clamp(20px, 3.2vw, 44px);
  }
  .wordmark-stack .sub .row2 { margin-top: 4px; }

  .hero-tagline {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: clamp(28px, 4vw, 56px);
    line-height: 1.05;
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 22px;
  }
  .hero-tagline em {
    color: var(--baby-deep);
    font-style: italic;
  }

  .hero-lede {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 44px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--navy-soft);
  }

  .hero-ctas {
    display: flex; gap: 14px; justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 16px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    border: 1.5px solid transparent;
  }
  .btn-primary {
    background: var(--navy);
    color: var(--paper-soft);
  }
  .btn-primary:hover { background: var(--baby-deep); transform: translateY(-2px); }
  .btn-baby {
    background: var(--baby);
    color: var(--navy);
  }
  .btn-baby:hover { background: var(--baby-deep); color: var(--paper-soft); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
  }
  .btn-ghost:hover { background: var(--navy); color: var(--paper-soft); transform: translateY(-2px); }
  .btn .arrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 16px;
    transition: transform 0.25s ease;
  }
  .btn:hover .arrow { transform: translateX(4px); }

  /* Hero photo strip — 3 image slots */
  .hero-photos {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 16px;
    margin-top: 10px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-photo {
    aspect-ratio: 4 / 5;
    background: var(--paper-deep);
    overflow: hidden;
    border-radius: 4px;
    position: relative;
  }
  .hero-photo image-slot { width: 100%; height: 100%; }
  .hero-photo.tall { aspect-ratio: 4 / 5.2; }
  .hero-photo.center { transform: translateY(-24px); }

  /* Smiling-sun decorative mark — fun moment */
  .sun-mark {
    display: inline-flex;
    width: 56px; height: 56px;
    color: var(--honey);
  }
  .sun-mark svg { width: 100%; height: 100%; }
  .sun-mark.spin svg { animation: spin 24s linear infinite; }
  @keyframes spin { to { transform: rotate(360deg); } }

  /* ============ MARQUEE — groovy serif italic ============ */
  .marquee {
    background: var(--baby);
    color: var(--navy);
    padding: 26px 0;
    overflow: hidden;
    border-top: 1px solid rgba(47, 70, 84, 0.18);
    border-bottom: 1px solid rgba(47, 70, 84, 0.18);
  }
  .marquee-track {
    display: flex; gap: 20px;
    width: max-content;
    align-items: center;
    animation: marquee 50s linear infinite;
  }
  .marquee-item {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 26px;
    line-height: 1;
    letter-spacing: -0.005em;
    white-space: nowrap;
    display: inline-flex; align-items: center; gap: 56px;
    background: var(--navy);
    color: var(--paper-soft);
    padding: 10px 26px 12px;
    border-radius: 999px;
  }
  .marquee-item::after {
    content: '✷';
    font-style: normal;
    color: var(--baby);
    font-size: 18px;
    opacity: 0.75;
  }
  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ ABOUT ============ */
  .about {
    background: var(--paper);
    padding: 160px 0;
  }
  .about-head {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 110px;
  }
  .about-head .eyebrow { display: inline-flex; margin-bottom: 36px; }
  .about-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(36px, 4.4vw, 64px);
    line-height: 1.18;
    color: var(--navy);
    letter-spacing: -0.018em;
    margin-bottom: 30px;
  }
  .about-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .about-head-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: clamp(18px, 1.8vw, 22px);
    color: var(--navy-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.45;
  }

  .about-prose {
    max-width: 780px;
    margin: 0 auto 100px;
    text-align: center;
  }
  .about-prose p {
    font-size: 18px;
    line-height: 1.75;
    color: var(--navy-soft);
    margin-bottom: 26px;
  }
  .about-prose p strong { color: var(--navy); font-weight: 600; }
  .pull-quote {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-style: italic;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.18;
    color: var(--navy);
    padding: 50px 0;
    margin: 50px auto;
    max-width: 900px;
    text-align: center;
    border-top: 1px solid rgba(47,70,84,0.18);
    border-bottom: 1px solid rgba(47,70,84,0.18);
    letter-spacing: -0.015em;
    position: relative;
  }
  .pull-quote em { color: var(--baby-deep); font-style: italic; }
  .pull-quote-attr {
    display: block;
    margin-top: 18px;
    font-family: 'Inter Tight', sans-serif;
    font-style: normal;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-muted);
    font-weight: 500;
  }

  .pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 0;
  }
  .pillar {
    background: var(--paper-light);
    padding: 32px 28px 28px;
    border-radius: 16px;
    border: 1px solid rgba(47,70,84,0.08);
    transition: background 0.3s ease, border-color 0.3s ease;
  }
  .pillar:hover {
    background: var(--paper-soft);
    border-color: var(--baby);
  }
  .pillar-mark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 14px;
    color: var(--baby-deep);
    display: inline-flex; align-items: baseline; gap: 8px;
    margin-bottom: 22px;
  }
  .pillar-mark::before {
    content: ''; width: 12px; height: 1px;
    background: var(--baby-deep);
    transform: translateY(-4px);
  }
  .pillar-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "SOFT" 100;
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.15;
    letter-spacing: -0.015em;
  }
  .pillar-text {
    font-size: 14px;
    color: var(--navy-muted);
    line-height: 1.6;
  }

  /* Since-2014 badge — slowly rotating circle text */
  .badge {
    position: absolute;
    width: 130px; height: 130px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--navy);
  }
  .badge .ring {
    position: absolute; inset: 0;
    animation: spin 22s linear infinite;
  }
  .badge .ring svg { width: 100%; height: 100%; overflow: visible; }
  .badge .ring text {
    fill: var(--navy);
    font-family: 'Inter Tight', sans-serif;
    font-size: 9.5px;
    letter-spacing: 0.28em;
    font-weight: 600;
    text-transform: uppercase;
  }
  .badge .center {
    width: 70px; height: 70px;
    border-radius: 50%;
    background: var(--baby);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 36, "SOFT" 100;
    font-style: italic;
    font-size: 19px;
    color: var(--navy);
  }

  /* ============ COMMERCIAL CALLOUT ============ */
  .commercial {
    background: var(--baby);
    color: var(--navy);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
  }
  .commercial-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .commercial-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(40px, 5vw, 76px);
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
  }
  .commercial-title em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .commercial-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: 22px;
    line-height: 1.4;
    color: var(--navy-soft);
    max-width: 540px;
    margin-bottom: 32px;
  }
  .commercial-points {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px;
    margin-bottom: 36px;
  }
  .commercial-point {
    display: flex; gap: 10px; align-items: baseline;
    font-size: 15px;
    color: var(--navy);
  }
  .commercial-point::before {
    content: '✓';
    color: var(--paper-soft);
    background: var(--navy);
    width: 18px; height: 18px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
    transform: translateY(2px);
  }
  .commercial-aside {
    background: var(--navy);
    color: var(--paper-soft);
    padding: 38px 34px;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
  }
  .commercial-aside .label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--baby);
    margin-bottom: 16px;
  }
  .commercial-aside .stat {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: 76px;
    line-height: 1;
    color: var(--paper-soft);
    letter-spacing: -0.03em;
    margin-bottom: 14px;
  }
  .commercial-aside .stat em {
    font-style: italic;
    color: var(--baby);
    font-size: 0.6em;
    font-variation-settings: "opsz" 72, "WONK" 1;
  }
  .commercial-aside .desc {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--baby-pale);
    line-height: 1.4;
    margin-bottom: 26px;
  }
  .commercial-aside .btn-baby { width: 100%; justify-content: center; }

  /* ============ SERVICES ============ */
  .services {
    background: var(--baby);
    color: var(--navy);
    padding: 140px 0;
    position: relative;
  }
  .services-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 80px;
  }
  .services-head .eyebrow { color: var(--navy-soft); display: inline-flex; margin-bottom: 30px; }
  .services-head .eyebrow-mark::before { background: var(--navy-soft); }
  .services-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(52px, 7vw, 108px);
    line-height: 0.95;
    letter-spacing: -0.035em;
    color: var(--paper-soft);
    margin-bottom: 26px;
  }
  .services-title em {
    font-style: italic;
    color: var(--navy);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .services-intro {
    color: var(--navy-soft);
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: clamp(18px, 1.7vw, 22px);
    line-height: 1.45;
    max-width: 620px;
    margin: 0 auto;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 80px;
  }
  .service-card {
    background: var(--navy);
    border: 1px solid rgba(47, 70, 84, 0.6);
    border-radius: 18px;
    padding: 40px 32px 32px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex; flex-direction: column;
    position: relative;
    box-shadow: 0 18px 36px rgba(31, 53, 67, 0.28), 0 6px 12px rgba(31, 53, 67, 0.2);
  }
  .service-card:hover {
    transform: translateY(-6px);
    background: var(--navy-deep, #1f3543);
    border-color: rgba(139, 190, 209, 0.4);
    box-shadow: 0 26px 50px rgba(31, 53, 67, 0.38), 0 10px 18px rgba(31, 53, 67, 0.24);
  }
  .service-card .mark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 14px;
    color: var(--baby);
    display: inline-flex; align-items: baseline; gap: 8px;
    margin-bottom: 24px;
  }
  .service-card .mark::before {
    content: ''; width: 12px; height: 1px;
    background: var(--baby);
    transform: translateY(-4px);
  }
  .service-card .name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: 32px;
    line-height: 1.05;
    color: var(--paper-soft);
    letter-spacing: -0.022em;
    margin-bottom: 18px;
  }
  .service-card .desc {
    font-size: 14.5px;
    color: rgba(252, 247, 232, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
  }
  .service-card .tags {
    display: flex; flex-wrap: wrap; gap: 7px;
    margin-top: auto;
  }
  .service-card .tag {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--baby);
    background: rgba(139, 190, 209, 0.08);
    border: 1px solid rgba(139, 190, 209, 0.28);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 500;
    transition: background 0.3s ease;
  }
  .service-card:hover .tag {
    background: rgba(139, 190, 209, 0.16);
  }
  .service-arrow {
    justify-self: end;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(252, 247, 232, 0.25);
    display: flex; align-items: center; justify-content: center;
    color: rgba(252, 247, 232, 0.6);
    transition: all 0.35s ease;
  }
  .service-row:hover .service-arrow {
    background: var(--baby);
    color: var(--navy);
    border-color: var(--baby);
    transform: rotate(-45deg) scale(1.05);
  }

  .services-cta {
    display: flex; justify-content: center;
  }
  .services-cta .btn-baby:hover { background: var(--baby-pale); }

  /* ============ PROCESS ============ */
  .process {
    background: var(--paper);
    padding: 160px 0;
    position: relative;
    overflow: hidden;
  }
  .process-head {
    text-align: center;
    margin-bottom: 110px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  .process-head .eyebrow { display: inline-flex; margin-bottom: 48px; }
  .process-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(72px, 12vw, 200px);
    line-height: 0.92;
    color: var(--navy);
    letter-spacing: -0.04em;
    margin: 0 auto 52px;
    text-align: center;
    display: block;
  }
  .process-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .process-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .process-title-sun {
    position: absolute;
    top: -20px; right: -80px;
    width: 90px; height: 90px;
    color: var(--honey);
    animation: spin 30s linear infinite;
  }
  .process-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: 22px;
    color: var(--navy-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.4;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(47,70,84,0.15);
    border-bottom: 1px solid rgba(47,70,84,0.15);
  }
  .step {
    padding: 50px 30px;
    border-right: 1px solid rgba(47,70,84,0.15);
    position: relative;
    transition: background 0.35s ease;
  }
  .step:last-child { border-right: none; }
  .step:hover { background: var(--paper-light); }
  .step-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 14px;
    color: var(--baby-deep);
    display: inline-flex; align-items: baseline; gap: 8px;
    margin-bottom: 80px;
  }
  .step-num::before {
    content: ''; width: 12px; height: 1px; background: var(--baby-deep);
    transform: translateY(-4px);
  }
  .step-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "SOFT" 100;
    font-size: 28px;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 14px;
    letter-spacing: -0.015em;
  }
  .step-text {
    font-size: 14px;
    color: var(--navy-muted);
    line-height: 1.55;
  }

  /* ============ PARTNERS ============ */
  .partners {
    background: var(--paper-soft);
    padding: 160px 0;
    border-top: 1px solid rgba(47,70,84,0.06);
  }
  .partners-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 90px;
  }
  .partners-head .eyebrow { display: inline-flex; margin-bottom: 30px; }
  .partners-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(44px, 5.6vw, 80px);
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -0.025em;
    margin-bottom: 26px;
  }
  .partners-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .partners-intro {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.45;
    color: var(--navy-muted);
    max-width: 620px;
    margin: 0 auto;
  }
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .partner-card {
    background: var(--paper-light);
    border: 1px solid rgba(47,70,84,0.08);
    border-radius: 18px;
    padding: 40px 34px 36px;
    transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
    display: flex; flex-direction: column;
    position: relative;
  }
  .partner-card:hover {
    transform: translateY(-6px);
    background: var(--paper-soft);
    border-color: var(--baby);
  }
  .partner-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 14px;
    color: var(--baby-deep);
    margin-bottom: 22px;
    display: inline-flex; align-items: baseline; gap: 8px;
  }
  .partner-num::before {
    content: ''; width: 12px; height: 1px;
    background: var(--baby-deep);
    transform: translateY(-4px);
  }
  .partner-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: 32px;
    color: var(--navy);
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.022em;
  }
  .partner-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--navy-muted);
    margin-bottom: 22px;
    flex: 1;
  }
  .partner-services {
    display: flex; flex-wrap: wrap; gap: 7px;
    margin-bottom: 24px;
  }
  .partner-service {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy-soft);
    background: transparent;
    border: 1px solid rgba(47,70,84,0.2);
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 500;
  }
  .partner-link {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    color: var(--baby-deep);
    font-size: 16px;
    display: inline-flex; align-items: center; gap: 8px;
    transition: gap 0.25s ease;
    align-self: flex-start;
    padding-top: 14px;
    border-top: 1px solid rgba(47,70,84,0.12);
    width: 100%;
  }
  .partner-link:hover { gap: 14px; }

  /* ============ EDITORIAL QUOTE ============ */
  .quote-block {
    background: var(--paper);
    padding: 140px 56px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(47,70,84,0.08);
    border-bottom: 1px solid rgba(47,70,84,0.08);
  }
  .quote-mark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 160px;
    line-height: 0.35;
    color: var(--baby-deep);
    margin-bottom: 60px;
    display: inline-block;
  }
  .quote-body {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(34px, 4.5vw, 72px);
    line-height: 1.08;
    color: var(--navy);
    max-width: 1100px;
    margin: 0 auto 40px;
    letter-spacing: -0.03em;
  }
  .quote-body em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .quote-attr {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 19px;
    color: var(--navy-muted);
  }
  .quote-attr::before { content: '· '; opacity: 0.5; margin-right: 4px; }

  /* ============ TESTIMONIALS ============ */
  .testimonials {
    background: var(--paper);
    padding: 140px 0;
  }
  .testimonials-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    margin-bottom: 70px;
    align-items: end;
  }
  .testimonials-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(44px, 5.6vw, 84px);
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -0.03em;
  }
  .testimonials-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .testimonials-meta {
    justify-self: end;
    padding-bottom: 8px;
    text-align: right;
  }
  .testimonials-meta .stars {
    font-size: 20px;
    color: var(--honey);
    letter-spacing: 6px;
    margin-bottom: 6px;
  }
  .testimonials-meta .reviews {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    color: var(--navy-muted);
    font-size: 16px;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .testimonial {
    background: var(--paper-light);
    padding: 40px 34px 34px;
    border-radius: 18px;
    border: 1px solid rgba(47,70,84,0.08);
    display: flex; flex-direction: column;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  }
  .testimonial:hover {
    transform: translateY(-4px);
    background: var(--paper-soft);
    border-color: var(--baby);
  }
  .testimonial-mark {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-size: 64px;
    line-height: 0.4;
    color: var(--baby-deep);
    margin-bottom: 32px;
  }
  .testimonial-headline {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "SOFT" 100;
    font-size: 24px;
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.015em;
  }
  .testimonial-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--navy-muted);
    margin-bottom: 28px;
    flex: 1;
  }
  .testimonial-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 22px;
    border-top: 1px solid rgba(47,70,84,0.12);
  }
  .author-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--baby);
    color: var(--navy);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 18px;
    flex-shrink: 0;
  }
  .author-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
  }
  .author-meta {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 13px;
    color: var(--navy-muted);
    margin-top: 2px;
  }

  /* ============ MERCH PEEK (removed; styles kept harmless) ============ */
  .merch {
    background: var(--paper);
    padding: 120px 0;
    position: relative;
    border-top: 1px solid rgba(47,70,84,0.06);
  }
  .merch-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
    align-items: end;
  }
  .merch-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(44px, 5.4vw, 80px);
    line-height: 1.0;
    color: var(--navy);
    letter-spacing: -0.03em;
  }
  .merch-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .merch-tag {
    justify-self: end;
    padding-bottom: 6px;
    text-align: right;
  }
  .merch-tag .label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-muted);
    margin-bottom: 8px;
  }
  .merch-tag .copy {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: 22px;
    color: var(--navy);
    max-width: 420px;
    line-height: 1.3;
  }
  .merch-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
  }
  .merch-card {
    background: var(--navy);
    color: var(--paper-soft);
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    position: relative;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px;
    transition: transform 0.4s ease;
  }
  .merch-card:hover { transform: translateY(-4px); }
  .merch-card.baby { background: var(--baby); color: var(--navy); }
  .merch-card.cream { background: var(--paper-light); color: var(--navy); border: 1px solid rgba(47,70,84,0.1); }
  .merch-visual {
    position: absolute;
    inset: 0;
    display: flex; align-items: center; justify-content: center;
    padding: 40px;
  }
  .merch-visual img { max-width: 70%; max-height: 60%; width: auto; height: auto; opacity: 0.95; }
  .merch-meta {
    position: relative;
    z-index: 1;
    display: flex; justify-content: space-between; align-items: end;
  }
  .merch-name {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "SOFT" 100;
    font-size: 22px;
    letter-spacing: -0.01em;
  }
  .merch-price {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 17px;
    opacity: 0.85;
  }
  .merch-cta {
    display: flex; justify-content: center;
    margin-top: 50px;
  }
  /* T-shirt visual */
  .tee-svg { width: 65%; max-width: 280px; }

  /* ============ CONTACT ============ */
  .contact {
    background: var(--paper-soft);
    padding: 140px 0;
    border-top: 1px solid rgba(47,70,84,0.06);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
  }
  .contact-head .eyebrow { margin-bottom: 22px; }
  .contact-title {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 144, "SOFT" 100;
    font-size: clamp(56px, 7vw, 108px);
    line-height: 0.95;
    color: var(--navy);
    letter-spacing: -0.035em;
    margin-bottom: 26px;
  }
  .contact-title em {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  }
  .contact-sub {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: 22px;
    color: var(--navy-soft);
    max-width: 520px;
    line-height: 1.4;
    margin-bottom: 50px;
  }
  .contact-info {
    border-top: 1px solid rgba(47,70,84,0.15);
  }
  .info-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    padding: 22px 0;
    border-bottom: 1px solid rgba(47,70,84,0.15);
    align-items: baseline;
    gap: 24px;
  }
  .info-label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-muted);
    font-weight: 500;
  }
  .info-value {
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 72, "SOFT" 100;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .info-value.italic {
    font-style: italic;
    color: var(--baby-deep);
    font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
  }
  .info-value-sub {
    display: block;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 14px;
    color: var(--navy-muted);
    margin-top: 4px;
  }

  /* Form */
  .form {
    background: var(--paper-light);
    padding: 44px 40px;
    border: 1px solid rgba(47,70,84,0.1);
    border-radius: 18px;
    position: relative;
  }
  .form-head {
    margin-bottom: 30px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(47,70,84,0.15);
  }
  .form-head .label {
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--navy-muted);
    margin-bottom: 6px;
  }
  .form-head .title {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "SOFT" 100, "WONK" 1;
    font-size: 30px;
    color: var(--navy);
    letter-spacing: -0.02em;
  }
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .field {
    margin-bottom: 18px;
    position: relative;
  }
  .field label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy-muted);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(47,70,84,0.25);
    padding: 8px 0 12px;
    font-family: 'Fraunces', serif;
    font-variation-settings: "opsz" 36, "SOFT" 100;
    font-size: 19px;
    color: var(--navy);
    transition: border-color 0.25s ease;
    outline: none;
    letter-spacing: -0.005em;
  }
  .field input::placeholder,
  .field textarea::placeholder {
    color: var(--navy-faint);
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    border-bottom-color: var(--baby-deep);
  }
  .field.error input,
  .field.error select,
  .field.error textarea {
    border-bottom-color: var(--clay);
  }
  .field.error .error-msg { display: block; }
  .error-msg {
    display: none;
    font-size: 12px;
    color: var(--clay);
    margin-top: 6px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
  }
  .field textarea {
    resize: vertical;
    min-height: 90px;
    border: 1px solid rgba(47,70,84,0.18);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 15px;
  }
  .field textarea:focus { border-color: var(--baby-deep); }
  .field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%237b8f9e' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 24px;
    cursor: pointer;
  }
  .form-submit {
    width: 100%;
    background: var(--navy);
    color: var(--paper-soft);
    padding: 18px;
    border-radius: 999px;
    font-family: 'Inter Tight', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
    display: flex; align-items: center; justify-content: center; gap: 12px;
    cursor: pointer;
  }
  .form-submit:hover { background: var(--baby-deep); transform: translateY(-1px); }
  .form-submit .arrow {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 36, "WONK" 1;
    font-size: 16px;
    transition: transform 0.25s ease;
  }
  .form-submit:hover .arrow { transform: translateX(4px); }
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form.submitted .form-body { display: none; }
  .form.submitted .form-success { display: block; }
  .form-success-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--baby);
    color: var(--navy);
    margin: 0 auto 22px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 30px;
  }
  .form-success-title {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: 34px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .form-success-text {
    color: var(--navy-muted);
    font-size: 15px;
    line-height: 1.6;
    max-width: 360px;
    margin: 0 auto;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--navy);
    color: rgba(252, 247, 232, 0.7);
    padding: 100px 0 36px;
    position: relative;
    overflow: hidden;
  }
  .footer-mark {
    text-align: center;
    padding: 0 56px 80px;
    border-bottom: 1px solid rgba(139, 190, 209, 0.15);
    margin-bottom: 60px;
  }
  .footer-mark img {
    max-width: 580px;
    width: 70%;
    margin: 0 auto;
  }
  .footer-mark .tagline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--baby);
    margin-top: 28px;
    letter-spacing: -0.015em;
  }
  .footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-brand p {
    font-size: 14px;
    color: rgba(252, 247, 232, 0.62);
    line-height: 1.65;
    max-width: 340px;
    margin-bottom: 26px;
  }
  .footer-social {
    display: flex; gap: 10px;
  }
  .social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(252, 247, 232, 0.18);
    display: flex; align-items: center; justify-content: center;
    color: rgba(252, 247, 232, 0.7);
    transition: all 0.3s ease;
  }
  .social-link:hover {
    background: var(--baby);
    color: var(--navy);
    border-color: var(--baby);
  }
  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-variation-settings: "opsz" 72, "WONK" 1;
    font-size: 20px;
    color: var(--paper-soft);
    font-weight: 400;
    margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .footer-col a {
    font-size: 13.5px;
    color: rgba(252, 247, 232, 0.6);
    transition: color 0.25s ease, padding 0.25s ease;
  }
  .footer-col a:hover { color: var(--baby); padding-left: 4px; }
  .footer-bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding: 26px 56px 0;
    border-top: 1px solid rgba(252, 247, 232, 0.10);
    display: flex; justify-content: space-between;
    font-size: 12px;
    color: rgba(252, 247, 232, 0.42);
    letter-spacing: 0.05em;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom .lic { letter-spacing: 0.18em; }

  /* ============ REVEAL ============ */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: 0.08s; }
  .reveal-d2 { transition-delay: 0.16s; }
  .reveal-d3 { transition-delay: 0.24s; }
  .reveal-d4 { transition-delay: 0.32s; }

  image-slot { --slot-bg: var(--paper-deep); --slot-label-color: var(--navy-muted); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1100px) {
    .container, .footer-inner, .footer-bottom, .hero-inner, .commercial-inner { padding-left: 36px; padding-right: 36px; }
    .nav { padding: 16px 36px; gap: 30px; }
    .nav.scrolled { padding: 12px 36px; }
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .pillars { grid-template-columns: 1fr 1fr; }
    .about-head, .about-body, .services-head, .partners-head, .testimonials-head, .contact-grid, .commercial-inner {
      grid-template-columns: 1fr; gap: 40px;
    }
    .about-photos { position: relative; top: auto; max-width: 500px; }
    .services-intro, .partners-intro { justify-self: start; }
    .testimonials-meta { text-align: left; justify-self: start; }
    .partners-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr 1fr; }
    .step:nth-child(2) { border-right: none; }
    .step:nth-child(1), .step:nth-child(2) { border-bottom: 1px solid rgba(47,70,84,0.15); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .service-row { grid-template-columns: 60px 1fr 50px; gap: 24px; }
    .services-photos { height: 280px; }
    .process-title-sun { display: none; }
    .hero-photos { grid-template-columns: 1fr 1fr; }
    .hero-photos > div:nth-child(3) { display: none; }
    .hero-photos > div.center { transform: none; }
  }
  @media (max-width: 640px) {
    body { font-size: 15px; }
    .container, .footer-inner, .footer-bottom, .hero-inner, .commercial-inner { padding-left: 22px; padding-right: 22px; }
    .nav { padding: 14px 22px; }
    .nav.scrolled { padding: 12px 22px; }
    .hero { padding: 130px 0 80px; }
    .about, .services, .process, .partners, .testimonials, .contact, .commercial { padding-top: 90px; padding-bottom: 90px; }
    .commercial { padding-top: 70px; padding-bottom: 70px; }
    .services { padding-top: 90px; padding-bottom: 90px; }
    .quote-block { padding: 90px 22px; }
    .pillars, .partners-grid, .testimonials-grid, .form-row, .steps, .services-grid {
      grid-template-columns: 1fr;
    }
    .step { border-right: none !important; border-bottom: 1px solid rgba(47,70,84,0.15); }
    .step-num { margin-bottom: 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .form { padding: 32px 22px; }
    .service-row { grid-template-columns: 50px 1fr 44px; gap: 16px; padding: 28px 0; }
    .service-num { font-size: 26px; }
    .service-name { font-size: 24px; }
    .marquee-item { font-size: 28px; gap: 40px; }
    .marquee-track { gap: 40px; }
    .info-row { grid-template-columns: 1fr; gap: 6px; }
    .about-photos .short.offset { margin-top: 0; }
    .commercial-points { grid-template-columns: 1fr; }
    .hero-meta { gap: 8px; }
    .hero-meta .pill { font-size: 10px; padding: 6px 12px; }
  }
