/* ─── HERO — cinematic slideshow ─────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background: var(--forest);
  isolation: isolate;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.h-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 0;
  transition: opacity 1.85s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.h-slide.active {
  opacity: 1;
  z-index: 1;
}
.h-slide .hero-bg {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: var(--hero-pos, center center);
  transform: scale(1.06);
  transform-origin: center center;
  filter: saturate(0.92) contrast(1.06) brightness(0.9);
  will-change: transform;
}
#slide-1 { --hero-pos: 58% 38%; }
#slide-2 { --hero-pos: center 42%; }
#slide-3 { --hero-pos: center 55%; }
.h-slide.active .hero-bg {
  animation: heroDrift 20s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}
#slide-1.active .hero-bg { animation-name: heroDriftL; }
#slide-2.active .hero-bg { animation-name: heroDriftR; }
#slide-3.active .hero-bg { animation-name: heroDrift; }
@keyframes heroDrift {
  from { transform: scale(1.06); }
  to { transform: scale(1.13); }
}
@keyframes heroDriftL {
  from { transform: scale(1.06) translateX(0); }
  to { transform: scale(1.12) translateX(-1.25%); }
}
@keyframes heroDriftR {
  from { transform: scale(1.06) translateX(0); }
  to { transform: scale(1.12) translateX(1.25%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 72% 18%, rgba(200, 169, 110, 0.14) 0%, transparent 55%),
    linear-gradient(
      102deg,
      rgba(14, 26, 22, 0.94) 0%,
      rgba(14, 26, 22, 0.78) 28%,
      rgba(14, 26, 22, 0.32) 52%,
      rgba(14, 26, 22, 0.2) 68%,
      rgba(14, 26, 22, 0.72) 100%
    ),
    linear-gradient(
      0deg,
      rgba(14, 26, 22, 0.92) 0%,
      rgba(14, 26, 22, 0.35) 28%,
      transparent 48%,
      transparent 62%,
      rgba(14, 26, 22, 0.55) 100%
    );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 35%, rgba(8, 16, 14, 0.55) 100%);
  opacity: 0.85;
}
.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}
@media (prefers-reduced-motion: reduce) {
  .h-slide { transition-duration: 0.2s; }
  .h-slide .hero-bg,
  .h-slide.active .hero-bg {
    animation: none !important;
    transform: scale(1.04);
    inset: 0;
    width: 100%;
    height: 100%;
  }
}
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 5vw 5vh;
}
@media (max-width: 900px) {
  #hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .hero-content {
    justify-content: flex-start;
    padding: calc(var(--nav-offset) + 2rem) 1.25rem 5rem;
  }
  .hero-inner {
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
    margin-bottom: 1rem;
  }
  .hero-lead {
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
    max-width: none;
  }
  .hero-eyebrow {
    margin-bottom: 0.85rem;
  }
  .hero-counter {
    bottom: 1.25rem;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-content {
    padding-top: calc(var(--nav-offset) + 2.35rem);
    padding-bottom: calc(var(--reserve-zone, 5rem) + 2rem);
  }
}
.hero-inner { max-width: 680px; }
.hero-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif; font-weight: 400;
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
.hero-title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.6rem;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 48px rgba(8, 16, 14, 0.45);
}
.hero-title em { color: var(--gold-l); font-style: italic; }
.hero-lead {
  font-size: 0.95rem; line-height: 1.8;
  color: rgba(255,255,255,0.62);
  margin-bottom: 2.5rem;
  max-width: 440px; font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }


/* hero right panel — booking widget */
.hero-booking {
  position: absolute;
  right: 5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 300px;
  background: rgba(14, 26, 22, 0.82);
  border: 1px solid rgba(200, 169, 110, 0.28);
  padding: 2rem;
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 24px 64px rgba(8, 16, 14, 0.45);
}
@media (max-width: 1100px) { .hero-booking { display: none; } }
.hero-booking .eyebrow { color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hb-field { margin-bottom: 1.2rem; }
.hb-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); display: block; margin-bottom: 0.4rem; }
.hb-input {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,110,0.15);
  color: rgba(255,255,255,0.8); font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 300; padding: 0.65rem 0.8rem;
  outline: none; transition: border-color 0.2s;
}
.hb-input:focus { border-color: rgba(200,169,110,0.45); }
.hb-input::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }
.hb-select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,169,110,0.15);
  color: rgba(255,255,255,0.8); font-family: 'Jost', sans-serif;
  font-size: 0.82rem; font-weight: 300; padding: 0.65rem 0.8rem;
  outline: none; appearance: none; cursor: pointer;
  transition: border-color 0.2s;
}
.hb-select option { background: var(--forest); color: white; }
.hb-select:focus { border-color: rgba(200,169,110,0.45); }
.hb-submit {
  width: 100%; background: var(--gold); color: var(--forest);
  font-family: 'Jost', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase; font-weight: 500;
  padding: 0.9rem; border: none; cursor: pointer;
  transition: background 0.25s; margin-top: 0.4rem;
}
.hb-submit:hover { background: var(--gold-l); }
.hb-note { font-size: 0.58rem; color: rgba(255,255,255,0.25); text-align: center; margin-top: 0.75rem; letter-spacing: 0.08em; }

