/* ==========================================================================
   Crystal Tee Square Ltd. — City of David Estate
   Design system + all page styles
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --brand: #3A1F5C;        /* deep royal purple */
  --brand-deep: #24123D;   /* darker purple for pricing band */
  --brand-soft: #F1ECF7;   /* tinted surface */
  --accent: #C9A24A;       /* gold */
  --accent-warm: #E0BE6B;
  --surface: #FAF7F0;      /* light cream */
  --white: #FFFFFF;
  --text: #22222A;         /* dark gray body text */
  --text-soft: #5A5A66;
  --line: rgba(58, 31, 92, 0.14);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max: 1240px;
  --radius: 4px;
  --shadow-sm: 0 2px 8px rgba(36, 18, 61, 0.06);
  --shadow-md: 0 12px 40px rgba(36, 18, 61, 0.10);
  --shadow-lg: 0 30px 80px rgba(36, 18, 61, 0.18);

  --ease: cubic-bezier(0.2, 0, 0, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

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

/* ---------- Utilities ---------- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}
.serif { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
.italic { font-style: italic; font-weight: 500; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.015em; line-height: 1.05; color: var(--brand); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: 1.35rem; font-weight: 700; font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); }
p { color: var(--text-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: var(--line); color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }
.btn-dark { background: var(--brand); color: var(--white); }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }
.btn-gold-outline { border-color: var(--accent); color: var(--accent); }
.btn-gold-outline:hover { background: var(--accent); color: var(--brand); }

/* ---------- Loader ---------- */
.page-loader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--brand);
  display: grid; place-items: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.page-loader.is-done { opacity: 0; visibility: hidden; }
.page-loader__mark {
  width: 42px; height: 42px;
  border: 2px solid rgba(255,255,255,0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 240, 0.88);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--brand);
  display: flex; align-items: center; gap: 10px;
}
.nav__brand-mark {
  width: 28px; height: 28px;
  background: var(--brand);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  border-radius: 3px;
}
.nav__links {
  display: flex; gap: 34px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.nav__links a { color: var(--text); transition: color .2s; position: relative; padding: 4px 0; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--accent);
  transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--brand); }
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--brand); }

.nav__cta {
  padding: 12px 22px;
  background: var(--brand);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav__cta:hover { background: var(--accent); transform: translateY(-1px); }

.nav__toggle {
  display: none;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  color: var(--brand);
}
.nav__toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 200;
  background: var(--brand);
  color: var(--white);
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
  padding: 24px;
}
.drawer.is-open { transform: translateX(0); }
.drawer__top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.drawer__close { color: var(--white); width: 40px; height: 40px; }
.drawer__links { display: flex; flex-direction: column; gap: 24px; font-family: var(--font-display); font-size: 2rem; }
.drawer__links a { color: var(--white); }
.drawer__links a:hover { color: var(--accent); }
.drawer__cta { margin-top: auto; padding: 18px; background: var(--accent); color: var(--brand); text-align: center; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; border-radius: var(--radius); font-size: 12px; }

/* ---------- Hero ---------- */
.hero { position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 74px);
  align-items: center;
}
.hero__copy { padding: 80px 72px; max-width: 640px; }
.hero__title {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--brand);
}
.hero__title .accent-italic { display: block; font-style: italic; font-weight: 500; color: var(--brand); }
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex; gap: 40px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__meta-item { }
.hero__meta-num { font-family: var(--font-display); font-size: 2rem; color: var(--brand); font-weight: 600; }
.hero__meta-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-soft); margin-top: 2px; }

.hero__image {
  position: relative;
  height: 100%;
  min-height: 480px;
  background: var(--brand-soft);
  overflow: hidden;
}
.hero__image img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute;
  bottom: 32px; left: 32px;
  background: var(--surface);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--accent);
}
.hero__badge-eyebrow { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 700; }
.hero__badge-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--brand); margin-top: 4px; }

/* Small hero (interior pages) */
.pagehero {
  padding: 96px 0 64px;
  border-bottom: 1px solid var(--line);
}
.pagehero__title { font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 900px; }
.pagehero__title .italic { display: inline-block; font-weight: 500; }
.pagehero__sub { margin-top: 20px; max-width: 620px; font-size: 1.05rem; }

