/* =====================================================================
   WAZEN RETREAT — style.css
   ---------------------------------------------------------------------
   Palette · Typography · Layout · Components · Sections · Animations
   ===================================================================== */

/* ---------- Reset & root ---------- */
:root {
  --ivory: #F5EFE5;
  --sand: #EADFCB;
  --beige: #E2D4BC;
  --bark: #3A2E22;
  --cocoa: #5A4632;
  --ink: #1F1A14;
  --moss: #5C6B4A;
  --concrete: #9B958A;
  --wood: #8B6B4A;

  --max-w: 84rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ivory);
  color: var(--bark);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--bark); color: var(--ivory); }


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

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.bg-sand { background: var(--sand); }
.bg-bark { background: var(--bark); color: var(--ivory); }


/* ---------- Typography ---------- */
.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.005em;
}
.serif em {
  font-style: normal;
  color: var(--cocoa);
}
h1, h2, h3, h4 { font-weight: 300; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cocoa);
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.light { color: rgba(245, 239, 229, 0.85); }
.eyebrow.center { justify-content: center; }

.body {
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(58, 46, 34, 0.78);
}
.body.light { color: rgba(245, 239, 229, 0.85); }

.mini {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.65);
}
.mini.light { color: rgba(245, 239, 229, 0.7); }


/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid currentColor;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--bark);
  color: var(--ivory);
  border-color: var(--bark);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.btn-ghost {
  background: transparent;
  color: var(--bark);
}
.btn-ghost:hover {
  background: var(--bark);
  color: var(--ivory);
}
.btn-light-solid {
  background: var(--ivory);
  color: var(--bark);
  border-color: var(--ivory);
}
.btn-light-solid:hover {
  background: transparent;
  color: var(--ivory);
}
.btn-light-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: var(--ivory);
}
.btn-light-ghost:hover {
  background: var(--ivory);
  color: var(--bark);
}


/* ============== HEADER ============== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 1.25rem 0;
  background: transparent;
  transition: all 0.5s var(--ease);
}
.header.scrolled {
  padding: 0.65rem 0;
  background: rgba(245, 239, 229, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 46, 34, 0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bark);
}
.brand-mark {
  width: 36px;
  height: 36px;
  color: var(--bark);
}
.brand-mark svg { width: 100%; height: 100%; }
.brand-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.brand-text .top {
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--bark);
}
.brand-text .bot {
  font-size: 9.5px;
  letter-spacing: 0.45em;
  color: rgba(58, 46, 34, 0.65);
  margin-top: 3px;
}
@media (min-width: 640px) { .brand-text { display: flex; } }

/* hero-mode: invert colors when on dark hero */
.header.hero-mode:not(.scrolled) .brand,
.header.hero-mode:not(.scrolled) .brand-mark,
.header.hero-mode:not(.scrolled) .brand-text .top {
  color: var(--ivory);
}
.header.hero-mode:not(.scrolled) .brand-text .bot {
  color: rgba(245, 239, 229, 0.75);
}

/* Nav */
.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.8);
  transition: color 0.3s;
}
.nav a:hover { color: var(--bark); }
.header.hero-mode:not(.scrolled) .nav a { color: rgba(245, 239, 229, 0.85); }
.header.hero-mode:not(.scrolled) .nav a:hover { color: var(--ivory); }

/* Right */
.header-right {
  display: none;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) { .header-right { display: flex; } }

.lang {
  display: flex;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.7);
}
.lang button {
  padding: 0 4px;
  opacity: 0.55;
  transition: opacity 0.3s;
}
.lang button:hover { opacity: 0.85; }
.lang button.active { opacity: 1; }
.lang .sep { opacity: 0.3; margin: 0 4px; }
.header.hero-mode:not(.scrolled) .lang { color: rgba(245, 239, 229, 0.8); }

.header .btn-primary {
  padding: 0.7rem 1.2rem;
  font-size: 10.5px;
}
.header.hero-mode:not(.scrolled) .btn-primary {
  background: var(--ivory);
  color: var(--bark);
  border-color: var(--ivory);
}
.header.hero-mode:not(.scrolled) .btn-primary:hover {
  background: transparent;
  color: var(--ivory);
}

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--bark);
  transition: transform 0.3s, opacity 0.3s, background 0.3s;
}
.header.hero-mode:not(.scrolled) .burger span { background: var(--ivory); }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer (mobile) */
.drawer {
  overflow: hidden;
  max-height: 0;
  background: var(--ivory);
  border-top: 1px solid rgba(58, 46, 34, 0.1);
  transition: max-height 0.5s var(--ease);
}
.drawer.open { max-height: 700px; }
.drawer-inner {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.drawer a {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.85);
}
.drawer .lang {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(58, 46, 34, 0.1);
  color: rgba(58, 46, 34, 0.7);
}


