/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #000000;
  --black2: #0a0a0a;
  --black3: #111111;
  --black4: #181818;
  --white: #ffffff;
  --grey: #999999;
  --grey2: #666666;
  --grey3: #333333;
  --border: rgba(255,255,255,0.1);
  --border2: rgba(255,255,255,0.06);
  --radius: 4px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
img { display: block; max-width: 100%; }
textarea { resize: vertical; }

/* ===== TYPOGRAPHY ===== */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.05;
  color: var(--white);
}
.section-title--xl {
  font-size: clamp(44px, 7vw, 86px);
  text-align: center;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 18px;
  display: block;
}
.body-text {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.85;
}

/* ===== BUTTONS ===== */
.btn-primary-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-primary-dark:hover {
  background: var(--grey);
  color: var(--black);
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-text-link {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-text-link:hover { color: var(--grey); }
.btn-text-link-lg {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--white);
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey2);
  padding-bottom: 4px;
  transition: color var(--transition), border-color var(--transition);
  display: inline-block;
}
.btn-text-link-lg:hover { color: var(--grey); border-color: transparent; }

/* ===== SECTION ===== */
.section { padding: 120px 0; }

.section-header-centered {
  text-align: center;
  margin-bottom: 72px;
}
.section-header-centered .section-label { display: block; }
.section-cta-center {
  text-align: center;
  margin-top: 56px;
}

/* ===== NAV ===== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}
.nav-wrap.nav-solid {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; gap: 0;
}
.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 28px; font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-right: auto;
  line-height: 1;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin: 0 40px;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-right {
  display: flex; align-items: center; gap: 24px;
  margin-left: auto;
}
.nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--white); }
.btn-book {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius);
  padding: 9px 22px;
  transition: var(--transition);
}
.btn-book:hover { background: var(--white); color: var(--black); }
.nav-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  transition: color 0.25s ease;
}
.nav-social a:hover { color: var(--white); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--grey);
  transition: color 0.25s ease, border-color 0.25s ease;
}
.footer-social a:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 4px; margin-left: 16px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

/* ---- Animated vertical column grid ---- */
.hero-grid {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  overflow: hidden;
}

/* Each column is a clipping container */
.hero-col {
  overflow: hidden;
  position: relative;
}

/* The scrolling track inside each column */
.hero-col-track {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* will-change for GPU compositing */
  will-change: transform;
}

/* Individual cells */
.hcell {
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
  background: #111;
}
.hcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transition: transform 0.65s ease, opacity 0.55s ease;
}
.hcell:hover img {
  transform: scale(1.12);
}
/* JS-driven fade-out state */
.hcell img.is-swapping {
  opacity: 0;
}

/* ---- Column scroll directions ---- */
/* Scrolls DOWN  → track starts halfway up, moves to 0 */
.hero-col--down .hero-col-track { animation: colScrollDown var(--col-dur, 24s) linear infinite; }
/* Scrolls UP → track starts at 0, moves to -50% */
.hero-col--up   .hero-col-track { animation: colScrollUp   var(--col-dur, 24s) linear infinite; }

@keyframes colScrollUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}
@keyframes colScrollDown {
  from { transform: translateY(-50%); }
  to   { transform: translateY(0); }
}

/* Different speeds per column */
.hero-col--s1 { --col-dur: 104s; }
.hero-col--s2 { --col-dur: 76s; }
.hero-col--s3 { --col-dur: 124s; }
.hero-col--s4 { --col-dur: 88s; }

/* ---- Global dimming overlay ---- */
.hero-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(0,0,0,0.52);
}

/* ---- Top & bottom gradient shadows ---- */
.hero-shadow {
  position: absolute; left: 0; right: 0;
  z-index: 3;
  pointer-events: none;
}
.hero-shadow--top {
  top: 0; height: 220px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}
.hero-shadow--bottom {
  bottom: 0; height: 260px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 50%, transparent 100%);
}

/* ---- CTA — absolutely centred in viewport ---- */
.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 100%;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  gap: 24px;
  padding: 0 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.0;
  color: var(--white);
}
.hero-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.04em;
  max-width: 440px;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  margin-top: 8px;
}

/* ---- Info bar — pinned to bottom ---- */
.hero-info {
  position: absolute;
  bottom: 44px; left: 0; right: 0;
  z-index: 4;
  display: flex; gap: 40px;
  padding: 0 32px;
}
.hero-info-item {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,0.55);
}
.hero-info-item svg { flex-shrink: 0; margin-top: 3px; }
.hero-info-item div { display: flex; flex-direction: column; gap: 2px; }
.hero-info-item span { font-size: 13px; line-height: 1.5; }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--black3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about-section { background: var(--black2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px 160px;
  gap: 8px;
}
.about-img--1 { grid-row: span 2; }
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  border: 1px solid var(--border);
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.04); }
.about-text-col { display: flex; flex-direction: column; gap: 24px; }
.about-text-col .section-title { text-align: left; font-size: clamp(32px, 4vw, 52px); }


