@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Overpass:wght@200;300;400;600&display=swap');

/* ── VARIABLES ── */
:root {
  --bg:       #080808;
  --bg-2:     #0d0d0d;
  --bg-3:     #131313;
  --bg-card:  #181818;
  --white:    #F2F0EC;
  --white-60: rgba(242,240,236,0.60);
  --white-35: rgba(242,240,236,0.35);
  --tan:      #C9A96E;
  --tan-lite: #DFC08F;
  --blue:     #8BBCCF;
  --border:   rgba(255,255,255,0.10);
  --border-2: rgba(255,255,255,0.06);
  --serif:    'Cormorant Garamond', Georgia, serif;
  --sans:     'Overpass', sans-serif;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --trans:    all 0.35s var(--ease);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 40px; }

/* ══════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════ */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.45s var(--ease), padding 0.35s var(--ease);
}

header.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border-2);
}

.logo-link {
  display: block;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
  background: transparent;
  padding: 0;
  display: block;
  filter: drop-shadow(0 1px 8px rgba(0,0,0,0.5));
}

nav ul {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font: 300 0.72rem/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,240,236,0.75);
  transition: color 0.3s;
}

nav a:hover, nav a.active { color: var(--tan); }

.nav-cta-link {
  border: 1px solid rgba(201,169,110,0.6) !important;
  color: var(--tan) !important;
  padding: 8px 22px;
  border-radius: 100px;
  transition: var(--trans) !important;
}
.nav-cta-link:hover {
  background: var(--tan);
  color: var(--bg) !important;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 768px) {
  header { padding: 20px 24px; }
  header.scrolled { padding: 14px 24px; }

  .hamburger { display: flex; }

  nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }
  nav.open { opacity: 1; pointer-events: all; }
  nav ul { flex-direction: column; gap: 32px; text-align: center; }
  nav a { font-size: 0.95rem; letter-spacing: 0.2em; }
  .nav-cta-link { padding: 12px 36px; }
  .logo-link img { height: 52px; }
}

/* ══════════════════════════════════════════
   HERO  —  VIDEO BACKGROUND
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.30) 0%,
    rgba(8,8,8,0.50) 60%,
    rgba(8,8,8,0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
}

.hero-logo {
  margin: 0 auto 40px;
}
.hero-logo img {
  width: clamp(200px, 35vw, 420px);
  height: auto;
  background: transparent;
  padding: 0;
  margin: 0 auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

.hero-eyebrow {
  font: 300 0.7rem/1 var(--sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 20px;
}

.hero h1 {
  font: 300 clamp(2.8rem, 6vw, 5.2rem)/1.1 var(--serif);
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.hero h1 em {
  font-style: italic;
  color: rgba(242,240,236,0.85);
}

.hero-sub {
  font: 300 1rem/1.85 var(--sans);
  color: var(--white-60);
  max-width: 520px;
  margin: 0 auto 40px;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--tan);
  margin: 0 auto 28px;
  border: none;
}

/* ── hero scroll cue ── */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  animation: scrollBounce 2s infinite;
}
.scroll-cue span {
  font: 300 0.65rem/1 var(--sans);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
}
.scroll-cue-arrow {
  width: 1px;
  height: 36px;
  background: var(--white);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%        { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-block;
  font: 300 0.75rem/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--trans);
}

.btn-light {
  background: var(--white);
  color: var(--bg);
  border-color: var(--white);
}
.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(242,240,236,0.45);
}
.btn-outline:hover {
  border-color: var(--white);
}

.btn-tan {
  background: var(--tan);
  color: var(--bg);
  border-color: var(--tan);
}
.btn-tan:hover {
  background: transparent;
  color: var(--tan);
}

.btn-tan-outline {
  background: transparent;
  color: var(--tan);
  border-color: var(--tan);
}
.btn-tan-outline:hover {
  background: var(--tan);
  color: var(--bg);
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }

