/* =========================================================
   Kitchen Planning Haven — single page site
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --navy: #003766;
  --navy-deep: #002544;
  --navy-soft: #0b4a80;
  --gold: #c9a24a;
  --gold-light: #d8b364;
  --gold-soft: #e3c988;
  --gold-ink: #846413;   /* gold text on light backgrounds — AA contrast */
  --cream: #faf7f1;
  --cream-deep: #f1ece2;
  --ink: #1d2733;
  --ink-mid: #4a5665;
  --ink-soft: #6b7686;
  --line: #e2ddd3;
  --white: #ffffff;

  --shadow-sm: 0 1px 2px rgba(0, 38, 70, .06), 0 2px 8px rgba(0, 38, 70, .05);
  --shadow-md: 0 4px 14px rgba(0, 38, 70, .08), 0 12px 32px rgba(0, 38, 70, .07);
  --shadow-lg: 0 18px 50px rgba(0, 38, 70, .16);

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);
  --radius: 4px;
  --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration-thickness: 1px; text-underline-offset: 3px; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--navy);
  margin: 0 0 .5em;
  letter-spacing: -0.005em;
}

h1 { font-size: clamp(2.5rem, 6.2vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.15rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

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

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--white); }
.section--cream { background: var(--cream-deep); }

.section-head { max-width: 42rem; margin-bottom: clamp(2.25rem, 4vw, 3.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--ink-mid); font-size: 1.075rem; margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
.section-head--center .eyebrow::after {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--gold);
}
/* eyebrow sitting on a dark image or navy panel */
.eyebrow--light { color: var(--gold-soft); }
.eyebrow--light::before,
.eyebrow--light::after { background: var(--gold-soft); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -150%);
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1.25rem;
  z-index: 200;
  text-decoration: none;
}
.skip-link:focus { transform: translate(-50%, 0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .22s ease, color .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--gold); color: var(--navy-deep); }
.btn--primary:hover { background: #d8b364; box-shadow: var(--shadow-md); }

.btn--navy { background: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-soft); box-shadow: var(--shadow-md); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }

.btn--outline { background: transparent; color: var(--navy); border-color: rgba(0, 55, 102, .3); }
.btn--outline:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

.btn--block { width: 100%; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-h);
}

.brand { display: block; line-height: 0; flex-shrink: 0; }
.brand img { height: 46px; width: auto; transition: height .3s ease; }
.brand__light { display: block; }
.brand__dark { display: none; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav a {
  position: relative;
  color: var(--white);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding-block: .4rem;
  transition: color .22s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s ease;
}
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }
.nav a:hover { color: var(--gold-soft); }

.header__cta { margin-left: .5rem; padding: .78rem 1.45rem; }

/* scrolled state */
.header.is-stuck {
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(0, 38, 70, .07);
}
.header.is-stuck .brand img { height: 40px; }
.header.is-stuck .brand__light { display: none; }
.header.is-stuck .brand__dark { display: block; }
.header.is-stuck .nav a { color: var(--navy); }
.header.is-stuck .nav a:hover { color: var(--gold); }

/* mobile toggle */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-right: -10px; /* optically align the icon with the page gutter */
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
  transition: color .3s ease, background-color .25s ease;
}
.nav-toggle:hover { background: rgba(255, 255, 255, .12); }
.header.is-stuck .nav-toggle { color: var(--navy); }
.header.is-stuck .nav-toggle:hover { background: rgba(0, 55, 102, .07); }

.nav-toggle__icon {
  grid-area: 1 / 1;
  width: 26px;
  height: 26px;
  transition: opacity .2s ease, transform .3s ease;
}
.nav-toggle__close { opacity: 0; transform: rotate(-90deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__menu { opacity: 0; transform: rotate(90deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { opacity: 1; transform: rotate(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  isolation: isolate;
  padding-top: var(--header-h);
  padding-bottom: clamp(3rem, 7vw, 5rem);
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 20, 40, .72) 0%, rgba(0, 25, 48, .5) 35%, rgba(0, 20, 40, .78) 100%),
    linear-gradient(95deg, rgba(0, 37, 68, .62) 0%, rgba(0, 37, 68, .1) 70%);
}
.hero__content { max-width: 47rem; }
.hero h1 { color: var(--white); text-shadow: 0 2px 30px rgba(0, 15, 30, .35); }
.hero h1 em {
  font-style: normal;
  color: var(--gold-soft);
  display: block;
}
.hero__lead {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  max-width: 34rem;
  margin-top: 1.5rem;
  margin-bottom: 2.4rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, auto));
  justify-content: start;
  gap: 1.75rem clamp(1.25rem, 2.6vw, 2.5rem);
  margin-top: clamp(2.75rem, 6vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.hero__fact strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  color: var(--gold-soft);
  line-height: 1.1;
}
.hero__fact span {
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
}

/* ---------- Why Haven ---------- */
.cards {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.9rem);
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-soft);
}
.card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 162, 74, .14);
  color: var(--navy);
  margin-bottom: 1.35rem;
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--ink-mid); margin-bottom: 0; }