/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(31, 26, 20, 0.4) 0%,
    rgba(31, 26, 20, 0.18) 40%,
    rgba(31, 26, 20, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--ivory);
  padding-top: 8rem;
  padding-bottom: clamp(5rem, 8vw, 7rem);
  max-width: 56rem;
}
.hero-headline {
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  margin: 2rem 0 1.5rem;
  color: var(--ivory);
}
.hero-headline em { color: rgba(245, 239, 229, 0.85); }
.hero-sub {
  max-width: 32rem;
  font-size: 1.05rem;
}
.chips {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.chip {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(245, 239, 229, 0.4);
  border-radius: 999px;
  color: rgba(245, 239, 229, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: rgba(245, 239, 229, 0.05);
}
.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245, 239, 229, 0.7);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: rgba(245, 239, 229, 0.5);
}


/* ============== Common 2-col grid ============== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.img-block {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--sand);
}
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-block.detail {
  display: none;
  position: absolute;
  bottom: -3rem;
  right: -2.5rem;
  width: 14rem;
  aspect-ratio: 4 / 5;
  box-shadow: 0 0 0 8px var(--ivory);
}
@media (min-width: 1024px) { .img-block.detail { display: block; } }

h2.serif {
  font-size: clamp(2.25rem, 4.5vw, 3.4rem);
  margin: 1.5rem 0;
}


/* ============== Brand Story (editorial 2-col) ============== */
.brand-story {
  background: #F2EBDF; /* warm ivory / beige rất nhẹ — giữa --ivory và --sand */
}

.brand-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .brand-story__layout {
    /* desktop: ~47% image · gap · ~44% content */
    grid-template-columns: 47fr 44fr;
    gap: clamp(4rem, 7vw, 7rem);
    align-items: stretch;
  }
  .brand-story__image-wrap,
  .brand-story__content {
    display: flex;
    flex-direction: column;
  }
}

/* --- Image --- */
.brand-story__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--sand);
  border-radius: 2px;
  aspect-ratio: 4 / 5;
}
.brand-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 1024px) {
  .brand-story__image {
    aspect-ratio: auto;
    flex: 1;
    min-height: 720px;
    max-height: 860px;
  }
}

/* --- Content column --- */
.brand-story__content {
  justify-content: center;
  padding: 1rem 0;
}

/* Label — uppercase eyebrow with horizontal line */
.brand-story__label {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cocoa);
  font-weight: 500;
  margin: 0 0 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.brand-story__label::before {
  content: "";
  display: inline-block;
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
@media (min-width: 1024px) {
  .brand-story__label { font-size: 13px; }
}

/* Heading — large editorial serif */
.brand-story__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.625rem, 6vw, 5rem); /* 42-80px */
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--bark);
  margin: 0;
}
.brand-story__title em {
  font-style: normal;
  display: block;
  color: var(--bark);
}

/* Accent — moss/olive horizontal bar */
.brand-story__accent {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--moss);
  margin: 2rem 0 2rem;
}

/* Body — editorial paragraph block */
.brand-story__body {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(58, 46, 34, 0.78);
  font-weight: 300;
  max-width: 620px;
}
.brand-story__body p {
  margin: 0 0 1.15em;
}
.brand-story__body p:last-child { margin-bottom: 0; }
/* First paragraph slightly stronger */
.brand-story__body p:first-child {
  color: var(--bark);
  font-weight: 400;
}
@media (min-width: 1024px) {
  .brand-story__body {
    font-size: 18.5px;
    line-height: 1.95;
  }
}

/* Signature block */
.brand-story__signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 2.75rem;
}
.brand-story__signature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: var(--bark);
  flex-shrink: 0;
}
.brand-story__signature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.brand-story__signature-divider {
  display: inline-block;
  width: 1px;
  height: 34px;
  background: var(--cocoa);
  opacity: 0.35;
}
.brand-story__signature-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
}
.brand-story__signature-brand {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bark);
}
.brand-story__signature-sub {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.55);
  margin-top: 5px;
}