.section-label {
  display: block;
  font: 300 0.68rem/1 var(--sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
}

.section-title {
  font: 300 clamp(2rem, 4vw, 3.2rem)/1.15 var(--serif);
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; }

.section-sub {
  font: 300 0.92rem/1.85 var(--sans);
  color: var(--white-60);
  max-width: 560px;
}

.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.rule {
  width: 48px;
  height: 1px;
  background: var(--tan);
  border: none;
  margin: 0;
}
.rule-center { margin: 0 auto; }

/* ══════════════════════════════════════════
   INTRO / STATEMENT SECTION
══════════════════════════════════════════ */
.intro {
  background: var(--bg);
  text-align: center;
}

.intro-text {
  font: 300 clamp(1.6rem, 3.5vw, 2.6rem)/1.35 var(--serif);
  color: var(--white);
  max-width: 800px;
  margin: 0 auto 28px;
  letter-spacing: 0.01em;
}

.intro-text em { font-style: italic; color: var(--tan); }

.intro-body {
  font: 300 0.95rem/1.9 var(--sans);
  color: var(--white-60);
  max-width: 560px;
  margin: 0 auto 36px;
}

/* ══════════════════════════════════════════
   HOW IT WORKS  —  3 STEPS
══════════════════════════════════════════ */
.steps { background: var(--bg-2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-2);
}

.step {
  background: var(--bg-2);
  padding: 52px 40px;
  text-align: center;
}

.step-num {
  font: 300 3.5rem/1 var(--serif);
  color: var(--tan);
  opacity: 0.4;
  margin-bottom: 20px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step h3 {
  font: 400 1.15rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.step p {
  font: 300 0.875rem/1.8 var(--sans);
  color: var(--white-60);
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .step { padding: 44px 32px; }
}

/* ══════════════════════════════════════════
   PULL QUOTE  /  TESTIMONIAL
══════════════════════════════════════════ */
.pullquote {
  background: var(--bg-3);
  text-align: center;
  padding: 100px 0;
}

.pullquote-mark {
  font: 300 6rem/1 var(--serif);
  color: var(--tan);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 28px;
  display: block;
}

.pullquote-text {
  font: 300 italic clamp(1.5rem, 3vw, 2.2rem)/1.45 var(--serif);
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 28px;
}

.pullquote-author {
  font: 300 0.72rem/1 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
}

/* ══════════════════════════════════════════
   FEATURES / WHY US
══════════════════════════════════════════ */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-2);
}

.feature {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.3s;
}
.feature:hover { background: var(--bg-3); }

.feature-num {
  font: 300 0.68rem/1 var(--sans);
  letter-spacing: 0.2em;
  color: var(--tan);
  margin-bottom: 20px;
  display: block;
}

.feature h3 {
  font: 400 1.2rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 12px;
}

.feature p {
  font: 300 0.875rem/1.8 var(--sans);
  color: var(--white-60);
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background: var(--bg-2); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-2);
}

.testimonial-item {
  background: var(--bg-2);
  padding: 44px 36px;
}

.t-stars { color: var(--tan); font-size: 0.8rem; margin-bottom: 20px; }

.t-quote {
  font: 300 italic 1.05rem/1.8 var(--serif);
  color: var(--white-60);
  margin-bottom: 28px;
}

.t-author strong {
  display: block;
  font: 400 0.85rem/1 var(--serif);
  color: var(--white);
  margin-bottom: 4px;
}

.t-author span {
  font: 300 0.7rem/1 var(--sans);
  letter-spacing: 0.12em;
  color: var(--tan);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-dark {
  background: var(--bg-3);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-dark .section-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); margin-bottom: 16px; }
.cta-dark .section-sub { margin: 0 auto 40px; }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   PAGE HERO  (inner pages)
══════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 500px;
  background: var(--bg-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,0.3), rgba(8,8,8,0.75));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.page-hero-logo {
  margin-bottom: 32px;
}
.page-hero-logo img {
  width: clamp(200px, 40vw, 420px);
  height: auto;
  background: transparent;
  padding: 0;
  margin: 0 auto;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.5));
}

