@font-face {
  font-family: "Vatora";
  src: url("../fonts/Vatora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@layer reset, base, components;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; font-size: 18px; }
  body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: #2c3539;
    background-color: #f4f3ef;
    background-image: radial-gradient(circle, rgba(74,106,122,0.06) .75px, transparent .75px);
    background-size: 24px 24px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  body.nav-open { overflow: hidden; }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  h1, h2, h3, h4 {
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
    font-weight: 700; line-height: 1.15; margin: 0;
    text-transform: uppercase; letter-spacing: .04em;
  }
  p { margin: 0; }
  ::selection { background: #c7d4da; color: #1d2326; }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: #eae8e2; }
  ::-webkit-scrollbar-thumb { background: #b8b9b4; border-radius: 3px; }
}

@layer base {
  :root {
    --bg:        #f4f3ef;
    --surface:   #dee2e0;
    --tint-blue: #e4e8ec;
    --ink:       #2c3539;
    --ink-2:     #1d2326;
    --muted:     #475358;
    --muted-2:   #9aa3a7;
    --blue:      #4a6a7a;
    --blue-dk:   #3a5563;
    --line:      #dbd8d2;
    --white:     #ffffff;
    --maxw: 1120px;
    --header-h: 64px;
  }

  .container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 3.5vw, 40px); }
  .container-narrow { max-width: 680px; }
  [id] { scroll-margin-top: calc(var(--header-h) + 20px); }

  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .skip-link { position: absolute; left: 12px; top: -56px; background: var(--ink-2); color: var(--bg); padding: 8px 16px; font-size: .82rem; z-index: 200; font-weight: 500; font-family: "Plus Jakarta Sans", sans-serif; transition: top .2s; }
  .skip-link:focus { top: 12px; }

  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .45s ease, transform .45s ease; }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .08s; }
  .reveal-delay-2 { transition-delay: .16s; }
  .reveal-delay-3 { transition-delay: .24s; }
  .reveal-delay-4 { transition-delay: .32s; }
  .reveal-r { opacity: 0; transform: translateX(14px); transition: opacity .45s ease, transform .45s ease; }
  .reveal-r.revealed { opacity: 1; transform: translateX(0); }

  .section { position: relative; padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
  .section-bg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
  .section > .container, .section > .container-narrow,
  .quote-section > .container, .quote-section > .container-narrow,
  .cta > .container { position: relative; z-index: 1; }
  .section-tint {
    background: var(--surface);
    position: relative;
  }
  .section-tint-blue {
    background: var(--tint-blue);
    position: relative;
  }
  .section-tint::before,
  .section-tint-blue::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse at 20% 50%, rgba(74,106,122,.04) 0%, transparent 60%);
  }
  .section-tint::after,
  .section-tint-blue::after {
    content: ''; position: absolute; top: -12px; left: 0;
    width: 100%; height: 12px; pointer-events: none;
    -webkit-clip-path: polygon(0 100%, 25% 0, 50% 100%, 75% 0, 100% 100%);
    clip-path: polygon(0 100%, 25% 0, 50% 100%, 75% 0, 100% 100%);
  }
  .section-tint::after { background: var(--surface); }
  .section-tint-blue::after { background: var(--tint-blue); }
  .section-head { margin-bottom: 2rem; }
  .section-head h2 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); color: var(--ink-2); }

  .eyebrow {
    display: block;
    font-family: "Plus Jakarta Sans", sans-serif;
    text-transform: uppercase; letter-spacing: .18em; font-size: .6rem;
    font-weight: 600; color: var(--blue);
    margin-bottom: .8rem;
  }
  .eyebrow-light { color: rgba(255,255,255,.6); }

  .btn {
    display: inline-flex; align-items: center; gap: .4rem;
    font-family: "Plus Jakarta Sans", sans-serif; font-size: .78rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    padding: .55rem 1.1rem; border: 1px solid transparent;
    transition: transform .2s ease, background .2s, color .2s, border-color .2s, box-shadow .2s;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 3px 8px rgba(0,0,0,.1); }
  .btn-blue { background: #1d3340; color: var(--bg); border: 1px solid #1d3340; }
  .btn-blue:hover { background: var(--ink-2); border-color: var(--ink-2); transform: translateY(-1px); }
  .btn-outline { background: transparent; color: var(--ink-2); border: 1px solid var(--line); }
  .btn-outline:hover { background: var(--ink-2); color: var(--bg); border-color: var(--ink-2); transform: translateY(-1px); }
  .btn-light { background: transparent; color: var(--bg); border: 1px solid rgba(255,255,255,.25); }
  .btn-light:hover { background: var(--bg); color: var(--ink-2); border-color: var(--bg); transform: translateY(-1px); }

  .link-arrow {
    display: inline-flex; align-items: center; gap: .25rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em;
    color: var(--muted);
    border-bottom: 1px solid transparent;
    transition: border-color .2s, color .2s;
  }
  .link-arrow::after { content: "→"; font-size: .9em; transition: transform .2s; }
  .link-arrow:hover { border-bottom-color: currentColor; color: var(--ink-2); }
  .link-arrow:hover::after { transform: translateX(3px); }
  .link-arrow-light { color: rgba(255,255,255,.6); }
  .link-arrow-light:hover { color: var(--bg); }

  :focus { outline: none; }
  :focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

  .brand {
    display: flex; align-items: center; gap: .5rem;
    font-family: "Vatora", sans-serif;
    font-size: 1rem; letter-spacing: .03em; text-transform: uppercase;
    color: var(--bg);
  }
  .brand img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
}

