/* =========================================================
   Vyřídímestavbu — layout a sekce.
   Hodnoty 1:1 přeneseny z design systému (React komponenty).
   ========================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--warm);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* Patička drží u spodního okraje i na krátkých stránkách a velkých monitorech. */
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; }
img, svg { display: block; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); }
.i { font-style: italic; }
.sage { color: var(--sage); }
.arrow { display: inline-flex; transition: transform 250ms var(--ease-out); }

/* Eyebrow */
.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.eyebrow-line { width: 32px; height: 1px; background: var(--sage); }
.eyebrow-line--light { background: hsl(40 33% 96% / 0.4); }
.eyebrow { color: var(--sage); font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; margin: 0; }
.eyebrow--on-dark { color: hsl(152 20% 92% / 0.7); }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 60; pointer-events: none; }
.scroll-progress span { display: block; height: 100%; width: 0; background: var(--sage); transition: width 80ms linear; }

/* Scroll reveal */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* Hero mount */
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-anim { opacity: 0; animation: heroIn 0.8s var(--ease-out) forwards; }

/* =================== NAVBAR =================== */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: hsl(152 30% 25% / 0.8); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid hsl(152 28% 38% / 0.2); }
.navbar__inner { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.navbar__brand { font-family: var(--font-serif); font-size: 20px; color: var(--warm); text-decoration: none; }
.navbar__brand span { font-style: italic; }
.navbar__links { display: flex; align-items: center; gap: 32px; }
.nav-link { font-family: var(--font-sans); font-size: 14px; color: hsl(40 33% 96% / 0.7); text-decoration: none; transition: color 200ms var(--ease-out); }
.nav-link:hover { color: var(--warm); }
.navbar__toggle { display: none; background: none; border: 0; color: var(--warm); cursor: pointer; padding: 4px; }
.navbar__toggle .icon-x { display: none; }
.navbar__mobile { display: none; background: hsl(152 30% 25% / 0.95); backdrop-filter: blur(12px); border-top: 1px solid hsl(152 28% 38% / 0.2); padding: 16px 24px; flex-direction: column; gap: 12px; }
.navbar.is-open .navbar__mobile { display: flex; }
.navbar.is-open .icon-menu { display: none; }
.navbar.is-open .icon-x { display: inline-flex; }

/* =================== HERO =================== */
/* Na vysokých monitorech se hlavička nenatahuje přes celou výšku — po odebrání
   odznaku s autorizací by nad textem zůstal velký prázdný pruh. */
.hero { position: relative; min-height: min(100vh, 860px); display: flex; flex-direction: column; overflow: hidden; background: var(--sage-dark); }
.hero__bg { position: absolute; inset: 0; }
.hero__bg::before { content: ""; position: absolute; inset: 0; opacity: 0.05; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom right, var(--sage-dark) 0%, hsl(152 30% 22%) 55%, hsl(152 28% 38% / 0.85) 100%); }
.hero__streak { position: absolute; top: -20%; right: -15%; width: 60%; height: 140%; background: linear-gradient(120deg, transparent 40%, hsl(152 20% 92% / 0.04) 50%, transparent 60%); transform: rotate(8deg); }

