/* ============================================================
   PLATINUM DRYWALL & CONSTRUCTION — 2026 Luxury Landing Page
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg: #0a0a0c;
  --bg-2: #0f0f13;
  --surface: #14141a;
  --surface-2: #1a1a21;
  --hairline: rgba(255, 255, 255, 0.08);
  --hairline-strong: rgba(255, 255, 255, 0.16);
  --text: #ece9e1;
  --muted: #a3a097;
  --gold: #d4bd8b;
  --gold-2: #b18a4f;
  --gold-3: #e9d7ae;
  --grad-gold: linear-gradient(120deg, #ecd9ae 0%, #cdab66 48%, #a8823f 100%);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --radius-sm: 12px;
  --font-serif: "Fraunces", Georgia, serif;
  --font-sans: "Manrope", system-ui, -apple-system, sans-serif;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: rgba(212, 189, 139, 0.28); }

/* ---------- Utilities ---------- */
.container { width: min(1200px, 92vw); margin-inline: auto; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 18px;
  background: var(--gold);
  color: #0a0a0c;
  font-weight: 700;
  border-radius: 8px;
  transition: top 0.25s var(--ease);
}
.skip-link:focus { top: 16px; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--grad-gold);
}
.eyebrow--center::after { content: ""; width: 34px; height: 1px; background: var(--grad-gold); }

.grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.section { padding: clamp(84px, 10vw, 132px) 0; position: relative; }

.section__head { max-width: 640px; margin-bottom: clamp(44px, 6vw, 72px); }
.section__head--center { text-align: center; margin-inline: auto; }
.section__head--center .eyebrow::before { display: none; }
.section__head--center .eyebrow { justify-content: center; }

.section__title {
  font-family: var(--font-serif);
  font-weight: 420;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 18px;
}

.section__lede {
  color: var(--muted);
  margin-top: 20px;
  font-size: 1.08rem;
  max-width: 56ch;
}
.section__head--center .section__lede { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn--lg { padding: 18px 34px; font-size: 1.02rem; }

.btn--gold {
  background: var(--grad-gold);
  color: #17130a;
  box-shadow: 0 14px 34px -12px rgba(205, 171, 102, 0.55);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -14px rgba(205, 171, 102, 0.75);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--hairline-strong);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold-3);
}

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

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--hairline);
}

.site-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__mark { color: var(--gold); display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.brand__tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav > a:not(.btn) {
  position: relative;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.85;
  transition: opacity 0.25s, color 0.25s;
}
.site-nav > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.site-nav > a:not(.btn):hover { opacity: 1; color: var(--gold-3); }
.site-nav > a:not(.btn):hover::after { transform: scaleX(1); }
.site-nav__cta { padding: 12px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 1100;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 40px) 0 100px;
}
.hero__bg, .hero__bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__bg img { object-fit: cover; object-position: center 62%; transform: scale(1.08); animation: heroZoom 18s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 12, 0.72) 0%, rgba(10, 10, 12, 0.5) 42%, rgba(10, 10, 12, 0.92) 100%),
    radial-gradient(120% 90% at 22% 40%, rgba(10, 10, 12, 0.35) 0%, rgba(10, 10, 12, 0.82) 100%);
}