@layer components {
  .site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 90;
    background: linear-gradient(180deg, #1f282d 0%, #253035 100%);
    height: var(--header-h);
    transition: transform .3s ease;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .site-header.scrolled { border-bottom-color: rgba(255,255,255,.1); }
  .site-header.hidden { transform: translateY(-100%); }
  .header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

  .nav-links { display: flex; align-items: center; gap: 1.4rem; }
  .nav-links a {
    display: inline-flex; align-items: baseline; gap: .3rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.55);
    transition: color .2s;
    position: relative;
  }
  .nav-links a::after {
    content: ""; position: absolute; left: 50%; bottom: -3px;
    width: 0; height: 1.5px; background: var(--blue);
    transform: translateX(-50%);
    transition: width .25s ease;
  }
  .nav-links a:hover { color: var(--bg); }
  .nav-links a:hover::after { width: 100%; }
  .nav-links a.active { color: var(--bg); }
  .nav-links a.active::after { width: 100%; }
  .nav-links .nav-num {
    font-size: .55rem; font-weight: 700; color: var(--blue);
    font-variant-numeric: tabular-nums;
  }

  .nav-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 4px;
    width: 26px; height: 26px;
    background: none; border: none; cursor: pointer;
    padding: 2px; z-index: 120;
    transition: transform .2s;
  }
  .nav-toggle:hover .hamburger-line { background: rgba(255,255,255,.85); }
  .hamburger-line {
    display: block; width: 100%; height: 2px;
    background: rgba(255,255,255,.55); border-radius: 1px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
  }
  .nav-toggle.open .hamburger-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open .hamburger-line:nth-child(2) { opacity: 0; }
  .nav-toggle.open .hamburger-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-overlay {
    position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
    background: var(--ink-2);
    padding: 1.2rem 0;
    opacity: 0; visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .3s ease, visibility 0s linear .3s, transform .3s ease;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-overlay.open {
    opacity: 1; visibility: visible;
    transform: translateY(0);
    transition: opacity .3s ease, visibility 0s linear, transform .3s ease;
  }
  .nav-overlay nav { display: flex; flex-direction: column; gap: 2px; padding: 0 1.5rem; }
  .nav-overlay a {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .08em;
    color: rgba(255,255,255,.55);
    padding: .55rem .75rem;
    border-radius: 4px;
    transition: background .2s, color .2s;
  }
  .nav-overlay a:hover { background: rgba(255,255,255,.06); color: var(--white); }

  .hero {
    position: relative;
    padding: calc(var(--header-h) + clamp(2rem, 3vw, 3rem)) 0 clamp(1.5rem, 2vw, 2rem);
  }
  .hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
  .hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: center; }
  .hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; line-height: 1.15; margin-bottom: .6rem; color: var(--ink-2); }
  .hero-text { color: var(--muted); font-size: .92rem; line-height: 1.7; max-width: 42ch; }
  .hero-actions { display: flex; align-items: center; gap: 1rem; margin-top: 1.4rem; }
  .hero-clients {
    display: flex; gap: .4rem; flex-wrap: wrap; list-style: none;
    padding: .8rem 0 0; margin: 1.2rem 0 0;
    border-top: 1px solid var(--line);
  }
  .hero-clients li {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .6rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .1em; color: var(--muted-2);
    padding-right: .6rem; margin-right: .6rem;
    border-right: 1px solid var(--line);
  }
  .hero-clients li:last-child { border: none; margin: 0; padding: 0; }
  .hero-image { position: relative; }
  .hero-image-svg { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
  .hero-image img {
    position: relative; z-index: 1;
    width: 82%; aspect-ratio: 4/5; object-fit: cover; margin-inline: auto;
  }
  .hero-image .tag {
    position: absolute; top: -.35rem; left: -.35rem;
    background: var(--blue); color: var(--bg);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .5rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: .08em; padding: .35rem .55rem;
    line-height: 1; z-index: 1;
  }

  .about-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem 3rem; align-items: start; }
  .about-text h2 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 700; margin-bottom: 1rem; color: var(--ink-2); }
  .about-text p { color: var(--muted); margin-bottom: .8rem; line-height: 1.75; font-size: .9rem; }
  .about-text strong { color: var(--ink-2); font-weight: 600; }
  .about-photos {
    position: relative; display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px 0;
    overflow: hidden;
  }
  .about-photos-svg {
    position: absolute; inset: -30px -40px -30px -40px; width: calc(100% + 80px); height: calc(100% + 60px);
    pointer-events: none; z-index: 1;
  }
  .photo-card { border: 1px solid var(--line); border-radius: 4px; overflow: hidden; z-index: 2; }
  .photo-card img { width: 100%; display: block; }
  .pc-a img { aspect-ratio: 4/3; object-fit: cover; }
  .pc-b img { aspect-ratio: 1/1; object-fit: cover; }
  .pc-c img { aspect-ratio: 1/1; object-fit: cover; }
  .pc-d img { aspect-ratio: 4/3; object-fit: cover; }
  .about-signature { display: flex; align-items: center; gap: .8rem; margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
  .about-signature img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
  .about-signature strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
  .about-signature span { font-size: .68rem; color: var(--muted); }

  .focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem; }
  .focus-card { padding-top: .8rem; border-top: 1px solid var(--line); }
  .focus-icon { display: block; width: 1.4rem; height: 1.4rem; color: var(--blue); margin-bottom: .4rem; }
  .focus-icon svg { width: 100%; height: 100%; }
  .focus-card h3 { font-size: .85rem; font-weight: 700; margin-bottom: .3rem; color: var(--ink-2); }
  .focus-card p { color: var(--muted); font-size: .82rem; line-height: 1.65; }

  .quote-section { position: relative; padding: clamp(2rem, 3vw, 2.5rem) 0; text-align: center; }
  .quote-section blockquote {
    font-size: clamp(1rem, 2.2vw, 1.3rem); font-style: italic; font-weight: 500;
    line-height: 1.4; margin: 0 0 .6rem; color: var(--ink-2);
    max-width: 42ch; margin-inline: auto;
  }
  .quote-section blockquote em { font-style: normal; color: var(--blue); }
  .quote-section cite { font-size: .72rem; font-style: normal; color: var(--muted-2); font-family: "Plus Jakarta Sans", sans-serif; text-transform: uppercase; letter-spacing: .06em; }
  .quote-section .eyebrow { margin-bottom: 1.2rem; }



  .testimonials { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .testimonial { margin: 0; padding: 1.2rem 1.4rem; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; }
  .testimonial p { font-size: .86rem; font-style: italic; line-height: 1.65; color: var(--muted); margin: 0; }
  .quote-icon { width: 1.5rem; height: 1.5rem; color: var(--blue); opacity: .4; margin-bottom: .5rem; display: block; }
  .testimonial cite { display: block; margin-top: .6rem; padding-top: .6rem; border-top: 1px solid var(--line); font-family: "Plus Jakarta Sans", sans-serif; font-size: .62rem; font-style: normal; color: var(--muted-2); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

  .cta { position: relative; background: var(--ink-2); color: var(--bg); padding: clamp(2.5rem, 4vw, 3.5rem) 0; }
  .cta .container { display: grid; grid-template-columns: 1fr; gap: 0; align-items: center; text-align: center; }
  .cta h2 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 700; margin-bottom: .8rem; color: var(--bg); }
  .cta p { color: rgba(255,255,255,.5); line-height: 1.7; font-size: .82rem; max-width: 44ch; margin-inline: auto; }
  .cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .8rem; margin-top: 1.2rem; }
  .form-group { display: flex; flex-direction: column; gap: .3rem; }
  .form-group label { font-family: "Plus Jakarta Sans", sans-serif; font-size: .55rem; text-transform: uppercase; letter-spacing: .12em; color: var(--blue); font-weight: 700; }
  .form-group input, .form-group textarea {
    font-family: "STIX Two Text", serif; font-size: .85rem; color: var(--bg);
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    padding: .5rem .65rem; transition: border-color .2s, background .2s;
  }
  .form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); background: rgba(255,255,255,.1); }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,.25); }
  .form-feedback { font-family: "Plus Jakarta Sans", sans-serif; font-size: .68rem; color: var(--blue); margin: 0; }

  .site-footer { padding: 1.2rem 0; background: var(--ink-2); border-top: 1px solid rgba(255,255,255,.04); }
  .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem; }
  .footer-inner p { font-size: .68rem; color: rgba(255,255,255,.3); }
  .footer-email { font-size: .68rem; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
  .footer-email:hover { color: var(--blue); }
  .footer-privacy { font-size: .62rem; color: rgba(255,255,255,.3); text-decoration: underline; text-underline-offset: 3px; transition: color .2s; text-decoration-color: rgba(255,255,255,.15); }
  .footer-privacy:hover { color: var(--blue); text-decoration-color: var(--blue); }
  .footer-social { display: flex; gap: .8rem; }
  .footer-social a { font-family: "Plus Jakarta Sans", sans-serif; font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.38); text-transform: uppercase; letter-spacing: .06em; transition: color .2s; }
  .footer-social a:hover { color: var(--blue); }

  .back-to-top {
    position: fixed; bottom: 1.2rem; right: 1.2rem; z-index: 80;
    width: 34px; height: 34px;
    background: var(--white); color: var(--ink-2);
    border: 1px solid var(--line); cursor: pointer;
    display: grid; place-items: center;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .2s, visibility 0s linear .2s, transform .2s ease, background .2s;
  }
  .back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .2s, visibility 0s linear, transform .2s ease, background .2s; }
  .back-to-top:hover { background: var(--ink-2); color: var(--bg); border-color: var(--ink-2); }
  .back-to-top svg { width: 14px; height: 14px; }

  /* ---- Booking modal ---- */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(0,0,0,.5); backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: grid; place-items: center; padding: 1rem;
    opacity: 0; visibility: hidden;
    transition: opacity .25s ease, visibility 0s linear .25s;
  }
  .modal-overlay.open {
    opacity: 1; visibility: visible;
    transition: opacity .25s ease, visibility 0s linear;
  }
  .modal {
    background: var(--bg); border-radius: 10px;
    width: 100%; max-width: 520px; max-height: 90dvh;
    display: flex; flex-direction: column;
    position: relative;
    transform: translateY(12px); transition: transform .25s ease;
    box-shadow: 0 16px 48px rgba(0,0,0,.2);
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-header {
    background: var(--ink-2); padding: 1.2rem 1.5rem;
    border-radius: 10px 10px 0 0;
    flex-shrink: 0;
  }
  .modal-heading {
    font-size: 1rem; margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700;
    color: var(--bg); text-transform: uppercase; letter-spacing: .06em;
  }
  .modal-heading span { color: var(--blue); }
  .modal-close {
    position: absolute; top: .8rem; right: .8rem;
    width: 28px; height: 28px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: none; cursor: pointer;
    font-size: 1.2rem; line-height: 1; color: rgba(255,255,255,.6);
    display: grid; place-items: center; padding: 0;
    transition: background .2s, color .2s;
  }
  .modal-close:hover { background: rgba(255,255,255,.2); color: var(--bg); }
  .modal-body { padding: 1.2rem 1.5rem 1.5rem; overflow-y: auto; -webkit-overflow-scrolling: touch; touch-action: pan-y; }
  .modal .form-group { margin-bottom: .8rem; }
  .modal .form-group label {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .6rem; text-transform: uppercase; letter-spacing: .1em;
    color: var(--blue); font-weight: 700; display: block; margin-bottom: .25rem;
  }
  .modal .form-group input,
  .modal .form-group textarea,
  .modal .form-group select {
    font-family: "Inter", sans-serif; font-size: .85rem; color: var(--ink-2);
    background: var(--surface); border: 1px solid var(--line);
    padding: .55rem .7rem; width: 100%; box-sizing: border-box;
    transition: border-color .2s, background .2s;
  }
  .modal .form-group input[type="date"] { display: block; min-width: 0; }
  .modal .form-group input:focus,
  .modal .form-group textarea:focus,
  .modal .form-group select:focus {
    outline: none; border-color: var(--blue); background: var(--bg);
  }
  .modal .form-group.has-error input,
  .modal .form-group.has-error textarea,
  .modal .form-group.has-error select { border-color: #c0392b; background: #fdf2f0; }
  .form-error { display: block; font-size: .6rem; color: #c0392b; margin-top: .2rem; min-height: 0; }
  .form-error:empty { display: none; }
  .modal .form-group input::placeholder,
  .modal .form-group textarea::placeholder,
  .modal .form-group select:invalid { color: var(--muted-2); }
  .modal .form-group small {
    display: block; font-size: .6rem; color: var(--muted-2);
    margin-top: .2rem; line-height: 1.4;
  }
  .modal .form-group input[readonly] {
    background: var(--tint-blue); color: var(--muted); cursor: default;
    border-color: var(--line);
  }
  .modal .form-group input[readonly]::placeholder { color: var(--muted-2); }
  .modal .btn { width: 100%; justify-content: center; margin-top: .4rem; }
  .modal .form-feedback { font-size: .68rem; margin-top: .4rem; }
  .form-privacy { font-size: .6rem; color: var(--muted-2); margin: -.2rem 0 .6rem; }
  .form-privacy a { color: var(--blue); text-decoration: underline; }
  .booking-success { text-align: center; padding: 2rem .5rem; }
  .booking-success-icon { width: 48px; height: 48px; color: var(--blue); margin: 0 auto 1rem; }
  .booking-success p { font-size: .95rem; color: var(--ink-2); font-weight: 500; }
  .booking-success-sub { font-size: .78rem; color: var(--muted); margin-top: .3rem !important; font-weight: 400 !important; }
  .booking-success .btn { margin-top: 1.2rem; }
  .privacy-body { font-size: .78rem; line-height: 1.7; color: var(--muted); }
  .privacy-body h3 { font-size: .82rem; font-weight: 700; color: var(--ink-2); margin: 1.2rem 0 .3rem; text-transform: uppercase; letter-spacing: .04em; }
  .privacy-body p { margin-bottom: .4rem; }
  .privacy-body ul { padding-left: 1.1rem; margin: .3rem 0 .5rem; }
  .privacy-body li { margin-bottom: .15rem; }
  .privacy-body a { color: var(--blue); text-decoration: underline; }
  .privacy-date { font-size: .65rem; color: var(--muted-2); }

  /* ---- Animations ---- */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
  .reveal-clip { opacity: 0; transform: scale(.97); transition: opacity .6s ease, transform .6s cubic-bezier(.25,.46,.45,.94); }
  .reveal-clip.revealed { opacity: 1; transform: scale(1); }

  .hero-content > * { animation: fadeUp .6s ease both; }
  .hero-content .eyebrow { animation-delay: .1s; }
  .hero-content h1 { animation-delay: .2s; }
  .hero-content .hero-text { animation-delay: .35s; }
  .hero-content .hero-actions { animation-delay: .5s; }
  .hero-content .hero-clients { animation-delay: .65s; }
  .hero-image { animation: fadeUp .7s ease both; animation-delay: .3s; }

  .focus-card {
    transition: transform .25s ease, border-color .25s ease;
  }
  .focus-card:hover { transform: translateY(-2px); border-top-color: var(--blue); }

  .btn { transition: transform .15s ease, background .2s, color .2s, border-color .2s; }
  .btn:active { transform: scale(.97); box-shadow: none; }

  @media (max-width: 820px) {
    :root { --header-h: 52px; }
    .container { padding-inline: 16px; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero .container { grid-template-columns: 1fr; gap: 0; }
    .hero-content { display: contents; }
    .hero-content .eyebrow { order: 1; }
    .hero-content h1 { order: 2; }
    .hero-image { order: 3; max-width: 300px; margin: .8rem auto; }
    .hero-image img { width: 100%; }
    .hero-content .hero-text { order: 4; }
    .hero-content .hero-actions { order: 5; }
    .hero-content .hero-clients { order: 6; }
    .about-layout { grid-template-columns: 1fr; gap: 1rem; }
    .about-photos { gap: 6px; }
    .focus-grid { gap: 1rem; }
    .cta .container { text-align: center; }
    .cta h2 { font-size: 1.2rem; }
    .modal { padding: 0; }
    .modal-header { padding: .8rem 1rem; }
    .modal-body { padding: .8rem 1rem 1rem; }
    .modal-heading { font-size: .85rem; }
    .modal .form-group { margin-bottom: .6rem; overflow-x: hidden; }
    .modal .form-group label { font-size: .55rem; }
    .modal .form-group input,
    .modal .form-group textarea,
    .modal .form-group select { font-size: 16px; padding: .45rem .6rem; }
    .booking-success { padding: 1rem .5rem; }
    .booking-success-icon { width: 36px; height: 36px; margin-bottom: .6rem; }
    .booking-success p { font-size: .85rem; }
    .booking-success-sub { font-size: .72rem; }
    .privacy-body { font-size: .72rem; }
    .privacy-body h3 { font-size: .75rem; }
  }
  @media (max-width: 540px) {
    :root { --header-h: 52px; font-size: 16px; }
    .hero { padding-top: calc(var(--header-h) + .8rem); }
    .hero h1 { font-size: 1.2rem; margin-bottom: .35rem; }
    .hero-text { font-size: .82rem; }
    .hero-image { max-width: 200px; margin: .6rem auto; }
    .hero-actions { flex-direction: column; align-items: stretch; margin-top: .8rem; }
    .hero-actions .btn { justify-content: center; }
    .hero-actions .link-arrow { justify-content: center; }
    .hero-clients { margin-top: .6rem; padding-top: .5rem; }
    .hero-clients li { font-size: .65rem; padding: 0 .3rem; }
    .eyebrow { font-size: .55rem; margin-bottom: .5rem; }
    .section-head { margin-bottom: 1rem; }
    .section-head h2 { font-size: 1.1rem; }
    .focus-grid { grid-template-columns: 1fr; gap: .5rem; }
    .focus-card { padding-top: .5rem; }
    .focus-card h3 { font-size: .78rem; }
    .focus-card p { font-size: .76rem; }
    .testimonials { grid-template-columns: 1fr; gap: .6rem; }
    .testimonial { padding: .8rem .9rem; }
    .testimonial p { font-size: .8rem; }
    .quote-icon { width: 1.2rem; height: 1.2rem; margin-bottom: .3rem; }
    .about-photos { grid-template-columns: 1fr 1fr; padding: 0; gap: 4px; }
    .about-photos-svg { inset: -20px -20px; width: calc(100% + 40px); height: calc(100% + 40px); }
    .about-photos .photo-card { width: auto; margin: 0; }
    .about-photos .photo-card img { height: auto; }
    .pc-a, .pc-b, .pc-c, .pc-d { grid-column: auto; grid-row: auto; }
    .about-text p { font-size: .82rem; margin-bottom: .6rem; }
    .section { padding: 1.5rem 0; }
    .quote-section { padding: 1.2rem 0; }
    .quote-section blockquote { font-size: .88rem; }
    .quote-section cite { font-size: .65rem; }
    .quote-section .eyebrow { margin-bottom: .6rem; }
    .cta { padding: 1.5rem 0; }
    .cta h2 { font-size: 1.1rem; margin-bottom: .5rem; }
    .cta p { font-size: .78rem; }
    .cta-actions { flex-direction: column; align-items: stretch; margin-top: .6rem; }
    .cta-actions .btn { justify-content: center; }
    .cta-actions .link-arrow { justify-content: center; }
    .nav-overlay { padding: .6rem 0; }
    .nav-overlay a { padding: .4rem .6rem; font-size: .8rem; }
    .btn { padding: .5rem 1rem; font-size: .7rem; }
    .form-group label { font-size: .6rem; }
    .form-group input, .form-group textarea { padding: .5rem .6rem; font-size: 16px; }
    .footer-inner { flex-direction: column; text-align: center; gap: .3rem; }
    .footer-email { font-size: .75rem; }
    .footer-privacy { font-size: .58rem; }
    .footer-social { gap: .6rem; }
    .footer-social a { padding: .4rem 0; font-size: .65rem; }
    .back-to-top { bottom: .8rem; right: .8rem; width: 30px; height: 30px; }
    .back-to-top svg { width: 12px; height: 12px; }
  }
  @media (max-width: 400px) {
    .container { padding-inline: 12px; }
    .hero h1 { font-size: 1.05rem; }
    .hero-text { font-size: .75rem; }
    .hero-image { max-width: 120px; }
    .about-photos .photo-card img { height: auto; }
    .about-signature span { font-size: .6rem; }
    .about-signature img { width: 28px; height: 28px; }
    .quote-section blockquote { font-size: .8rem; }
    .testimonial { padding: .6rem .7rem; }
    .testimonial p { font-size: .72rem; }
    .cta h2 { font-size: .95rem; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
    .reveal, .reveal-r, .reveal-clip { opacity: 1; transform: none; clip-path: none; }
    .site-header.hidden { transform: none; }
  }
}