/* --- Mobile sizing tweaks --- */
@media (max-width: 1023.98px) {
  .brand-story__title {
    font-size: clamp(2.375rem, 9vw, 3.25rem); /* 38-52px */
  }
  .brand-story__body {
    font-size: 16px;
    line-height: 1.85;
  }
  .brand-story__accent {
    margin: 1.5rem 0;
  }
  .brand-story__signature {
    margin-top: 2rem;
  }
  .brand-story__signature-icon { width: 26px; height: 26px; }
  .brand-story__signature-divider { height: 30px; }
  .brand-story__signature-brand { font-size: 10.5px; }
  .brand-story__signature-sub { font-size: 9px; }
}


/* ============== Feature grid ============== */
.feature-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 2.5rem;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 4px;
  stroke: var(--bark);
}
.feature h3 {
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bark);
}
.feature p {
  margin-top: 0.5rem;
  font-size: 13.5px;
  color: rgba(58, 46, 34, 0.7);
  line-height: 1.6;
}


/* ============== Rooms ============== */
.rooms-head {
  max-width: 48rem;
  margin-bottom: 4rem;
}
.rooms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem 1.5rem;
}
@media (min-width: 768px) {
  .rooms-grid { grid-template-columns: 1fr 1fr 1fr; }
}
.room-card .room-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--beige);
}

/* ---------- Room slider (crossfade) ---------- */
.room-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--beige);
  border-radius: 2px;
}
.room-slides {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.room-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
  pointer-events: none;
}
.room-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.room-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
  display: block;
}
.room-slider:hover .room-slide.is-active img {
  transform: scale(1.04);
}

/* Arrows — only appear on hover, very subtle */
.room-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 239, 229, 0.88);
  color: var(--bark);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.4s var(--ease), background 0.3s, transform 0.3s;
  z-index: 2;
  border-radius: 50%;
  padding: 0;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.room-arrow:hover { background: var(--ivory); }
.room-arrow:focus-visible {
  outline: 1px solid var(--bark);
  outline-offset: 3px;
}
.room-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
}
.room-arrow-prev { left: 14px; }
.room-arrow-next { right: 14px; }
.room-slider:hover .room-arrow,
.room-slider:focus-within .room-arrow { opacity: 1; }
.room-arrow:hover { transform: translateY(-50%) scale(1.05); }

/* Hide arrows on touch devices — dots are enough */
@media (hover: none) {
  .room-arrow { display: none; }
}

/* Dots */
.room-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  padding: 6px 10px;
  background: rgba(31, 26, 20, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.room-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  background: rgba(245, 239, 229, 0.55);
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  padding: 0;
}
.room-dot:hover { background: rgba(245, 239, 229, 0.85); }
.room-dot.is-active {
  background: var(--ivory);
  transform: scale(1.6);
}
.room-dot:focus-visible {
  outline: 1px solid var(--ivory);
  outline-offset: 2px;
}
.room-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: 2rem;
  margin-top: 0.4rem;
}
.room-meta { margin-top: 1.25rem; }
.room-body {
  margin-top: 0.75rem;
  font-size: 13.5px;
  color: rgba(58, 46, 34, 0.7);
  line-height: 1.65;
  max-width: 22rem;
}
.room-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(58, 46, 34, 0.4);
  transition: border-color 0.3s;
}
.room-link:hover { border-color: var(--bark); }


/* ============== Experiences ============== */
.exp-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}
@media (min-width: 1024px) {
  .exp-head { grid-template-columns: 5fr 6fr; align-items: end; }
}
.exp-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(58, 46, 34, 0.15);
}
@media (min-width: 640px) { .exp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .exp-grid { grid-template-columns: repeat(4, 1fr); } }
.exp-cell {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid rgba(58, 46, 34, 0.15);
  display: flex;
  gap: 1rem;
  transition: background 0.4s;
}
.exp-cell:hover { background: rgba(234, 223, 203, 0.4); }
@media (min-width: 640px) and (max-width: 1023.98px) {
  .exp-cell:nth-child(odd) { border-right: 1px solid rgba(58, 46, 34, 0.15); }
}
@media (min-width: 1024px) {
  .exp-cell:not(:nth-child(4n)) { border-right: 1px solid rgba(58, 46, 34, 0.15); }
}
.exp-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: rgba(58, 46, 34, 0.4);
  margin-top: 4px;
}
.exp-cell h3 { font-size: 15px; font-weight: 500; }
.exp-cell p {
  margin-top: 0.5rem;
  font-size: 13px;
  color: rgba(58, 46, 34, 0.65);
  line-height: 1.6;
}