.hero-main { position: relative; z-index: 10; max-width: var(--container-max); margin: 0 auto; width: 100%; padding: 104px 24px 24px; flex: 1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero__eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.hero__eyebrow-line { width: 42px; height: 1px; background: hsl(40 33% 96% / 0.4); }
.hero__eyebrow { color: var(--sage-light); font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; margin: 0; }
.hero__title { font-family: var(--font-serif); color: var(--warm); font-weight: 400; font-size: clamp(56px, 8vw, 112px); line-height: 0.95; margin: 0 0 24px; letter-spacing: -0.015em; }
.hero__title .i { color: var(--sage-light); }
.hero__lead { color: hsl(40 33% 96% / 0.78); font-size: clamp(17px, 1.4vw, 20px); max-width: 520px; margin: 0 0 32px; font-family: var(--font-sans); line-height: 1.55; }
.hero__cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero__cta-secondary { color: var(--warm); padding: 15px 4px; font-family: var(--font-sans); font-weight: 500; font-size: 14px; }
.hero__meta { margin-top: 48px; display: flex; gap: 40px; color: hsl(40 33% 96% / 0.7); font-family: var(--font-sans); font-size: 13px; flex-wrap: wrap; }
.hero__meta-label { display: block; color: hsl(40 33% 96% / 0.4); font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; margin-bottom: 4px; }

.hero__photo { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero__watermark { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); opacity: 0.06; color: var(--warm); pointer-events: none; }
.hero__frame { position: relative; width: 100%; max-width: 460px; aspect-ratio: 4 / 5; }
.hero__frame-border { position: absolute; inset: -12px; border: 1px solid hsl(40 33% 96% / 0.22); pointer-events: none; }
.hero__illu-clip { position: absolute; inset: 0; overflow: hidden; }
.hero-illu { width: 100%; height: 100%; }
.hero__badge-card { position: absolute; bottom: -28px; left: -28px; background: var(--warm); padding: 20px 22px; box-shadow: 0 14px 36px -10px hsl(160 20% 5% / 0.4); }
.hero__badge-num { font-family: var(--font-serif); font-size: 28px; color: var(--sage-dark); line-height: 1; font-style: italic; }
.hero__badge-label { font-family: var(--font-sans); font-size: 10px; color: var(--ink-muted); letter-spacing: 0.2em; text-transform: uppercase; margin-top: 4px; }
.hero__badge-v { position: absolute; top: -10px; right: -10px; width: 56px; height: 56px; background: var(--sage); display: flex; align-items: center; justify-content: center; border-radius: 999px; box-shadow: 0 8px 20px -4px hsl(160 20% 5% / 0.35); }
.hero__badge-v span { font-family: var(--font-serif); font-size: 24px; color: var(--warm); font-style: italic; line-height: 1; }

.hero__tiles-wrap { position: relative; z-index: 10; max-width: var(--container-max); margin: 0 auto; width: 100%; padding: 0 24px 32px; }
.hero__tiles-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; padding: 0 4px; }
.hero__tiles-eyebrow { color: hsl(40 33% 96% / 0.5); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-family: var(--font-sans); margin: 0; }
.hero__tiles-range { color: hsl(40 33% 96% / 0.4); font-size: 11px; font-family: var(--font-serif); font-style: italic; margin: 0; }
.hero-tiles { background: hsl(0 0% 100% / 0.07); backdrop-filter: blur(14px); border-radius: 18px; padding: 6px; display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid hsl(0 0% 100% / 0.18); }
.hero-tile { position: relative; display: flex; flex-direction: column; align-items: flex-start; text-align: left; padding: 18px 14px 16px; border-radius: 14px; text-decoration: none; transition: background-color 200ms var(--ease-out); border-right: 1px solid hsl(0 0% 100% / 0.08); }
.hero-tile:last-child { border-right: none; }
.hero-tile { cursor: default; }
.hero-tile__top { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.hero-tile__num { font-family: var(--font-serif); font-style: italic; font-size: 13px; color: hsl(40 33% 96% / 0.45); }
.hero-tile__icon { color: hsl(40 33% 96% / 0.85); display: inline-flex; }
.hero-tile__title { font-size: 14px; font-weight: 600; color: var(--warm); font-family: var(--font-sans); line-height: 1.2; margin-bottom: 2px; }
.hero-tile-sub { font-size: 11px; color: hsl(40 33% 96% / 0.5); font-family: var(--font-sans); line-height: 1.3; }

/* =================== SERVICES =================== */
.services { padding: 120px 0 96px; background: var(--warm); position: relative; }
.services__head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 56px; gap: 32px; flex-wrap: wrap; }
.services__head-left { max-width: 640px; }
.services__title { font-size: clamp(48px, 6vw, 80px); color: var(--ink); line-height: 0.95; letter-spacing: -0.015em; margin: 0; }
.services__head-text { color: var(--ink-muted); font-size: 16px; line-height: 1.6; max-width: 380px; margin: 0; }
.services-grid-v2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
.services__compact-col { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }

