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

    :root {
      --cream:       #fffdeb;
      --cream-2:     #f5f1d4;
      --surface:     #fffdeb;
      --ink:         #9b0f06;
      --ink-soft:    #7a0c05;
      --gold:        #9b0f06;
      --gold-light:  #c41a0d;
      --rust:        #9b0f06;
      --sage:        #9b0f06;
      --text-muted:  rgba(155,15,6,0.7);
      --text-xdim:   rgba(155,15,6,0.5);
      --border:      rgba(155,15,6,0.18);
      --border-2:    rgba(155,15,6,0.32);
      --radius:      14px;
    }

    html { scroll-behavior: smooth; background: var(--cream); }
    body {
      font-family: 'DM Sans', system-ui, sans-serif;
      background: var(--cream);
      color: var(--ink);
      overflow-x: hidden;
      font-weight: 400;
      -webkit-font-smoothing: antialiased;
      line-height: 1.55;
    }

    /* Subtle grain */
    body::before {
      content: "";
      position: fixed; inset: 0;
      pointer-events: none; z-index: 2;
      opacity: 0.04;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      mix-blend-mode: multiply;
    }

    ::selection { background: var(--gold); color: var(--ink); }

    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

    /* ========= TYPOGRAPHY ========= */
    .display {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      letter-spacing: -0.015em;
      line-height: 0.98;
      font-size: clamp(2.8rem, 8.4vw, 7.8rem);
    }
    .display em {
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
    }
    .h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.02;
      font-size: clamp(2.1rem, 5vw, 4rem);
    }
    .h2 em {
      font-style: italic;
      font-weight: 300;
      color: var(--gold);
    }
    .eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--text-muted);
      font-weight: 500;
      display: inline-flex; align-items: center; gap: 12px;
    }
    .eyebrow::before {
      content: ""; width: 28px; height: 1px; background: var(--gold);
    }

    .lead {
      font-size: clamp(1.05rem, 1.5vw, 1.2rem);
      color: var(--text-muted);
      font-weight: 300;
      line-height: 1.7;
      max-width: 62ch;
    }

    /* ========= LAYOUT ========= */
    section { position: relative; z-index: 1; }

    /* ========= NAV ========= */
    nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 48px;
      transition: padding .3s ease, background .3s ease, border-color .3s ease;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      padding: 14px 48px;
      background: rgba(255,253,235,0.92);
      border-bottom-color: var(--border);
      backdrop-filter: blur(14px);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 500; font-size: 1.35rem; letter-spacing: -0.005em;
      display: flex; align-items: center; gap: 10px;
    }
    .nav-logo .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--gold); display: inline-block;
      box-shadow: 0 0 10px rgba(155,15,6,0.7);
      animation: pulse 2.4s ease-in-out infinite;
    }
    @keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

    .nav-links { list-style: none; display: flex; gap: 36px; }
    .nav-links a {
      font-size: 0.88rem; color: var(--text-muted);
      transition: color .2s ease;
      position: relative;
    }
    .nav-links a:hover { color: var(--ink); }
    .nav-links a::after {
      content: ""; position: absolute; left: 0; bottom: -6px;
      width: 0; height: 1px; background: var(--gold);
      transition: width .3s ease;
    }
    .nav-links a:hover::after { width: 100%; }

    .nav-cta {
      font-size: 0.85rem; padding: 10px 20px;
      border: 1px solid var(--border-2);
      border-radius: 999px;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s ease;
    }
    .nav-cta:hover {
      background: var(--ink); color: var(--cream); border-color: var(--ink);
    }
    .nav-cta::after {
      content: "→"; transition: transform .25s ease;
    }
    .nav-cta:hover::after { transform: translateX(3px); }

    /* Hamburger */
    .nav-burger {
      display: none;
      width: 44px; height: 44px;
      border: 1px solid var(--border-2);
      border-radius: 999px;
      align-items: center; justify-content: center;
      position: relative;
      background: transparent;
      z-index: 110;
    }
    .nav-burger span {
      display: block; width: 18px; height: 1.5px;
      background: var(--ink);
      position: absolute;
      transition: transform .3s ease, top .3s ease, opacity .2s ease;
    }
    .nav-burger span:nth-child(1) { top: 16px; }
    .nav-burger span:nth-child(2) { top: 22px; }
    .nav-burger span:nth-child(3) { top: 28px; }
    body.menu-open .nav-burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
    body.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
    body.menu-open .nav-burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

    .mobile-menu {
      position: fixed; inset: 0; z-index: 99;
      background: var(--cream);
      padding: 120px 32px 48px;
      display: flex; flex-direction: column;
      gap: 32px;
      opacity: 0; pointer-events: none;
      transform: translateY(-20px);
      transition: opacity .35s ease, transform .35s ease;
    }
    body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: none; }
    body.menu-open { overflow: hidden; }
    .mobile-menu a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.4rem; font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--ink);
      border-bottom: 1px solid var(--border);
      padding-bottom: 18px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .mobile-menu a::after { content: "→"; color: var(--gold); font-size: 1.4rem; }
    .mobile-menu .mobile-cta {
      margin-top: 16px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; font-weight: 500;
      background: var(--ink); color: var(--cream);
      border: none;
      padding: 18px 26px; border-radius: 999px;
      justify-content: center; align-self: flex-start;
      letter-spacing: 0.02em;
    }
    .mobile-menu .mobile-cta::after { color: var(--cream); }

    /* ========= HERO ========= */
    .hero {
      min-height: 100vh;
      padding: 140px 48px 80px;
      display: flex; flex-direction: column; justify-content: space-between;
      position: relative;
    }
    .hero-bg {
      position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
    }
    .hero-bg::before {
      content: ""; position: absolute;
      width: 700px; height: 700px;
      background: radial-gradient(circle, rgba(155,15,6,0.18), transparent 60%);
      top: 10%; right: -10%; filter: blur(60px);
      animation: float 16s ease-in-out infinite;
    }
    .hero-bg::after {
      content: ""; position: absolute;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(155,15,6,0.14), transparent 60%);
      bottom: -10%; left: -5%; filter: blur(60px);
      animation: float 20s ease-in-out infinite reverse;
    }
    @keyframes float {
      0%,100% { transform: translate(0,0); }
      50% { transform: translate(40px,-30px); }
    }

    .hero-top {
      display: flex; justify-content: space-between; align-items: flex-end;
      flex-wrap: wrap; gap: 24px;
      position: relative; z-index: 1;
      margin-bottom: 48px;
    }
    .hero-meta {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.78rem; color: var(--text-muted);
      display: flex; flex-direction: column; gap: 6px;
      text-align: right;
      font-weight: 400;
    }
    .hero-meta b { color: var(--gold); font-weight: 500; }

    .hero-title {
      position: relative; z-index: 1;
      margin-bottom: 40px;
    }
    .hero-title span { display: block; overflow: hidden; }
    .hero-title span > i {
      display: block; font-style: normal;
      transform: translateY(110%);
      animation: riseIn 1s cubic-bezier(.2,.7,.2,1) forwards;
    }
    .hero-title span:nth-child(2) > i { animation-delay: .1s; }
    .hero-title span:nth-child(3) > i { animation-delay: .2s; }
    @keyframes riseIn { to { transform: translateY(0); } }

    .hero-bottom {
      display: grid; grid-template-columns: 1fr auto;
      gap: 48px; align-items: end;
      position: relative; z-index: 1;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

    .btn {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 15px 26px; border-radius: 999px;
      font-size: 0.92rem; font-weight: 500;
      transition: all .25s ease;
      border: 1px solid transparent;
    }
    .btn-primary { background: var(--ink); color: var(--cream); }
    .btn-primary:hover { background: var(--ink-soft); transform: translateY(-2px); }
    .btn-ghost { border-color: var(--border-2); color: var(--ink); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
    .btn .arrow { transition: transform .3s ease; }
    .btn:hover .arrow { transform: translate(3px,-3px); }

    /* ========= MARQUEE ========= */
    .marquee {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      padding: 26px 0;
      background: var(--cream-2);
    }
    .marquee-track {
      display: flex; gap: 60px;
      animation: scroll 38s linear infinite;
      width: max-content;
    }
    .marquee-track span {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic; font-weight: 400;
      font-size: clamp(1.8rem, 3.4vw, 3rem);
      color: var(--ink);
      white-space: nowrap;
      display: inline-flex; align-items: center; gap: 60px;
    }
    .marquee-track span::after {
      content: "✦"; color: var(--gold); font-style: normal; font-size: 0.8em;
    }
    @keyframes scroll {
      to { transform: translateX(-50%); }
    }

    /* ========= ABOUT ========= */
    #about {
      padding: 140px 48px;
    }
    .about-grid {
      max-width: 1440px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px;
    }
    .about-right { display: flex; flex-direction: column; gap: 22px; }
    .about-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: border-color .3s ease, transform .3s ease;
    }
    .about-card:hover { border-color: var(--gold); transform: translateY(-4px); }
    .about-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400; font-size: 1.7rem;
      margin-bottom: 12px; color: var(--ink);
      letter-spacing: -0.005em;
    }
    .about-card p { color: var(--text-muted); font-size: 0.95rem; font-weight: 300; line-height: 1.75; }

    .about-quote {
      padding: 36px 32px;
      border: 1px dashed var(--border-2);
      border-radius: var(--radius);
      background: linear-gradient(135deg, rgba(155,15,6,0.08), rgba(155,15,6,0.04));
    }
    .about-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 1.7rem;
      line-height: 1.3;
      color: var(--ink);
      font-weight: 400;
    }
    .about-quote .accent { color: var(--gold); }

    .about-copy p {
      color: var(--text-muted); font-weight: 300;
      font-size: 1rem; line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-copy strong { color: var(--ink); font-weight: 500; }

    /* ========= SERVICES (uniform checkerboard grid) ========= */
    #services {
      padding: 140px 0 0;
      background: var(--cream);
    }
    .services-wrap { max-width: 1600px; margin: 0 auto; }
    .services-header {
      padding: 0 48px;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; margin-bottom: 80px; align-items: end;
    }
    .grid-services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-auto-rows: minmax(420px, auto);
    }
    .card {
      background: var(--cream);
      padding: 70px 60px 54px;
      display: flex; flex-direction: column;
      position: relative;
    }
    .card-num {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 0.95rem;
      color: var(--gold);
      letter-spacing: 0.02em;
    }
    .card-icon {
      width: 48px; height: 48px;
      color: var(--ink);
      margin-top: 56px;
      opacity: 0.9;
    }
    .card-icon svg { width: 100%; height: 100%; }
    .card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.9rem;
      letter-spacing: -0.005em;
      line-height: 1.1;
      margin-top: 56px;
      color: var(--ink);
    }
    .card p {
      color: var(--text-muted);
      font-size: 0.95rem;
      font-weight: 300;
      line-height: 1.7;
      margin-top: 20px;
      max-width: 42ch;
    }
    .card .tag {
      margin-top: auto;
      padding-top: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem;
      color: var(--ink);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      display: inline-flex; align-items: center; gap: 12px;
      transition: gap .25s ease, color .25s ease;
    }
    .card .tag::after {
      content: "→";
      font-size: 1rem;
      transition: transform .25s ease;
    }
    .card:hover .tag { gap: 18px; color: var(--gold); }
    .card:hover .tag::after { transform: translateX(4px); }

    .card.dark {
      background: var(--ink);
      color: var(--cream);
    }
    .card.dark h3 { color: var(--cream); }
    .card.dark p { color: rgba(255,253,235,0.75); }
    .card.dark .card-icon { color: var(--cream); opacity: 0.85; }
    .card.dark .tag { color: var(--cream); }
    .card.dark:hover .tag { color: var(--gold-light); }

    /* ========= NUMBERS ========= */
    .numbers {
      padding: 120px 48px;
      max-width: 1440px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      border-bottom: 1px solid var(--border);
    }
    .stat { position: relative; padding-top: 24px; }
    .stat::before {
      content: ""; position: absolute; top: 0; left: 0;
      width: 40px; height: 1px; background: var(--gold);
    }
    .stat-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5.2vw, 4.8rem);
      font-weight: 400; letter-spacing: -0.02em;
      line-height: 1;
      color: var(--ink);
    }
    .stat-label {
      margin-top: 14px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.75rem;
      color: var(--text-muted);
      letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 500;
    }

    /* ========= PROCESS ========= */
    #process { padding: 140px 48px; }
    .process-wrap { max-width: 1440px; margin: 0 auto; }
    .process-header { margin-bottom: 80px; max-width: 800px; }
    .process-steps {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px; position: relative;
    }
    .process-steps::before {
      content: ""; position: absolute;
      top: 28px; left: 5%; right: 5%;
      height: 1px;
      background: linear-gradient(to right, var(--gold), transparent);
    }
    .step { position: relative; }
    .step-num {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--cream);
      border: 1px solid var(--border-2);
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; color: var(--gold);
      margin-bottom: 24px;
      position: relative; z-index: 1;
      font-weight: 500;
    }
    .step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400;
      letter-spacing: -0.01em; margin-bottom: 10px;
      color: var(--ink);
    }
    .step p { color: var(--text-muted); font-size: 0.92rem; font-weight: 300; line-height: 1.7; }

    /* ========= TESTIMONIAL ========= */
    #testimonial {
      padding: 140px 48px;
      background: var(--ink);
      color: var(--cream);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      text-align: center;
    }
    #testimonial .eyebrow { color: rgba(255,253,235,0.7); }
    #testimonial .eyebrow::before { background: var(--gold); }
    .quote-big {
      max-width: 1000px; margin: 0 auto;
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.7rem, 3.6vw, 3.2rem);
      line-height: 1.25;
      font-weight: 300;
    }
    .quote-big .accent { color: var(--gold); }
    .quote-attrib {
      margin-top: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      color: rgba(255,253,235,0.7);
      letter-spacing: 0.14em; text-transform: uppercase;
      font-weight: 500;
    }

    /* ========= CONTACT ========= */
    #contact {
      padding: 140px 48px;
      max-width: 1440px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px;
    }
    .contact-left h2 { margin-bottom: 24px; }
    .contact-rows { margin-top: 56px; display: flex; flex-direction: column; }
    .contact-row {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 24px; align-items: baseline;
      padding: 24px 0;
      border-top: 1px solid var(--border);
    }
    .contact-row:last-child { border-bottom: 1px solid var(--border); }
    .contact-row .label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted); font-weight: 500;
    }
    .contact-row .value { color: var(--ink); font-size: 1rem; }
    .contact-row a.value { transition: color .2s; }
    .contact-row a.value:hover { color: var(--gold); }

    .form-eyebrow {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem; letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold); font-weight: 500;
      margin-bottom: 40px;
    }

    form { display: flex; flex-direction: column; gap: 22px; }
    .field { position: relative; }
    .field label {
      display: block;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem; letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-muted); margin-bottom: 10px;
      font-weight: 500;
    }
    .field input, .field textarea {
      width: 100%;
      background: transparent;
      border: none; border-bottom: 1px solid var(--border-2);
      padding: 10px 0;
      color: var(--ink); font: inherit;
      font-size: 1rem;
      transition: border-color .2s;
      outline: none;
      font-family: 'DM Sans', sans-serif;
    }
    .field input:focus, .field textarea:focus { border-bottom-color: var(--gold); }
    .field textarea { resize: vertical; min-height: 100px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

    button[type=submit] {
      align-self: stretch;
      margin-top: 24px;
      background: var(--ink); color: var(--cream);
      padding: 22px 28px; border-radius: 0;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500; font-size: 0.78rem;
      letter-spacing: 0.22em; text-transform: uppercase;
      display: inline-flex; align-items: center; justify-content: center; gap: 10px;
      transition: all .25s ease;
    }
    button[type=submit]:hover { background: var(--ink-soft); transform: translateY(-2px); }

    /* ========= FAQ ========= */
    #faq {
      padding: 140px 48px;
      background: var(--cream-2);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .faq-wrap {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.4fr;
      gap: 80px; align-items: start;
    }
    .faq-left h2 { margin-bottom: 24px; }
    .faq-list { display: flex; flex-direction: column; }
    .faq-item {
      border-top: 1px solid var(--border);
      padding: 28px 0;
    }
    .faq-item:last-child { border-bottom: 1px solid var(--border); }
    .faq-q {
      width: 100%;
      display: flex; justify-content: space-between; align-items: center;
      gap: 24px;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 1.8vw, 1.55rem);
      font-weight: 400; color: var(--ink);
      text-align: left; padding: 0;
      letter-spacing: -0.005em;
      cursor: pointer;
    }
    .faq-q .plus {
      width: 22px; height: 22px; flex-shrink: 0;
      position: relative; color: var(--gold);
    }
    .faq-q .plus::before, .faq-q .plus::after {
      content: ""; position: absolute; background: currentColor;
      transition: transform .3s ease, opacity .3s ease;
    }
    .faq-q .plus::before { top: 10px; left: 0; width: 22px; height: 1.5px; }
    .faq-q .plus::after  { top: 0; left: 10px; width: 1.5px; height: 22px; }
    .faq-item.open .faq-q .plus::after { transform: rotate(90deg); opacity: 0; }
    .faq-a {
      max-height: 0; overflow: hidden;
      transition: max-height .4s ease, margin-top .3s ease;
    }
    .faq-item.open .faq-a { max-height: 400px; margin-top: 16px; }
    .faq-a p {
      color: var(--text-muted); font-weight: 300;
      font-size: 0.98rem; line-height: 1.8;
      max-width: 62ch;
    }

    /* ========= FOOTER ========= */
    footer {
      padding: 96px 48px 40px;
      background: var(--cream-2);
      color: rgba(155,15,6,0.75);
    }
    .footer-wrap { max-width: 1440px; margin: 0 auto; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 64px;
      padding-bottom: 64px;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: 2rem;
      font-weight: 400;
      color: var(--ink);
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }
    .footer-brand .dot { color: var(--gold); }
    .footer-tagline {
      font-size: 0.95rem; line-height: 1.7;
      max-width: 28ch;
      color: rgba(155,15,6,0.65);
    }
    .footer-col h4 {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.72rem; letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 500;
      margin-bottom: 28px;
    }
    .footer-col ul { display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; margin: 0; }
    .footer-col a {
      color: rgba(155,15,6,0.8);
      font-size: 0.95rem;
      transition: color .2s;
    }
    .footer-col a:hover { color: var(--gold); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 32px;
      border-top: 1px solid rgba(155,15,6,0.18);
      font-size: 0.78rem;
      color: rgba(155,15,6,0.6);
      flex-wrap: wrap; gap: 16px;
    }
    .footer-socials { display: flex; gap: 14px; }
    .footer-socials a {
      width: 40px; height: 40px;
      border: 1px solid rgba(155,15,6,0.32);
      border-radius: 999px;
      display: inline-flex; align-items: center; justify-content: center;
      color: rgba(155,15,6,0.85);
      transition: color .2s ease, border-color .2s ease, background .2s ease;
    }
    .footer-socials a:hover {
      color: var(--cream-2);
      background: var(--gold);
      border-color: var(--gold);
    }
    .footer-socials svg { width: 16px; height: 16px; }

    /* ========= REVEAL ========= */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1);
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* ========= RESPONSIVE ========= */
    @media (max-width: 1024px) {
      .grid-services { grid-template-columns: repeat(2, 1fr); grid-auto-rows: minmax(380px, auto); }
      .card { padding: 56px 40px 44px; }
      .numbers { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 48px; }
      .process-steps::before { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
    }

    @media (max-width: 800px) {
      nav, .hero, #about, #process, #testimonial, #faq, #contact, footer,
      .numbers { padding-left: 24px; padding-right: 24px; }
      .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
      .services-header { padding-left: 24px; padding-right: 24px; }
      .hero-top { flex-direction: column; align-items: flex-start; gap: 18px; }
      .hero-meta { text-align: left; align-items: flex-start; }
      nav { padding-top: 16px; padding-bottom: 16px; }
      .nav-links, nav > .nav-cta { display: none; }
      .nav-burger { display: inline-flex; }
      .hero { padding-top: 120px; }
      .hero-bottom { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .services-header { grid-template-columns: 1fr; gap: 24px; }
      .grid-services { grid-template-columns: 1fr; grid-auto-rows: auto; }
      .card { padding: 56px 24px 44px; min-height: 360px; }
      #contact { grid-template-columns: 1fr; gap: 48px; }
      .form-row { grid-template-columns: 1fr; }
      .numbers { grid-template-columns: 1fr 1fr; gap: 24px; padding: 80px 24px; }
      .footer-bottom { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 48px; }
    }