/* ---------- Process ---------- */
.steps {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  counter-reset: step;
}
.step { position: relative; padding-top: 2.6rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.step::after {
  content: "";
  position: absolute;
  top: 1.1rem;
  left: 3.4rem;
  right: -1rem;
  height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.step:last-child::after { display: none; }
.step h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.step p { color: var(--ink-mid); font-size: .95rem; margin-bottom: 0; }

/* ---------- Pricing ---------- */
.plans {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  align-items: start;
}
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.9rem, 3.4vw, 2.85rem);
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
}
.plan--featured h3,
.plan--featured .plan__price,
.plan--featured .plan__name { color: var(--white); }
.plan--featured .plan__intro,
.plan--featured .plan__list li { color: rgba(255, 255, 255, .92); }
.plan--featured .plan__list { border-top-color: rgba(255, 255, 255, .2); }
.plan--featured .plan__list li::before { color: var(--gold-soft); }

.plan__badge {
  position: absolute;
  top: 0;
  right: clamp(1.9rem, 3.4vw, 2.85rem);
  transform: translateY(-50%);
  background: var(--gold);
  color: var(--navy-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .45rem 1rem;
  border-radius: 100px;
}
.plan__name {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: .9rem;
}
.plan__price {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1;
  color: var(--navy);
  margin-bottom: .2rem;
}
.plan__price small {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: .5rem;
}
.plan--featured .plan__price small { color: rgba(255, 255, 255, .7); }
.plan h3 { margin: 1.1rem 0 .5rem; }
.plan__intro { color: var(--ink-mid); font-size: .96rem; }
.plan__list {
  list-style: none;
  margin: 1.6rem 0 2rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .85rem;
}
.plan__list li {
  position: relative;
  padding-left: 1.85rem;
  color: var(--ink-mid);
  font-size: .96rem;
  line-height: 1.6;
}
.plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 1.1rem;
  height: .6rem;
  border-left: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(-45deg);
  color: var(--gold);
}
.plan .btn { margin-top: auto; }
.plan__note {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--ink-soft);
  text-align: center;
}
.plan--featured .plan__note { color: rgba(255, 255, 255, .6); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.75rem, 1.5vw, 1.15rem);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--navy);
  border: 0;
  padding: 0;
  cursor: zoom-in;
  aspect-ratio: 16 / 9;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2, .8, .3, 1), opacity .3s ease;
}
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 25, 48, .55));
  opacity: 0;
  transition: opacity .35s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item:hover::after { opacity: 1; }
.gallery__zoom {
  position: absolute;
  right: .9rem;
  bottom: .9rem;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--navy);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
}
.gallery__item:hover .gallery__zoom,
.gallery__item:focus-visible .gallery__zoom { opacity: 1; transform: translateY(0); }
.gallery__zoom svg { width: 16px; height: 16px; }

.gallery-note {
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--ink-mid);
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 18, 36, .93);
  backdrop-filter: blur(4px);
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(100%, 1200px);
  max-height: 82vh;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1rem, 3vw, 2rem);
  display: flex;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .75);
  font-size: .8rem;
  letter-spacing: .12em;
}
.lightbox__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  transition: background-color .25s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .2); }
.lightbox__btn svg { width: 20px; height: 20px; }
.lightbox__prev { left: clamp(.5rem, 3vw, 2.5rem); }
.lightbox__next { right: clamp(.5rem, 3vw, 2.5rem); }
.lightbox__close {
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  transform: none;
  width: 46px;
  height: 46px;
}

/* ---------- Split (About / Measure) ---------- */
.split {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.split__media::before {
  content: "";
  position: absolute;
  inset: auto auto -18px -18px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.split__body p { color: var(--ink-mid); }

.about-quote {
  margin: 1.75rem 0 0;
  padding: 1.35rem 0 1.35rem 1.6rem;
  border-left: 2px solid var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  line-height: 1.45;
  color: var(--navy);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2.25rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.stat span {
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- Measure steps ---------- */
.measure-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: m;
  display: grid;
  gap: 1.35rem;
}
.measure-list li {
  position: relative;
  padding-left: 3.4rem;
}
.measure-list li::before {
  counter-increment: m;
  content: counter(m);
  position: absolute;
  left: 0;
  top: -2px;
  width: 2.3rem;
  height: 2.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-soft);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
}
.measure-list strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: .1rem;
}
.measure-list span { color: var(--ink-mid); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--navy);
  transition: color .22s ease;
}
.faq__q:hover { color: var(--gold); }
.faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background-color .25s ease, border-color .25s ease, transform .3s ease;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  inset: 50% 25%;
  height: 1px;
  background: var(--navy);
  transition: transform .3s ease, background-color .25s ease;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--navy); border-color: var(--navy); }
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--gold-soft); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p {
  color: var(--ink-mid);
  padding-bottom: 1.6rem;
  max-width: 44rem;
}