.hero__inner { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow { animation: fadeUp 0.9s 0.15s var(--ease) both; }
.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.99;
  letter-spacing: -0.03em;
  margin: 26px 0 26px;
  animation: fadeUp 0.9s 0.3s var(--ease) both;
}
.hero__lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 52ch;
  animation: fadeUp 0.9s 0.45s var(--ease) both;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; animation: fadeUp 0.9s 0.6s var(--ease) both; }
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 46px;
  animation: fadeUp 0.9s 0.75s var(--ease) both;
}
.hero__badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.hero__badges svg { color: var(--gold); flex: none; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.hero__scroll:hover { color: var(--gold-3); }
.hero__scroll svg { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ---------- Marquee ---------- */
.marquee {
  border-block: 1px solid var(--hairline);
  background: var(--bg-2);
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.7rem; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(212, 189, 139, 0.4), transparent 42%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--hairline-strong);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }

/* ---------- Services ---------- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.services__card { padding: 38px 32px 32px; overflow: hidden; }
.services__card h3 {
  font-family: var(--font-serif);
  font-weight: 520;
  font-size: 1.42rem;
  letter-spacing: -0.01em;
  margin: 26px 0 10px;
}
.services__card p { color: var(--muted); font-size: 0.96rem; }

.card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--gold);
  background: rgba(212, 189, 139, 0.08);
  border: 1px solid rgba(212, 189, 139, 0.22);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.services__card:hover .card__icon { transform: translateY(-4px) rotate(-3deg); background: rgba(212, 189, 139, 0.16); }

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
}
.card__link span { transition: transform 0.3s var(--ease); }
.card__link:hover span { transform: translateX(5px); }

.services__card--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 34px 40px;
}
.services__card--wide .card__icon { flex: none; }
.services__card--wide h3 { margin: 0 0 6px; }
.services__card--wide p { max-width: 62ch; }
.services__card--wide .card__link { margin: 0 0 0 auto; }

/* ---------- Why Us ---------- */
.why { background: var(--bg-2); border-block: 1px solid var(--hairline); }
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 5vw, 60px);
}
.why__item {
  padding: 36px 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), background 0.4s var(--ease);
}
.why__item:hover {
  border-color: rgba(212, 189, 139, 0.4);
  background: rgba(212, 189, 139, 0.04);
  transform: translateY(-4px);
}
.why__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  border: 1px solid var(--hairline-strong);
  margin-bottom: 22px;
}
.why__item h3 { font-family: var(--font-serif); font-weight: 520; font-size: 1.3rem; margin-bottom: 8px; }
.why__item p { color: var(--muted); font-size: 0.95rem; }

/* ---------- About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; padding-bottom: 60px; }
.about__img--main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--hairline); box-shadow: var(--shadow); }
.about__img--main img { aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.2s var(--ease); }
.about__img--main:hover img { transform: scale(1.045); }
.about__img--float {
  position: absolute;
  right: -14px;
  bottom: 0;
  width: 46%;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow);
}
.about__img--float img { aspect-ratio: 3 / 4; object-fit: cover; }

.about__content .section__title { margin-bottom: 22px; }
.about__text { color: var(--muted); margin-bottom: 18px; max-width: 56ch; }

.about__quote {
  border-left: 2px solid var(--gold);
  padding: 6px 0 6px 24px;
  margin: 30px 0 34px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--gold-3);
}
.about__quote cite { display: block; margin-top: 10px; font-family: var(--font-sans); font-style: normal; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

/* ---------- Process ---------- */
.process { background: var(--bg-2); border-block: 1px solid var(--hairline); }
.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: none;
  position: relative;
}
.process__step {
  position: relative;
  padding: 30px 26px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.015);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.process__step:hover { border-color: rgba(212, 189, 139, 0.4); transform: translateY(-4px); }
.process__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 300;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.process__step h3 { font-family: var(--font-serif); font-weight: 540; font-size: 1.22rem; margin: 18px 0 8px; }
.process__step p { color: var(--muted); font-size: 0.94rem; }

/* ---------- Gallery ---------- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__item {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  border: 1px solid var(--hairline);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 20px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10, 10, 12, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: none; }

.section__action { align-self: flex-start; margin-top: clamp(36px, 5vw, 52px); }

/* ---------- Testimonials ---------- */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: clamp(40px, 5vw, 60px);
}
.testimonial {
  padding: 38px 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.testimonial:hover { border-color: rgba(212, 189, 139, 0.4); transform: translateY(-4px); }
.testimonial__stars { display: flex; gap: 4px; color: var(--gold); }
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}
.testimonial footer {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
}