/* hero counter */
.hero-counter {
  position: absolute;
  right: 5vw;
  bottom: 5vh;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
@media (max-width: 1100px) { .hero-counter { right: 1.5rem; } }
.hero-dots { display: flex; gap: 0.5rem; align-items: center; }
.hdot {
  width: 20px; height: 1px; background: rgba(255,255,255,0.25);
  cursor: pointer; transition: all 0.3s; border: none;
}
.hdot.active { width: 36px; background: var(--gold); }
.hero-count-text { font-size: 0.58rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.3); }

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: bobble 2.5s ease-in-out infinite;
}
@keyframes bobble { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
.hero-scroll span { font-size: 0.55rem; letter-spacing: 0.2em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(200,169,110,0.6), transparent); }
@media (max-width: 768px) { .hero-scroll { display: none; } }

/* progress line */
.slide-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
}
.slide-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-d), var(--gold-l));
  opacity: 0.85;
  transition: none;
  box-shadow: 0 0 12px rgba(200, 169, 110, 0.35);
}
.slide-progress-bar.running {
  transition: width 6s linear;
  width: 100%;
}

/* hero stagger anim */
.hs { opacity: 0; transform: translateY(20px); animation: fadeUp 0.9s ease forwards; }
.hs:nth-child(1) { animation-delay: 0.15s; }
.hs:nth-child(2) { animation-delay: 0.35s; }
.hs:nth-child(3) { animation-delay: 0.55s; }
.hs:nth-child(4) { animation-delay: 0.7s; }
@keyframes fadeUp { to { opacity: 1; transform: none; } }

/* ─── STATS BAR ──────────────────────────────────────────── */
#stats {
  background: var(--forest);
  padding: 0;
  overflow: hidden;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 768px) { .stats-inner { grid-template-columns: repeat(2, 1fr); } }
.stat-item {
  padding: 2.8rem 2rem;
  border-right: 1px solid rgba(200,169,110,0.1);
  position: relative;
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,169,110,0.05); }
.stat-num {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--gold); font-weight: 400; line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.65rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.35); text-transform: uppercase; }
@media (max-width: 768px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid rgba(200,169,110,0.1); }
  .stat-item:nth-child(4) { border-top: 1px solid rgba(200,169,110,0.1); border-right: none; }
}