/* ---------- Contact ---------- */
.contact {
  background: var(--navy);
  color: rgba(255, 255, 255, .88);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/kitchen-modern.webp");
  background-size: cover;
  background-position: center;
  opacity: .1;
}
.contact > .wrap { position: relative; }
.contact > .wrap > .contact__grid > div:first-child h2 { color: var(--white); }
.contact .eyebrow { color: var(--gold-soft); }
.contact .eyebrow::before, .contact .eyebrow::after { background: var(--gold-soft); }

.contact__grid {
  display: grid;
  gap: clamp(2.25rem, 4.5vw, 4rem);
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
}

.contact__lead { font-size: 1.075rem; color: rgba(255, 255, 255, .82); }

.contact__list { list-style: none; margin: 2.25rem 0 0; padding: 0; display: grid; gap: 1.35rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__list svg { width: 20px; height: 20px; color: var(--gold-soft); flex-shrink: 0; margin-top: .3rem; }
.contact__list a { color: var(--white); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .3); }
.contact__list a:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }
.contact__list small {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
  margin-bottom: .1rem;
}

/* ---------- Form ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}
.form-card h3 { color: var(--navy); margin-bottom: .4rem; }
.form-card > p { color: var(--ink-mid); font-size: .95rem; margin-bottom: 1.75rem; }

.form-grid { display: grid; gap: 1.1rem 1.15rem; grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--navy);
}
.field .req { color: var(--gold-ink); margin-left: .15rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem .95rem;
  transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23003766' stroke-width='1.5' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  padding-right: 2.6rem;
}
.field input::placeholder,
.field textarea::placeholder { color: #a3adba; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 74, .18);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #c0392b; background: #fdf4f3; }
.field__error {
  display: none;
  font-size: .78rem;
  color: #c0392b;
}
.field.has-error .field__error { display: block; }

.consent {
  grid-column: 1 / -1;
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: .82rem;
  color: var(--ink-mid);
  line-height: 1.55;
}
.consent input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: .22rem;
  accent-color: var(--navy);
  flex-shrink: 0;
}
.consent.has-error { color: #c0392b; }

.form-privacy {
  grid-column: 1 / -1;
  font-size: .76rem;
  color: var(--ink-soft);
  margin: 0;
}

.form-status {
  grid-column: 1 / -1;
  display: none;
  padding: .9rem 1.1rem;
  border-radius: var(--radius);
  font-size: .9rem;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: #eef6ee; color: #1e6b32; border: 1px solid #c3e0c8; }
.form-status--err { background: #fdf4f3; color: #a93226; border: 1px solid #f0cdc8; }

.btn.is-loading { pointer-events: none; opacity: .75; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .65);
  padding-block: clamp(3rem, 6vw, 4.5rem) 0;
  font-size: .9rem;
}
.footer__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.footer__logo { height: 52px; width: auto; margin-bottom: 1.25rem; }
.footer h4 {
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 1.15rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a { color: rgba(255, 255, 255, .72); text-decoration: none; transition: color .22s ease; }
.footer a:hover { color: var(--gold-soft); }
.footer__social { display: flex; gap: .65rem; margin-top: 1.5rem; }
.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); transform: translateY(-2px); }
.footer__social svg { width: 18px; height: 18px; }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal button {
  background: none;
  border: 0;
  padding: 0;
  color: rgba(255, 255, 255, .72);
  cursor: pointer;
  font-size: .8rem;
  transition: color .22s ease;
}
.footer__legal button:hover { color: var(--gold-soft); }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(0, 18, 36, .75);
  backdrop-filter: blur(3px);
}
.modal.is-open { display: grid; }
.modal__panel {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 44rem;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}
.modal__close:hover { background: var(--cream-deep); }
.modal__panel h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); padding-right: 3rem; }
.modal__panel h3 { font-size: 1.12rem; margin-top: 1.6rem; }
.modal__panel p, .modal__panel li { color: var(--ink-mid); font-size: .94rem; }
.modal__panel ul { padding-left: 1.2rem; display: grid; gap: .45rem; margin-bottom: 1.1rem; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .3, 1), transform .7s cubic-bezier(.2, .7, .3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

body.no-scroll { overflow: hidden; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: grid; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 1rem var(--gutter) 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, transform .28s ease, visibility .28s;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .nav a {
    color: var(--navy);
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .9rem;
  }
  .nav a::after { display: none; }
  .header__cta { margin: 1.4rem 0 0; width: 100%; }

  .header.is-stuck .nav a { color: var(--navy); }

  .hero { min-height: 92svh; }
  .hero__media img { object-position: center 45%; }

  .split--reverse .split__media { order: 0; }
  .split__media::before { display: none; }

  .step::after { display: none; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { justify-content: flex-start; }
}

@media (max-width: 600px) {
  body { font-size: .97rem; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; gap: .75rem; }
  .hero__actions .btn { width: 100%; }
  .hero__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 1.5rem; }
  .lightbox__btn { width: 42px; height: 42px; }
  .lightbox__prev { left: .35rem; }
  .lightbox__next { right: .35rem; }
  .stat-row { gap: 1.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .nav-toggle, .lightbox, .modal, .hero__actions, .footer__social { display: none !important; }
  body { background: #fff; }
}