/* ===== GALLERY ===== */
.gallery-section { background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 200px;
  gap: 4px;
}
.g-cell {
  position: relative;
  overflow: hidden;
  background: #141414;
  cursor: pointer;
}
.g-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease, filter 0.4s ease;
}
.g-cell:hover img {
  transform: scale(1.07);
  filter: brightness(1.12);
}
.g-cell--tall { grid-row: span 2; }
.g-cell--wide { grid-column: span 2; }

/* ===== PROCESS ===== */
.process-section { background: var(--black2); border-top: 1px solid var(--border); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.process-step {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background var(--transition);
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--black3); }
.process-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--grey2);
  letter-spacing: 0.22em;
}
.process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
}
.process-desc {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
}

/* ===== REVIEWS ===== */
.reviews-section { background: var(--black2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.review-card {
  background: var(--black2);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 20px;
  transition: background var(--transition);
}
.review-card:hover { background: var(--black3); }
.review-stars {
  font-size: 14px;
  color: var(--white);
  letter-spacing: 3px;
}
.review-card blockquote {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border2);
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--grey3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 600;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14px; font-weight: 500; margin-bottom: 2px; }
.review-author span { font-size: 12px; color: var(--grey2); }

/* ===== FAQ ===== */
.faq-section { background: var(--black); border-top: 1px solid var(--border); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  align-items: start;
}
.faq-left { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 100px; }
.faq-left .section-title { font-size: clamp(32px, 4vw, 52px); text-align: left; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.75);
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover, .faq-item--open .faq-q { color: var(--white); }
.faq-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  transition: transform var(--transition);
}
.faq-item--open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item--open .faq-a {
  max-height: 240px;
  padding-bottom: 24px;
}
.faq-a p { font-size: 14px; color: var(--grey); line-height: 1.8; }

/* ===== CONTACT / BOOKING ===== */
.contact-section { background: var(--black2); border-top: 1px solid var(--border); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info .section-title { font-size: clamp(32px, 4vw, 52px); text-align: left; }
.contact-details { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.6);
}
.contact-detail svg { flex-shrink: 0; margin-top: 2px; }
.contact-detail div { display: flex; flex-direction: column; gap: 2px; }
.detail-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey2); margin-bottom: 2px; }
.contact-detail span, .contact-detail a { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.contact-detail a:hover { color: var(--white); }
.refund-link {
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey2);
  border-bottom: 1px solid var(--grey3);
  padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
  align-self: flex-start;
}
.refund-link:hover { color: var(--white); border-color: var(--white); }

/* Form */
.booking-form { display: flex; flex-direction: column; gap: 16px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey);
}
.req { color: rgba(255,255,255,0.3); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 14px; font-weight: 300;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color var(--transition);
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,0.3);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--black3); }
.form-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--grey);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px;
  background: var(--black3);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  accent-color: var(--white);
  flex-shrink: 0;
  padding: 0;
}
.btn-submit {
  background: var(--white);
  color: var(--black);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  align-self: flex-start;
  transition: background var(--transition), color var(--transition);
}
.btn-submit:hover { background: var(--grey); }
.form-success {
  display: none;
  align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px; color: rgba(255,255,255,0.7);
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-error {
  display: none;
  align-items: center; gap: 10px;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px; color: #fca5a5;
}
.form-error svg { flex-shrink: 0; }

/* ===== FOOTER ===== */
.footer { background: var(--black); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1.4fr;
  gap: 60px;
  padding: 72px 32px 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .logo { font-size: 26px; }
.footer-brand p { font-size: 13px; color: var(--grey); line-height: 1.7; max-width: 240px; }
.footer-col h5 {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey2);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-detail {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px;
}
.footer-detail svg { flex-shrink: 0; margin-top: 2px; color: var(--grey2); }
.footer-detail span, .footer-detail a {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-detail a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom p { font-size: 12px; color: var(--grey2); letter-spacing: 0.04em; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(3) { border-top: 1px solid var(--border); }
  .process-step:nth-child(4) { border-top: 1px solid var(--border); }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-col { max-width: 480px; }
  .section-header-split { grid-template-columns: 1fr; gap: 24px; }
  .faq-inner { grid-template-columns: 1fr; gap: 48px; }
  .faq-left { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(3),
  .stat-item:nth-child(4) { padding-top: 32px; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { padding-bottom: 32px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column; gap: 0;
    padding-top: 80px; margin: 0;
    z-index: 50;
    overflow-y: auto;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links a { display: block; padding: 20px 32px; font-size: 16px; color: rgba(255,255,255,0.75); }
  .nav-right { gap: 12px; }
  .nav-phone { display: none; }
  .nav-social { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-col:nth-child(3),
  .hero-col:nth-child(4) { display: none; }
  .hero-title { font-size: clamp(40px, 12vw, 72px); }
  .hero-info { flex-direction: column; gap: 14px; bottom: 28px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-cell--tall, .g-cell--wide { grid-row: span 1; grid-column: span 1; }
  .g-cell { height: 200px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-top: 1px solid var(--border); padding: 36px 28px; }
  .process-step:first-child { border-top: none; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; padding: 48px 20px 40px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 540px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions > * { width: 100%; justify-content: center; text-align: center; }
  .section-title--xl { font-size: clamp(36px, 11vw, 60px); }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 24px; }
  .stat-item:last-child { border-bottom: none; }
}