.page-hero-label {
  font: 300 0.68rem/1 var(--sans);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 16px;
  display: block;
}

.page-hero h1 {
  font: 300 clamp(2.4rem, 5vw, 4rem)/1.1 var(--serif);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  font: 300 0.92rem/1.8 var(--sans);
  color: var(--white-60);
  max-width: 500px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about-block { background: var(--bg); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-img {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.split-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.88) saturate(0.85);
  transition: filter 0.5s;
}
.split-img:hover img { filter: brightness(0.95) saturate(0.95); }

.split-text .rule { margin-bottom: 28px; }
.split-text .section-title { margin-bottom: 16px; }
.split-text p {
  font: 300 0.92rem/1.9 var(--sans);
  color: var(--white-60);
  margin-bottom: 16px;
}

.check-list { margin-top: 24px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font: 300 0.88rem/1 var(--sans);
  color: var(--white-60);
  margin-bottom: 14px;
}
.check-list li::before {
  content: '—';
  color: var(--tan);
  flex-shrink: 0;
  margin-top: 0;
  font-weight: 300;
}

@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-img img { height: 340px; }
}

/* ══════════════════════════════════════════
   VALUES
══════════════════════════════════════════ */
.values { background: var(--bg-2); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-2);
}

.value-item {
  background: var(--bg-2);
  padding: 48px 36px;
  transition: background 0.3s;
}
.value-item:hover { background: var(--bg-3); }

.value-icon { font-size: 1.6rem; margin-bottom: 16px; }

.value-item h3 {
  font: 400 1.1rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 10px;
}

.value-item p {
  font: 300 0.87rem/1.8 var(--sans);
  color: var(--white-60);
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 420px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   SERVICES
══════════════════════════════════════════ */
.service-intro { background: var(--bg); }

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 52px 48px;
  margin-bottom: 2px;
}

.service-badge {
  display: inline-block;
  font: 300 0.65rem/1 var(--sans);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tan);
  border: 1px solid rgba(201,169,110,0.4);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.service-card h2 {
  font: 300 clamp(1.8rem, 3vw, 2.8rem)/1.15 var(--serif);
  color: var(--white);
  margin-bottom: 16px;
}
.service-card p {
  font: 300 0.92rem/1.9 var(--sans);
  color: var(--white-60);
  max-width: 680px;
  margin-bottom: 14px;
}

.includes { background: var(--bg-2); }

.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-2);
}

.include-item {
  background: var(--bg-2);
  padding: 36px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.include-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.include-item h3 {
  font: 400 1rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 8px;
}

.include-item p {
  font: 300 0.85rem/1.75 var(--sans);
  color: var(--white-60);
}

@media (max-width: 640px) {
  .includes-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 28px; }
}

/* ── TIMELINE ── */
.timeline-section { background: var(--bg); }

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.tl-item {
  display: flex;
  gap: 36px;
  padding-bottom: 44px;
  position: relative;
}

.tl-dot {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--tan);
  color: var(--tan);
  font: 300 0.7rem/1 var(--sans);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
}

.tl-body { padding-top: 10px; }

.tl-body h3 {
  font: 400 1.05rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 8px;
}

.tl-body p {
  font: 300 0.87rem/1.8 var(--sans);
  color: var(--white-60);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-section { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font: 300 2rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 12px;
}
.contact-info > p {
  font: 300 0.9rem/1.85 var(--sans);
  color: var(--white-60);
  margin-bottom: 40px;
}

.contact-cards { display: flex; flex-direction: column; gap: 2px; }

.contact-card {
  background: var(--bg-3);
  padding: 20px 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--border-2);
  transition: border-color 0.3s;
}
.contact-card:hover { border-color: var(--tan); }

.cc-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cc-text label {
  display: block;
  font: 300 0.62rem/1 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 4px;
}
.cc-text a, .cc-text span {
  font: 300 0.9rem/1 var(--sans);
  color: var(--white-60);
  transition: color 0.2s;
}
.cc-text a:hover { color: var(--tan); }