/* ---------- Service Area ---------- */
.serve {
  background:
    radial-gradient(80% 120% at 80% 10%, rgba(212, 189, 139, 0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--hairline);
}
.serve__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.serve__meta { display: grid; gap: 20px; }
.serve__meta li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 26px 30px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}
.serve__label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.serve__meta strong { font-family: var(--font-serif); font-weight: 520; font-size: 1.22rem; }
.serve__note { color: var(--muted); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(44px, 6vw, 90px);
  align-items: start;
}
.contact__methods { display: grid; gap: 16px; margin-top: 36px; }
.contact__methods a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease), background 0.35s var(--ease);
}
.contact__methods a:hover {
  border-color: rgba(212, 189, 139, 0.45);
  transform: translateX(6px);
  background: rgba(212, 189, 139, 0.04);
}
.contact__icon {
  width: 48px;
  height: 48px;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  border: 1px solid rgba(212, 189, 139, 0.25);
  background: rgba(212, 189, 139, 0.06);
}
.contact__methods a span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.contact__methods small { color: var(--muted); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.contact__methods strong { font-size: 1.02rem; font-weight: 700; margin-top: 3px; word-break: break-word; }

/* ---------- Form ---------- */
.form { padding: clamp(30px, 4vw, 46px); }
.form__title { font-family: var(--font-serif); font-weight: 520; font-size: 1.7rem; }
.form__sub { color: var(--muted); font-size: 0.94rem; margin: 8px 0 28px; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field > span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(163, 160, 151, 0.55); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 189, 139, 0.04);
  box-shadow: 0 0 0 3px rgba(212, 189, 139, 0.14);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23d4bd8b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.field option { background: var(--surface); color: var(--text); }
.field input.is-invalid, .field textarea.is-invalid {
  border-color: rgba(224, 122, 95, 0.7);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.12);
}

.form__note {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(212, 189, 139, 0.4);
  background: rgba(212, 189, 139, 0.08);
  color: var(--gold-3);
  font-size: 0.92rem;
  font-weight: 600;
}
.form__fallback {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}
.form__fallback a { color: var(--gold); font-weight: 700; }
.form__fallback a:hover { text-decoration: underline; }

/* ---------- Sticky mobile CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1050;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--hairline-strong);
}
.mobile-cta a {
  text-align: center;
  padding: 15px 8px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}
.mobile-cta a:not(:last-child) { border-right: 1px solid var(--hairline); }
.mobile-cta__primary { background: var(--grad-gold); color: #17130a !important; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--hairline); background: var(--bg-2); padding: clamp(56px, 7vw, 90px) 0 0; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: clamp(40px, 5vw, 64px);
}
.site-footer__brand p { color: var(--muted); font-size: 0.94rem; margin: 22px 0 24px; max-width: 34ch; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--hairline-strong);
  border-radius: 50%;
  color: var(--muted);
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease);
}
.site-footer__social a:hover { color: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col h4 {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.site-footer__col a { color: var(--muted); font-size: 0.94rem; transition: color 0.25s, transform 0.25s var(--ease); width: fit-content; }
.site-footer__col a:hover { color: var(--gold-3); transform: translateX(4px); }
.site-footer__hours { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--hairline);
  padding: 22px 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(6, 6, 8, 0.92);
  backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { max-width: min(1000px, 92vw); text-align: center; }
.lightbox__figure img {
  max-height: 78vh;
  width: auto;
  margin-inline: auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid var(--hairline-strong);
}
.lightbox__figure figcaption { margin-top: 18px; color: var(--muted); font-size: 0.94rem; letter-spacing: 0.04em; }
.lightbox__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  transition: border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.lightbox__close:hover { border-color: var(--gold); color: var(--gold); transform: rotate(90deg); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.lightbox__nav:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 189, 139, 0.08); }
.lightbox__nav--prev { left: 26px; }
.lightbox__nav--next { right: 26px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .about__inner, .serve__inner, .contact__inner { grid-template-columns: 1fr; }
  .about__media { max-width: 520px; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 1050;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    background: rgba(10, 10, 12, 0.97);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    padding: 40px;
  }
  .site-nav.is-open { transform: translateY(0); }
  .site-nav > a { font-size: 1.4rem !important; font-family: var(--font-serif); }
  .site-nav__cta { margin-top: 12px; font-family: var(--font-sans) !important; font-size: 1rem !important; }
}

@media (max-width: 640px) {
  .services__grid, .why__grid { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .services__card--wide { flex-direction: column; align-items: flex-start; gap: 18px; }
  .services__card--wide .card__link { margin-left: 0; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .site-footer__bottom { justify-content: center; text-align: center; }
  .hero__scroll { display: none; }

  .mobile-cta { display: grid; }
  body { padding-bottom: 54px; }
  .contact { padding-bottom: 30px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal { opacity: 1; transform: none; }
}