/* ─── ABOUT / BRAND ──────────────────────────────────────── */
#about { background: var(--white); overflow: visible; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  max-width: 1300px; margin: 0 auto;
  overflow: visible;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid > .about-img-wrap { order: -1; }
}
.about-img-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  width: 100%;
  min-height: clamp(380px, 44vw, 540px);
  overflow: visible;
}
.about-img-main {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(380px, 44vw, 540px);
  overflow: hidden;
  background: var(--parchment);
}
.about-img-main img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 44vw, 540px);
  object-fit: cover;
  object-position: center;
}
.about-img-inset {
  grid-area: 1 / 1;
  position: relative;
  z-index: 3;
  align-self: end;
  justify-self: end;
  width: min(48%, 228px);
  aspect-ratio: 1;
  margin: 0 0.5rem 0.5rem 0;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(14, 26, 22, 0.2);
  background: var(--cream);
}
.about-img-inset img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
}
.about-year {
  grid-area: 1 / 1;
  position: relative;
  z-index: 4;
  align-self: start;
  justify-self: start;
  margin: -0.5rem 0 0 -0.25rem;
  font-family: 'EB Garamond', serif;
  font-size: clamp(4rem, 10vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 43, 37, 0.12);
  user-select: none;
  pointer-events: none;
}
@media (max-width: 900px) {
  .about-img-wrap,
  .about-img-main,
  .about-img-main img {
    min-height: 340px;
  }
  .about-img-inset {
    width: min(54%, 200px);
    margin: 0 0 0.25rem 0;
  }
}
.about-text h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 400; line-height: 1.12;
  color: var(--ink); margin-bottom: 1.8rem;
}
.about-text h2 em { color: var(--gold-d); font-style: italic; }
.about-text p { color: var(--stone); font-size: 0.9rem; line-height: 1.9; margin-bottom: 1.2rem; }
.about-values {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; margin: 2.5rem 0; border: 1px solid var(--parchment);
}
.aval {
  padding: 1.2rem 1.4rem;
  background: var(--cream);
  border: 1px solid transparent;
  transition: background 0.25s, border-color 0.25s;
}
.aval:hover { background: var(--forest); border-color: var(--forest); }
.aval:hover .aval-title { color: var(--gold); }
.aval:hover .aval-desc { color: rgba(255,255,255,0.5); }
.aval-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; color: var(--ink); margin-bottom: 0.2rem; transition: color 0.25s; }
.aval-desc { font-size: 0.72rem; color: var(--stone); transition: color 0.25s; }

/* ─── ROOMS ──────────────────────────────────────────────── */
#rooms { background: var(--forest); position: relative; overflow: hidden; }
#rooms::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.rooms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 0 auto;
}
@media (max-width: 1000px) { .rooms-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .rooms-grid { grid-template-columns: 1fr; } }
.room-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}
.room-card:hover { transform: translateY(-6px); border-color: rgba(200,169,110,0.35); box-shadow: 0 30px 80px rgba(0,0,0,0.35); }
.room-card--feat { border-color: rgba(200,169,110,0.35); background: rgba(255,255,255,0.07); }
.room-img { height: 240px; overflow: hidden; position: relative; }
.room-img img { transition: transform 0.75s ease; }
.room-card:hover .room-img img { transform: scale(1.07); }
.room-badge {
  position: absolute; top: 1rem; left: 1rem;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--forest); padding: 0.3rem 0.75rem; font-weight: 500;
}
.room-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.room-type { font-size: 0.58rem; letter-spacing: 0.22em; color: rgba(200,169,110,0.5); text-transform: uppercase; margin-bottom: 0.5rem; }
.room-name { font-family: 'EB Garamond', serif; font-size: 1.55rem; color: var(--white); margin-bottom: 0.8rem; font-weight: 400; }
.room-desc { font-size: 0.8rem; line-height: 1.75; color: rgba(255,255,255,0.42); margin-bottom: 1.4rem; flex: 1; }
.room-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.5rem; }
.room-tag { font-size: 0.6rem; letter-spacing: 0.1em; border: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.38); padding: 0.25rem 0.6rem; }
.room-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.07); }
.room-price-from { font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.28); display: block; margin-bottom: 2px; }
.room-price { font-family: 'EB Garamond', serif; font-size: 1.4rem; color: var(--gold); font-weight: 400; }
.room-price small { font-family: 'Jost', sans-serif; font-size: 0.65rem; color: rgba(255,255,255,0.25); font-weight: 300; }
.room-cta {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: 1px solid rgba(200,169,110,0.35); color: var(--gold);
  padding: 0.55rem 1.1rem; font-weight: 400;
  transition: background 0.25s, color 0.25s;
}
.room-cta:hover { background: var(--gold); color: var(--forest); }
/* honeymoon strip */
.honeymoon-strip {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border: 1px solid rgba(200,169,110,0.18);
  padding: 2rem 2.5rem;
  margin-top: 2rem;
  background: rgba(255,255,255,0.02);
  max-width: 1300px; margin: 2rem auto 0;
}
.hs-title { font-family: 'EB Garamond', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 0.3rem; }
.hs-items { font-size: 0.75rem; color: rgba(255,255,255,0.38); }
.hs-price { font-family: 'EB Garamond', serif; font-size: 1.5rem; color: var(--gold); }
.hs-price small { font-family: 'Jost', sans-serif; font-size: 0.65rem; color: rgba(255,255,255,0.28); }
.rooms-cta { text-align: center; margin-top: 3.5rem; }