.contact-form-wrap { background: var(--bg-3); border: 1px solid var(--border); padding: 48px; }

.contact-form-wrap h2 {
  font: 300 1.8rem/1.2 var(--serif);
  color: var(--white);
  margin-bottom: 6px;
}
.contact-form-wrap > p {
  font: 300 0.87rem/1 var(--sans);
  color: var(--white-35);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font: 300 0.65rem/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-35);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 13px 16px;
  font: 300 0.9rem/1 var(--sans);
  color: var(--white);
  outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--tan); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242,240,236,0.2); }
.form-group select option { background: var(--bg-3); color: var(--white); }
.form-group textarea { min-height: 130px; resize: vertical; }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--tan);
  color: var(--bg);
  border: 1px solid var(--tan);
  border-radius: 100px;
  font: 300 0.75rem/1 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans);
}
.form-submit:hover { background: transparent; color: var(--tan); }

.form-note {
  text-align: center;
  font: 300 0.72rem/1 var(--sans);
  color: var(--white-35);
  margin-top: 14px;
  letter-spacing: 0.05em;
}

.form-success { display: none; text-align: center; padding: 48px 0; }
.form-success .si { font-size: 2.5rem; margin-bottom: 16px; }
.form-success h3 { font: 300 1.6rem/1.2 var(--serif); color: var(--white); margin-bottom: 10px; }
.form-success p { font: 300 0.9rem/1.8 var(--sans); color: var(--white-60); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
}

/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery-section { background: var(--bg-2); }

.gallery-filter {
  display: flex;
  gap: 2px;
  margin-bottom: 4px;
  flex-wrap: wrap;
}

.filter-btn {
  font: 300 0.68rem/1 var(--sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 12px 24px;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  color: var(--white-60);
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--tan);
  border-color: var(--tan);
  color: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-3);
  aspect-ratio: 4/3;
}
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.75);
  transition: filter 0.5s var(--ease), transform 0.6s var(--ease);
}
.gallery-item:hover img { filter: brightness(0.95) saturate(1); transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.55);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item-overlay span {
  font: 300 0.68rem/1 var(--sans);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(242,240,236,0.5);
  padding: 10px 22px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── Lightbox ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 2px; }
.lb-close {
  position: fixed; top: 20px; right: 24px;
  background: rgba(255,255,255,0.1); border: 1px solid var(--border);
  color: var(--white); font-size: 1.4rem;
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid var(--border);
  color: var(--white); font-size: 1.2rem;
  width: 50px; height: 50px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { background: var(--bg-2); }

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border-2);
}

.faq-item {
  background: var(--bg-2);
  padding: 36px 32px;
}

.faq-item h3 {
  font: 400 1rem/1.3 var(--serif);
  color: var(--white);
  margin-bottom: 10px;
}

.faq-item p {
  font: 300 0.87rem/1.8 var(--sans);
  color: var(--white-60);
}

@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border-2);
  padding: 72px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}

.footer-brand img {
  height: 36px;
  width: auto;
  background: transparent;
  padding: 0;
  margin-bottom: 16px;
  filter: drop-shadow(0 1px 6px rgba(0,0,0,0.3));
}

.footer-brand p {
  font: 300 0.85rem/1.85 var(--sans);
  color: var(--white-35);
}

.footer-col h4 {
  font: 300 0.62rem/1 var(--sans);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font: 300 0.87rem/1 var(--sans);
  color: var(--white-35);
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--tan); }

.footer-col p {
  font: 300 0.87rem/1.8 var(--sans);
  color: var(--white-35);
  margin-bottom: 6px;
}
.footer-col a {
  font: 300 0.87rem/1 var(--sans);
  color: var(--white-35);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--tan); }

.footer-divider { border: none; border-top: 1px solid var(--border-2); margin-bottom: 24px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom span {
  font: 300 0.75rem/1 var(--sans);
  color: rgba(242,240,236,0.22);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }

/* ── scroll reveal ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible { opacity: 1; transform: none; }