/* ============== Gallery ============== */
.gallery-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .gallery-head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.gallery-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.65);
}
.gallery-cats .dot { opacity: 0.3; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  .g1 { grid-column: span 5; grid-row: span 2; aspect-ratio: 4/5; }
  .g2 { grid-column: span 4; aspect-ratio: 5/4; }
  .g3 { grid-column: span 3; aspect-ratio: 1; }
  .g4 { grid-column: span 3; aspect-ratio: 5/6; }
  .g5 { grid-column: span 4; aspect-ratio: 4/3; }
  .g6 { grid-column: span 5; aspect-ratio: 16/10; }
}
.g-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--beige);
}
.g-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s var(--ease);
}
.g-tile:hover img { transform: scale(1.05); }


/* ============== Location ============== */
.loc-points { margin-top: 2.5rem; }
.loc-point {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(58, 46, 34, 0.15);
}
.loc-time {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  width: 5rem;
  flex-shrink: 0;
}
.loc-text { font-size: 15px; color: rgba(58, 46, 34, 0.75); }

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--beige);
  overflow: hidden;
}
.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.55) sepia(0.15) contrast(0.95);
}
.map-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(245, 239, 229, 0.95);
  padding: 0.85rem 1rem;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.map-tag span {
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-size: 12px;
  color: rgba(58, 46, 34, 0.6);
  margin-top: 4px;
  font-weight: 300;
}


/* ============== Reviews ============== */
.reviews-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
}
.review {
  background: rgba(234, 223, 203, 0.55);
  padding: 2.25rem;
  border: 1px solid rgba(58, 46, 34, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.stars { display: flex; gap: 3px; color: var(--bark); }
.stars svg { width: 14px; height: 14px; }
.review blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 300;
}
.review figcaption {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(58, 46, 34, 0.1);
}
.review .name { font-size: 14px; font-weight: 500; }
.review .origin {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(58, 46, 34, 0.6);
  margin-top: 4px;
}


/* ============== Featured In (press strip) ============== */
.featured-strip {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background: var(--ivory);
  border-top: 1px solid rgba(58, 46, 34, 0.1);
  border-bottom: 1px solid rgba(58, 46, 34, 0.1);
  text-align: center;
}
.featured-logos {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2.5rem;
}
.featured-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  color: rgba(58, 46, 34, 0.55);
  text-decoration: none;
  transition: color 0.4s var(--ease), letter-spacing 0.4s var(--ease);
  line-height: 1;
}
.featured-logo:hover,
.featured-logo:focus-visible {
  color: var(--bark);
  letter-spacing: 0.04em;
}
.featured-sep {
  color: rgba(58, 46, 34, 0.25);
  font-size: 1.1rem;
  display: none;
}
@media (min-width: 640px) { .featured-sep { display: inline; } }


/* ============== Final CTA ============== */
.final-cta {
  position: relative;
  isolation: isolate;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: center;
  color: var(--ivory);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/final-cta.jpg');
  background-size: cover;
  background-position: center;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 20, 0.55);
}
.final-cta-inner {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  width: 100%;
}
.final-cta h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.25rem, 4.5vw, 3.6rem);
  margin: 1.25rem auto;
  max-width: 40rem;
}
.final-cta h2 em {
  color: rgba(245, 239, 229, 0.85);
  font-style: normal;
}
.final-cta-ctas {
  margin-top: 2.5rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}


/* ============== Footer ============== */
footer { background: var(--bark); color: rgba(245, 239, 229, 0.85); }
.footer-inner { padding: 5rem 0 1.5rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 5fr 3fr 4fr; }
}
.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.footer-brand-block .brand-mark {
  width: 52px;
  height: 52px;
  color: var(--ivory);
}
.footer-brand-block .top {
  color: var(--ivory);
  font-size: 17px;
  letter-spacing: 0.32em;
}
.footer-brand-block .bot {
  color: rgba(245, 239, 229, 0.7);
  font-size: 11px;
  letter-spacing: 0.45em;
  margin-top: 5px;
}
.footer-col h4 {
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.5);
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.footer-col ul li { margin-bottom: 0.75rem; font-size: 14px; }
.footer-col ul li a {
  color: rgba(245, 239, 229, 0.8);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--ivory); }
.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
}
.footer-social a {
  color: rgba(245, 239, 229, 0.8);
  font-size: 14px;
}
.footer-social a:hover { color: var(--ivory); }

.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 239, 229, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 229, 0.5);
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}


/* ============== Reveal animations ============== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease),
    transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }

.image-reveal { overflow: hidden; }
.image-reveal img {
  transform: scale(1.06);
  opacity: 0;
  transition:
    transform 1.6s var(--ease),
    opacity 1.2s ease;
}
.image-reveal.is-visible img {
  transform: scale(1);
  opacity: 1;
}

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