/* ─── AMENITIES ──────────────────────────────────────────── */
#amenities { background: var(--cream); }
.amen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--parchment);
  max-width: 1300px; margin: 0 auto;
}
@media (max-width: 900px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .amen-grid { grid-template-columns: 1fr; } }
.amen-cell {
  padding: 2.5rem 2rem; border-right: 1px solid var(--parchment); border-bottom: 1px solid var(--parchment);
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}
.amen-cell:hover { background: var(--forest); border-color: var(--forest); }
.amen-cell:nth-child(4n) { border-right: none; }
@media (max-width: 900px) {
  .amen-cell:nth-child(2n) { border-right: none; }
  .amen-cell:nth-child(4n) { border-right: 1px solid var(--parchment); }
}
.amen-icon {
  width: 2rem; height: 2rem; margin-bottom: 1.2rem;
  color: var(--gold); transition: color 0.3s;
}
.amen-cell:hover .amen-icon { color: var(--gold-l); }
.amen-title { font-size: 0.85rem; font-weight: 500; color: var(--ink); margin-bottom: 0.35rem; transition: color 0.3s; }
.amen-cell:hover .amen-title { color: var(--gold); }
.amen-desc { font-size: 0.72rem; color: var(--stone); line-height: 1.65; transition: color 0.3s; }
.amen-cell:hover .amen-desc { color: rgba(255,255,255,0.45); }

/* ─── DINING ─────────────────────────────────────────────── */
#dining { background: var(--white); }
.dining-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1300px; margin: 0 auto;
  border: 1px solid var(--parchment);
}
@media (max-width: 800px) { .dining-grid { grid-template-columns: 1fr; } }
.dining-img { aspect-ratio: 4/3; overflow: hidden; }
.dining-img img { transition: transform 1s ease; }
.dining-img:hover img { transform: scale(1.05); }
.dining-text {
  padding: 4rem; display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid var(--parchment);
}
@media (max-width: 800px) { .dining-text { padding: 2rem 1.5rem; border-left: none; border-top: 1px solid var(--parchment); } }
.dining-text .eyebrow { color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; }
.dining-text .eyebrow::before { content: ''; width: 1rem; height: 1px; background: var(--gold); display: block; }
.dining-text h3 { font-family: 'EB Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--ink); margin-bottom: 1.2rem; }
.dining-text p { color: var(--stone); font-size: 0.85rem; line-height: 1.9; margin-bottom: 0.8rem; }
.dining-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.d-tag { font-size: 0.6rem; letter-spacing: 0.14em; border: 1px solid var(--parchment); color: var(--stone); padding: 0.3rem 0.7rem; }
/* lounge card */
.lounge-card {
  grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--parchment); background: var(--forest);
}
@media (max-width: 800px) { .lounge-card { grid-template-columns: 1fr; } }
.lounge-img { aspect-ratio: 16/9; overflow: hidden; }
.lounge-text {
  padding: 4rem; color: white; display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(200,169,110,0.12);
}
@media (max-width: 800px) { .lounge-text { padding: 2rem 1.5rem; border-left: none; border-top: 1px solid rgba(200,169,110,0.12); } }
.lounge-text .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.lounge-text h3 { font-family: 'EB Garamond', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 1.2rem; }
.lounge-text p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.9; }
.lounge-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.l-tag { font-size: 0.6rem; letter-spacing: 0.14em; border: 1px solid rgba(200,169,110,0.2); color: rgba(200,169,110,0.6); padding: 0.3rem 0.7rem; }