/* ---------- Highlights ---------- */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 40px;
}
.highlight {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  transition: border-color .3s var(--ease);
}
.highlight:hover { border-top-color: var(--accent); }
.highlight__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}
.highlight h3 { margin-bottom: 12px; }
.highlight p { font-size: 0.95rem; line-height: 1.7; }

/* ---------- Pricing ---------- */
.pricing {
  background: var(--brand-deep);
  color: var(--surface);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(201,162,74,0.18), transparent 55%),
              radial-gradient(circle at 80% 80%, rgba(58,31,92,0.6), transparent 55%);
  pointer-events: none;
}
.pricing .container { position: relative; }
.pricing__head { text-align: center; margin-bottom: 64px; }
.pricing__head h2 { color: var(--surface); }
.pricing__head p { color: rgba(250,247,240,0.7); margin-top: 12px; }
.pricing__head .rule { width: 60px; height: 1px; background: var(--accent); margin: 24px auto 0; }

.pricing__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 900px; margin: 0 auto; }
.plan {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 48px 40px;
  transition: all .3s var(--ease);
  position: relative;
}
.plan:hover { border-color: var(--accent); transform: translateY(-4px); }
.plan__ribbon {
  position: absolute; top: 0; right: 24px;
  background: var(--accent); color: var(--brand);
  padding: 6px 14px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
}
.plan__label { color: var(--accent); text-transform: uppercase; font-size: 11px; letter-spacing: 0.22em; font-weight: 700; }
.plan__price { font-family: var(--font-display); font-size: 3.4rem; margin: 18px 0 4px; color: var(--surface); font-weight: 600; }
.plan__sub { color: rgba(250,247,240,0.7); font-size: 0.95rem; margin-bottom: 32px; }
.plan__features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.plan__features li { font-size: 0.92rem; color: rgba(250,247,240,0.85); display: flex; gap: 12px; align-items: flex-start; }
.plan__features li::before { content: "✦"; color: var(--accent); font-size: 0.8rem; margin-top: 3px; }
.plan .btn { width: 100%; }

/* ---------- Why Choose ---------- */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.why-card__icon {
  width: 52px; height: 52px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid; place-items: center;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.why-card__icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1rem; margin-bottom: 10px; }
.why-card p { font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--tall { grid-row: span 2; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--brand);
  color: var(--surface);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--surface); font-size: clamp(2.2rem, 4vw, 3.6rem); max-width: 800px; margin: 0 auto 20px; }
.cta-band p { color: rgba(250,247,240,0.7); max-width: 520px; margin: 0 auto 36px; }
.cta-band__ctas { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- About: Values grid ---------- */
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}
.value {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all .3s var(--ease);
}
.value:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.value__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}
.value h3 { font-family: var(--font-display); text-transform: none; letter-spacing: -0.01em; font-size: 1.5rem; font-weight: 600; color: var(--brand); margin-bottom: 12px; }
.value p { font-size: 0.95rem; }

/* Split image + text */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split__media { position: relative; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split__media::after {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  border: 1px solid var(--accent); z-index: -1;
}
.split__body h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.split__body p { margin-bottom: 16px; }

/* Timeline (About) */
.timeline { position: relative; padding-left: 48px; }
.timeline::before {
  content: ""; position: absolute; left: 15px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item::before {
  content: ""; position: absolute; left: -40px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px var(--surface), 0 0 0 7px var(--accent);
}
.timeline__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 700; margin-bottom: 6px; }
.timeline__title { font-family: var(--font-display); font-size: 1.5rem; color: var(--brand); margin-bottom: 8px; font-weight: 600; }
.timeline__text { font-size: 0.95rem; }

/* ---------- How It Works ---------- */
.hiw__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.hiw__sticky {
  position: sticky; top: 120px; align-self: start;
}
.hiw__sticky h2 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); line-height: 1.05; }
.hiw__sticky p { margin-top: 20px; max-width: 320px; }

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}
.step + .step::before {
  content: "";
  position: absolute;
  top: -20px; left: 23px;
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
}
.step__num {
  width: 48px; height: 48px;
  border: 1px solid var(--brand);
  color: var(--brand);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  background: var(--surface);
  transition: all .3s var(--ease);
}
.step:hover .step__num { background: var(--brand); color: var(--accent); transform: scale(1.05); }
.step__title { font-family: var(--font-sans); text-transform: uppercase; letter-spacing: 0.08em; font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step__text { font-size: 0.95rem; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; text-align: left;
  padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--brand);
  font-weight: 600;
}
.faq__q-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--accent);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq__item[aria-expanded="true"] .faq__q-icon { transform: rotate(45deg); background: var(--accent); color: var(--white); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
  color: var(--text-soft);
  font-size: 0.98rem;
}
.faq__a-inner { padding: 0 0 24px; max-width: 700px; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact__info h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 24px; }
.contact__info p { max-width: 400px; margin-bottom: 40px; }
.contact__list { display: flex; flex-direction: column; gap: 24px; }
.contact__item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.contact__item:last-child { border: 0; }
.contact__icon {
  width: 44px; height: 44px;
  color: var(--accent);
  background: var(--brand-soft);
  border-radius: 50%;
  display: grid; place-items: center;
}
.contact__icon svg { width: 18px; height: 18px; }
.contact__label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-soft); font-weight: 600; margin-bottom: 4px; }
.contact__value { color: var(--text); font-weight: 500; line-height: 1.5; }
.contact__value a:hover { color: var(--accent); }