.svc-feature { position: relative; display: block; border-radius: 24px; overflow: hidden; background: var(--sage-dark); text-decoration: none; height: 100%; min-height: 540px; }
.svc-feature__grad { position: absolute; inset: 0; transition: all 600ms; background: linear-gradient(155deg, hsl(152 30% 22%) 0%, var(--sage-dark) 50%, hsl(152 28% 38% / 0.75) 100%); }
.svc-feature:hover .svc-feature__grad { background: linear-gradient(155deg, hsl(152 30% 22%) 0%, var(--sage-dark) 50%, hsl(152 28% 38% / 0.95) 100%); }
.svc-feature__watermark { position: absolute; right: -40px; bottom: -20px; opacity: 0.12; transition: opacity 500ms; color: #fff; }
.svc-feature:hover .svc-feature__watermark { opacity: 0.18; }
.svc-feature__num { position: absolute; top: 32px; left: 32px; font-family: var(--font-serif); font-style: italic; font-size: 28px; color: hsl(40 33% 96% / 0.5); z-index: 1; }
.svc-feature__body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 40px 36px 36px; }
.svc-feature__subtitle { color: hsl(40 33% 96% / 0.7); font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 12px; }
.svc-feature__title { font-size: clamp(40px, 5vw, 56px); font-family: var(--font-serif); color: #fff; margin-bottom: 16px; line-height: 1; letter-spacing: -0.01em; }
.svc-feature__detail { color: hsl(40 33% 96% / 0.75); font-family: var(--font-sans); font-size: 15px; line-height: 1.6; max-width: 380px; margin-bottom: 24px; }
.svc-feature__more { display: flex; align-items: center; gap: 8px; color: hsl(40 33% 96% / 0.85); font-family: var(--font-sans); font-size: 13px; font-weight: 500; transition: color 200ms var(--ease-out); }
.svc-feature:hover .svc-feature__more { color: #fff; }
.svc-feature:hover .arrow { transform: translateX(6px); }

.svc-compact { position: relative; display: flex; flex-direction: column; justify-content: space-between; border-radius: 24px; padding: 32px; background: var(--warm-secondary); text-decoration: none; transition: background-color 200ms var(--ease-out); color: var(--ink); height: 100%; min-height: 258px; border: 1px solid var(--warm-border); }
.svc-compact:hover { background: var(--warm-card); }
.svc-compact:hover .arrow { transform: translateX(4px); }
.svc-compact__top { display: flex; align-items: flex-start; justify-content: space-between; }
.svc-compact__icon { width: 48px; height: 48px; background: var(--sage-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--sage); }
.svc-compact__num { font-family: var(--font-serif); font-style: italic; font-size: 24px; color: hsl(152 28% 38% / 0.4); }
.svc-compact__subtitle { color: var(--sage); font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 8px; }
.svc-compact__title { font-size: 28px; color: var(--ink); margin: 0 0 8px; line-height: 1.05; }
.svc-compact__more { display: flex; align-items: center; gap: 8px; color: var(--sage); font-family: var(--font-sans); font-size: 13px; font-weight: 500; margin-top: 12px; }

/* =================== ABOUT =================== */
.about { padding: 120px 0; background: var(--sage-light); position: relative; overflow: hidden; }
.about__backdrop { position: absolute; top: -80px; right: -60px; font-family: var(--font-serif); font-size: 520px; color: hsl(152 28% 38% / 0.05); line-height: 0.8; font-style: italic; pointer-events: none; user-select: none; }
.about__container { position: relative; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.about__media-inner { position: relative; aspect-ratio: 4 / 5; max-width: 440px; }
.about-illu { width: 100%; height: 100%; }
.about__quote-card { position: absolute; bottom: -36px; right: -28px; background: var(--warm); padding: 24px 26px; max-width: 280px; box-shadow: 0 14px 36px -10px hsl(160 20% 15% / 0.18); }
.about__quote-mark { font-family: var(--font-serif); font-size: 64px; color: var(--sage); line-height: 0.6; display: block; margin-bottom: 4px; font-style: italic; }
.about__quote-text { font-family: var(--font-serif); font-size: 17px; color: var(--ink); line-height: 1.4; margin: 0; }
.about__title { font-size: clamp(40px, 5vw, 64px); color: var(--ink); margin: 0 0 28px; line-height: 1.0; letter-spacing: -0.015em; }
.about__lead { color: var(--ink); font-family: var(--font-sans); line-height: 1.7; margin: 0 0 16px; font-size: 17px; }
.about__body { color: var(--ink-muted); font-family: var(--font-sans); line-height: 1.7; margin: 0 0 32px; font-size: 16px; }
.about__credentials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 40px; padding-top: 24px; border-top: 1px solid hsl(152 28% 38% / 0.18); }
.about__cred-key { font-family: var(--font-sans); font-size: 10px; color: var(--sage); letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 4px; }
.about__cred-val { font-family: var(--font-serif); font-size: 17px; color: var(--ink); }
.about__stats { display: grid; grid-template-columns: repeat(1, 1fr); border-top: 1px solid hsl(152 28% 38% / 0.18); border-bottom: 1px solid hsl(152 28% 38% / 0.18); }
.about__stat { padding: 24px 16px 24px 0; border-right: 1px solid hsl(152 28% 38% / 0.18); }
.about__stat:last-child { border-right: none; }
.about__stat:not(:first-child) { padding-left: 24px; }
.about__stat-icon { color: var(--sage); margin-bottom: 10px; }
.about__stat-value { font-size: clamp(32px, 3.5vw, 44px); font-family: var(--font-serif); color: var(--ink); margin: 0 0 4px; line-height: 1; letter-spacing: -0.01em; }
.about__stat-label { color: var(--ink-muted); font-size: 12px; font-family: var(--font-sans); margin: 0; }

/* =================== PROCESS =================== */
.process { padding: 120px 0; background: var(--warm); position: relative; }
.process__head { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; margin-bottom: 72px; }
.process__title { font-size: clamp(40px, 5vw, 64px); color: var(--ink); line-height: 0.95; letter-spacing: -0.015em; margin: 0; }
.process__head-text { color: var(--ink-muted); font-family: var(--font-sans); font-size: 17px; line-height: 1.7; align-self: flex-end; max-width: 560px; margin: 0; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--warm-border); }
.process__step { padding: 40px 24px 36px; border-right: 1px solid var(--warm-border); position: relative; }
.process__step:last-child { border-right: none; }
.process__step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.process__step-num { font-size: 13px; font-family: var(--font-serif); color: var(--sage); font-style: italic; }
.process__step-dur { font-size: 11px; font-family: var(--font-sans); color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.process__step-title { font-size: 28px; color: var(--ink); margin: 0 0 12px; line-height: 1.1; }
.process__step-desc { color: var(--ink-muted); font-family: var(--font-sans); font-size: 14px; line-height: 1.65; margin: 0; }
.process__dot { position: absolute; top: 50px; right: -6px; width: 12px; height: 12px; border-radius: 999px; background: var(--warm); border: 1px solid var(--warm-border); }

/* =================== FAQ teaser =================== */
.faq { padding: 120px 0; background: var(--warm); position: relative; }
.faq__wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1fr; gap: 64px; align-items: flex-start; }
.faq__intro { position: sticky; top: 96px; }
.faq__title { font-size: clamp(36px, 4vw, 52px); color: var(--ink); line-height: 1.0; letter-spacing: -0.015em; margin: 0 0 24px; }
.faq__text { color: var(--ink-muted); font-family: var(--font-sans); font-size: 16px; line-height: 1.6; margin: 0 0 24px; }
.faq__link { display: inline-flex; align-items: center; gap: 8px; color: var(--sage); font-family: var(--font-sans); font-size: 14px; font-weight: 600; text-decoration: none; }
.faq__list { border-top: 1px solid var(--warm-border); }
.faq-item { border-bottom: 1px solid var(--warm-border); }
.faq-item__q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; cursor: pointer; font-family: var(--font-sans); color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item.is-open .faq-item__q { padding-bottom: 14px; }
.faq-item__question { font-family: var(--font-serif); font-size: 22px; color: var(--ink); line-height: 1.3; }
.faq-item__toggle { flex-shrink: 0; width: 32px; height: 32px; border-radius: 999px; background: transparent; border: 1px solid hsl(152 28% 38% / 0.3); color: var(--sage); display: flex; align-items: center; justify-content: center; transition: all 200ms var(--ease-out); font-size: 18px; line-height: 1; font-weight: 300; }
.faq-item__toggle::before { content: "+"; }
.faq-item.is-open .faq-item__toggle { background: var(--sage); border-color: var(--sage); color: var(--warm); }
.faq-item.is-open .faq-item__toggle::before { content: "\2212"; }
.faq-item__a { display: none; }
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a p { margin: 0 0 22px; font-family: var(--font-sans); font-size: 15px; color: var(--ink-muted); line-height: 1.7; max-width: 600px; }

/* =================== CONTACT =================== */
.contact { padding: 120px 0; background: var(--sage-dark); color: var(--warm); position: relative; overflow: hidden; }
.contact__backdrop { position: absolute; bottom: -120px; left: -80px; font-family: var(--font-serif); font-size: 480px; color: hsl(40 33% 96% / 0.04); line-height: 0.8; font-style: italic; pointer-events: none; user-select: none; }
.contact__container { position: relative; }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: flex-start; }
.contact__title { font-size: clamp(48px, 6vw, 80px); font-family: var(--font-serif); line-height: 0.95; letter-spacing: -0.015em; margin: 0 0 28px; }
.contact__lead { color: hsl(40 33% 96% / 0.78); font-family: var(--font-sans); line-height: 1.7; margin: 0 0 40px; font-size: 17px; max-width: 460px; }
.contact__items { display: flex; flex-direction: column; gap: 4px; padding-top: 24px; border-top: 1px solid hsl(40 33% 96% / 0.15); }
.contact-item__link { text-decoration: none; color: inherit; display: block; }
.contact-item__link:hover .arrow { transform: translateX(4px); }
.contact-item { display: flex; align-items: center; gap: 20px; padding: 20px 0; border-bottom: 1px solid hsl(40 33% 96% / 0.1); }
.contact-item__icon { width: 44px; height: 44px; background: hsl(152 28% 38% / 0.3); border-radius: 999px; display: flex; align-items: center; justify-content: center; color: var(--warm); flex-shrink: 0; transition: all 220ms ease; }
.contact-item__body { flex: 1; }
.contact-item__label { font-size: 11px; color: hsl(40 33% 96% / 0.5); font-family: var(--font-sans); letter-spacing: 0.2em; text-transform: uppercase; margin: 0 0 4px; }
.contact-item__value { font-family: var(--font-serif); font-size: 22px; color: var(--warm); margin: 0; }
.contact-item__arrow { color: hsl(40 33% 96% / 0.5); display: inline-flex; }