/* ─── GALLERY STRIP ──────────────────────────────────────── */
#gallery-strip {
  background: var(--ink);
  padding: 4rem 0 4.5rem;
  overflow: visible;
}
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  padding: 0 5vw 1.25rem;
}
.gallery-head__title {
  font-family: 'EB Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
.gallery-head__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.gallery-controls {
  display: none;
  align-items: center;
  gap: 0.35rem;
}
@media (min-width: 769px) {
  .gallery-controls { display: flex; }
}
.gallery-btn {
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(200, 169, 110, 0.35);
  background: rgba(20, 43, 37, 0.6);
  color: var(--gold-l);
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.gallery-btn:hover,
.gallery-btn:focus-visible {
  background: rgba(200, 169, 110, 0.15);
  border-color: var(--gold);
  color: var(--gold);
  outline: none;
}
.gallery-btn:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
.gallery-head__link {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  white-space: nowrap;
  transition: gap 0.25s, color 0.2s;
}
.gallery-head__link::after {
  content: '→';
}
.gallery-head__link:hover {
  gap: 0.85rem;
  color: var(--gold-l);
}
.gallery-hint {
  margin: 0 5vw 0.85rem;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
@media (min-width: 769px) {
  .gallery-hint { display: none; }
}
.gallery-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 5vw;
  padding: 0 0 0.75rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(200, 169, 110, 0.55) rgba(255, 255, 255, 0.06);
  touch-action: pan-x;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 5vw,
    #000 calc(100% - 5vw),
    transparent 100%
  );
}
.gallery-scroll::-webkit-scrollbar {
  height: 5px;
}
.gallery-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.06);
  margin: 0 5vw;
}
.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(200, 169, 110, 0.5);
  border-radius: 3px;
}
.gallery-scroll:focus-visible {
  outline: 2px solid rgba(200, 169, 110, 0.45);
  outline-offset: 4px;
}
.gallery-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0 5vw 0.25rem;
}
.gallery-item {
  flex: 0 0 clamp(72vw, 280px, 320px);
  height: clamp(280px, 52vw, 380px);
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
  border-radius: 2px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--forest);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.88);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(0deg, rgba(14, 26, 22, 0.92) 0%, transparent 100%);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: rgba(232, 236, 242, 0.9);
  text-transform: uppercase;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
  }
}
@media (max-width: 768px) {
  .gallery-head {
    align-items: center;
    padding-bottom: 0.75rem;
  }
  .gallery-head__title {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }
  .gallery-scroll {
    mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 2rem), transparent 100%);
    scroll-padding-inline: 1.25rem;
  }
  .gallery-track {
    gap: 0.85rem;
    padding: 0 1.25rem 0.25rem;
  }
  .gallery-item {
    flex: 0 0 min(82vw, 300px);
    height: min(68vw, 340px);
  }
}