.form { display: flex; flex-direction: column; gap: 22px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form label {
  display: block;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--text-soft); font-weight: 600;
  margin-bottom: 8px;
}
.form input, .form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 1rem;
  color: var(--text);
  transition: border-color .25s;
}
.form input:focus, .form textarea:focus { outline: none; border-bottom-color: var(--accent); }
.form textarea { resize: vertical; min-height: 100px; }
.form__submit { align-self: flex-start; margin-top: 8px; }
.form__success {
  display: none;
  padding: 20px 24px;
  background: var(--brand-soft);
  border-left: 3px solid var(--accent);
  color: var(--brand);
  font-weight: 500;
  border-radius: var(--radius);
}
.form__success.is-visible { display: block; animation: fadeUp .5s var(--ease); }

.map {
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  aspect-ratio: 16 / 6;
}
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--brand-deep);
  color: rgba(250,247,240,0.85);
  padding: 80px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--surface); margin-bottom: 16px; }
.footer p { color: rgba(250,247,240,0.65); font-size: 0.92rem; line-height: 1.7; }
.footer h4 { color: var(--accent); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-family: var(--font-sans); margin-bottom: 20px; }
.footer ul { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer ul a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--surface);
  transition: all .25s;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: var(--brand); }
.footer__social svg { width: 16px; height: 16px; }
.footer__bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  flex-wrap: wrap;
  font-size: 11px;
  color: rgba(250,247,240,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer__bottom a:hover { color: var(--accent); }
.footer__legal { display: flex; gap: 24px; }

/* ---------- Scroll to top ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  background: var(--brand);
  color: var(--accent);
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: all .3s var(--ease);
  z-index: 50;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); color: var(--white); }
.to-top svg { width: 18px; height: 18px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Section heads ---------- */
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 56px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.section-head h2 { max-width: 640px; }
.section-head__meta { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); font-weight: 700; white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; min-height: auto; }
  .hero__copy { padding: 64px 32px; }
  .hero__image { min-height: 380px; height: 60vh; }
  .highlights__grid { grid-template-columns: repeat(2, 1fr); gap: 40px 32px; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split__media::after { display: none; }
  .hiw__grid { grid-template-columns: 1fr; gap: 48px; }
  .hiw__sticky { position: static; }
  .contact__grid { grid-template-columns: 1fr; gap: 56px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .hero__copy { padding: 48px 20px; }
  .hero__title { font-size: clamp(2.4rem, 9vw, 3.6rem); }
  .hero__meta { gap: 24px; margin-top: 40px; padding-top: 24px; }
  .hero__meta-num { font-size: 1.6rem; }
  .highlights__grid { grid-template-columns: 1fr; }
  .pricing { padding: 80px 0; }
  .pricing__grid { grid-template-columns: 1fr; }
  .plan { padding: 36px 28px; }
  .why__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .section-head { flex-direction: column; align-items: start; gap: 12px; }
  .hero__badge { left: 20px; right: 20px; bottom: 20px; }
  .to-top { right: 16px; bottom: 16px; }
  .cta-band { padding: 72px 0; }
}