.contact-form { background: hsl(152 30% 22% / 0.6); backdrop-filter: blur(8px); border: 1px solid hsl(40 33% 96% / 0.12); border-radius: 16px; padding: 36px; display: flex; flex-direction: column; gap: 18px; }
.contact-form__head { margin-bottom: 4px; }
.contact-form__eyebrow { font-family: var(--font-sans); font-size: 11px; color: hsl(40 33% 96% / 0.5); letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 6px; }
.contact-form__title { font-family: var(--font-serif); font-size: 26px; color: var(--warm); margin: 0; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form__note { font-family: var(--font-sans); font-size: 11px; color: hsl(40 33% 96% / 0.45); margin: 0; text-align: center; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-banner { display: flex; align-items: center; gap: 10px; padding: 14px 16px; border-radius: 12px; font-family: var(--font-sans); font-size: 14px; }
.form-banner--ok { background: hsl(152 28% 38% / 0.35); color: var(--warm); border: 1px solid hsl(152 20% 92% / 0.3); }
.form-banner--err { background: hsl(0 60% 50% / 0.18); color: var(--warm); border: 1px solid hsl(0 70% 60% / 0.4); }

/* =================== PAGE HERO =================== */
.page-hero { background: var(--sage-dark); color: var(--warm); padding: 112px 0 80px; }
.page-hero__inner { max-width: 896px; margin: 0 auto; padding: 0 24px; }
.page-hero__eyebrow { color: hsl(152 20% 92% / 0.7); font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.3em; text-transform: uppercase; margin: 0 0 12px; }
.page-hero__title { font-size: clamp(36px, 6vw, 64px); margin: 0 0 20px; line-height: 1.1; }
.page-hero__desc { color: hsl(40 33% 96% / 0.75); font-family: var(--font-sans); font-size: 18px; line-height: 1.6; max-width: 640px; margin: 0; }

/* =================== SERVICE DETAIL =================== */
.service-detail { background: var(--warm); }
.service-grid { max-width: var(--container-max); margin: 0 auto; padding: 80px 24px 48px; display: grid; grid-template-columns: 1fr 0.85fr; gap: 48px; align-items: flex-start; }
.service-detail .eyebrow { font-size: 14px; letter-spacing: 0.3em; margin-bottom: 12px; }
.service-detail__h2 { font-size: clamp(28px, 4vw, 48px); color: var(--ink); margin: 0 0 24px; line-height: 1.15; }
.service-detail__highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.highlight { display: flex; gap: 12px; background: var(--warm-card); padding: 16px; border-radius: 12px; color: var(--ink); }
.highlight__icon { color: var(--sage); margin-top: 2px; flex-shrink: 0; }
.highlight__text { font-family: var(--font-sans); font-size: 14px; line-height: 1.5; }
.service-detail__steps { background: var(--sage-light); padding: 32px; border-radius: 12px; }
.service-detail__steps-title { font-size: 24px; margin: 0 0 20px; color: var(--ink); }
.service-detail__steps-list { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 16px; }
.step__num { font-family: var(--font-serif); font-size: 30px; color: hsl(152 28% 38% / 0.4); line-height: 1; }
.step__text { font-family: var(--font-sans); color: var(--ink-muted); line-height: 1.6; padding-top: 4px; font-size: 14px; margin: 0; }
.service-detail__cta { max-width: var(--container-max); margin: 0 auto; padding: 0 24px 80px; }

/* =================== FAQ PAGE =================== */
.faq-page { padding: 80px 0; background: var(--warm); }
.faq-page__wrap { max-width: 896px; margin: 0 auto; padding: 0 24px; display: flex; flex-direction: column; gap: 16px; }
.faq-card { background: var(--warm-card); padding: 24px; border-radius: 12px; color: var(--ink); display: flex; gap: 16px; }
.faq-card__icon { color: var(--sage); margin-top: 4px; flex-shrink: 0; }
.faq-card__q { font-size: 20px; margin: 0 0 8px; }
.faq-card__a { font-family: var(--font-sans); color: var(--ink-muted); line-height: 1.7; font-size: 15px; margin: 0; }

/* =================== FOOTER =================== */
.footer { background: var(--ink); color: hsl(40 33% 96% / 0.5); padding: 32px 0; }
.footer__row { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__copy { font-family: var(--font-sans); font-size: 14px; margin: 0; }
.footer__links { display: flex; flex-wrap: wrap; gap: 24px; }
.footer-link { font-family: var(--font-sans); font-size: 14px; color: hsl(40 33% 96% / 0.5); text-decoration: none; transition: color 200ms var(--ease-out); }
.footer-link:hover { color: var(--warm); }

/* =================== 404 =================== */
.notfound { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--warm); padding: 24px; }
.notfound__inner { text-align: center; }
.notfound__code { font-family: var(--font-serif); font-size: 96px; color: var(--sage); margin: 0 0 16px; }
.notfound__text { font-family: var(--font-sans); color: var(--ink-muted); margin: 0 0 24px; font-size: 16px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 768px) {
  .navbar__links { display: none !important; }
  .navbar__toggle { display: block !important; }
  .services-grid-v2 { grid-template-columns: 1fr !important; }
  .about-grid, .contact-grid, .service-grid, .faq-grid, .hero-main, .process__head { grid-template-columns: 1fr !important; gap: 32px !important; }
  .process-list { grid-template-columns: repeat(2, 1fr) !important; }
  .hero-tiles { grid-template-columns: repeat(3, 1fr) !important; }
  .hero-tile-sub { display: none; }
  .hero__watermark { display: none; }
  .faq__intro { position: static; }
  .about__media-inner { margin-bottom: 48px; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .process-list { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none; opacity: 1; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