/* ─── REVIEWS ────────────────────────────────────────────── */
#reviews { background: var(--cream); }
.reviews-head-grid {
  display: grid; grid-template-columns: auto 1fr;
  gap: 5rem; align-items: start; margin-bottom: 4rem;
  max-width: 1300px; margin: 0 auto 4rem;
}
@media (max-width: 768px) { .reviews-head-grid { grid-template-columns: 1fr; gap: 2rem; } }
.rating-badge {
  background: var(--forest); padding: 2.5rem;
  text-align: center; min-width: 180px;
}
.rating-score { font-family: 'EB Garamond', serif; font-size: 4rem; color: var(--gold); line-height: 1; }
.rating-stars { display: flex; justify-content: center; gap: 2px; margin: 0.5rem 0; }
.rating-count { font-size: 0.65rem; color: rgba(255,255,255,0.35); letter-spacing: 0.12em; }
.sub-ratings { display: flex; gap: 1px; margin-top: 1rem; }
.sub-r {
  flex: 1; background: rgba(255,255,255,0.05); padding: 0.8rem 0.5rem; text-align: center;
}
.sub-r-num { font-family: 'EB Garamond', serif; font-size: 1.2rem; color: var(--gold); }
.sub-r-label { font-size: 0.55rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); display: block; margin-top: 1px; text-transform: uppercase; }
.reviews-intro h2 { font-family: 'EB Garamond', serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--ink); margin-bottom: 1rem; }
.reviews-intro p { color: var(--stone); font-size: 0.85rem; line-height: 1.85; margin-bottom: 1.5rem; max-width: 480px; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 0 auto;
}
@media (max-width: 700px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  background: var(--white); border: 1px solid var(--parchment);
  padding: 2rem; display: flex; flex-direction: column;
  transition: box-shadow 0.3s;
}
.review-card:hover { box-shadow: 0 12px 40px rgba(14,26,22,0.08); }
.rc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.rc-avatar { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 500; color: white;
  font-family: 'Jost', sans-serif; letter-spacing: 0.05em;
  flex-shrink: 0;
}
.rc-name { font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.rc-date { font-size: 0.65rem; color: var(--stone); }
.rc-stars { display: flex; gap: 2px; margin-bottom: 0.8rem; }
.rc-text { font-size: 0.82rem; line-height: 1.75; color: #555; flex: 1; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.rc-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; padding-top: 1rem; border-top: 1px solid var(--parchment); }
.rc-tag { font-size: 0.58rem; letter-spacing: 0.1em; background: rgba(20,43,37,0.05); color: var(--forest); padding: 0.2rem 0.5rem; }
.reviews-read-all {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid rgba(20,43,37,0.18); color: var(--forest); padding: 0.7rem 1.4rem;
  transition: background 0.25s, color 0.25s;
}
.reviews-read-all:hover { background: var(--forest); color: var(--gold); }

/* ─── CTA SECTION ────────────────────────────────────────── */
#cta {
  position: relative; overflow: hidden;
  background: var(--forest);
  padding: 8rem 5vw;
  text-align: center;
}
#cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(200,169,110,0.08) 0%, transparent 70%);
}
#cta .year-bg {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  font-family: 'EB Garamond', serif; font-size: clamp(8rem, 20vw, 18rem);
  color: transparent; -webkit-text-stroke: 1px rgba(200,169,110,0.06);
  pointer-events: none; user-select: none; white-space: nowrap; line-height: 1;
}
#cta .inner { position: relative; max-width: 620px; margin: 0 auto; }
#cta .btn-wa {
  border-color: rgba(255, 255, 255, 0.15);
}
#cta .eyebrow { color: var(--gold); margin-bottom: 1.5rem; justify-content: center; display: flex; align-items: center; gap: 0.8rem; }
#cta h2 { font-family: 'EB Garamond', serif; font-size: clamp(2rem, 4.5vw, 3.8rem); color: var(--white); margin-bottom: 1.2rem; font-weight: 400; line-height: 1.15; }
#cta h2 em { color: var(--gold); }
#cta p { color: rgba(255,255,255,0.45); font-size: 0.88rem; line-height: 1.85; margin-bottom: 2.5rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── LOCATION ───────────────────────────────────────────── */
#location { background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; max-width: 1300px; margin: 0 auto;
  border: 1px solid var(--parchment);
}
@media (max-width: 800px) { .location-grid { grid-template-columns: 1fr; } }
.loc-map { height: 420px; overflow: hidden; }
.loc-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3) sepia(0.15); }
.loc-info { padding: 3rem; border-left: 1px solid var(--parchment); }
@media (max-width: 800px) { .loc-info { border-left: none; border-top: 1px solid var(--parchment); padding: 2rem 1.5rem; } }
.loc-info .eyebrow { color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }
.loc-info .eyebrow::before { content: ''; width: 1rem; height: 1px; background: var(--gold); display: block; }
.loc-info h3 { font-family: 'EB Garamond', serif; font-size: 1.8rem; color: var(--ink); margin-bottom: 1.5rem; }
.loc-detail { display: flex; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.82rem; color: var(--stone); line-height: 1.55; }
.loc-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.loc-note {
  margin-top: 2rem; padding: 1.2rem 1.4rem;
  background: var(--cream); font-size: 0.72rem; color: var(--stone); line-height: 1.7;
}
