/* ============================================
   Yacht y Golf Club Paraguayo — Site Styles
   ============================================ */

:root {
  --navy: #16233F;
  --navy-deep: #0E1729;
  --navy-soft: #1F2D4D;
  --gold: #BFA06A;
  --gold-soft: #D4BA88;
  --gold-dark: #9B7F4E;
  --offwhite: #F7F5F1;
  --sand: #D8CFC0;
  --sand-soft: #EBE5DA;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --line: rgba(22, 35, 63, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);

  --serif: "Bodoni Moda", Didot, "Cormorant Garamond", Georgia, serif;
  --sans: "Inter Tight", "Jost", -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--offwhite);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.display {
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.04;
  font-weight: 300;
  letter-spacing: -0.015em;
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--gold); }

.lede {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 60ch;
}

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

section { position: relative; }

.section {
  padding: clamp(80px, 12vw, 160px) 0;
}
.section--tight { padding: clamp(60px, 8vw, 100px) 0; }
.section--dark { background: var(--navy); color: var(--offwhite); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--offwhite); }
.section--dark .lede { color: rgba(247, 245, 241, 0.78); }
.section--sand { background: var(--sand-soft); }

.section-head {
  display: grid;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-head.center { text-align: center; justify-items: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "→";
  font-family: var(--sans);
  letter-spacing: 0;
  transform: translateX(0);
  transition: transform 0.4s var(--ease);
}
.btn:hover::after { transform: translateX(6px); }

.btn--gold {
  background: var(--gold);
  color: var(--offwhite);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover {
  background: var(--navy);
  color: var(--offwhite);
}
.btn--ghost-light {
  background: transparent;
  color: var(--offwhite);
  border-color: var(--offwhite);
}
.btn--ghost-light:hover {
  background: var(--offwhite);
  color: var(--navy);
}
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--offwhite);
}

/* Text link with underline animation */
.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: gap 0.3s var(--ease);
}
.link:hover { gap: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 23, 41, 0.55), rgba(14, 23, 41, 0));
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: var(--offwhite);
  padding: 14px var(--gutter);
  box-shadow: 0 1px 0 var(--line), 0 10px 40px -20px rgba(22, 35, 63, 0.18);
}
.site-header.is-scrolled::before { opacity: 0; }

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  height: 68px;
  transition: height 0.4s var(--ease);
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.brand-mark img {
  height: 100%;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
}
.brand-mark .light { display: block; }
.brand-mark .dark { display: none; }
.site-header.is-scrolled .brand { height: 56px; }
.site-header.is-scrolled .brand-mark .light { display: none; }
.site-header.is-scrolled .brand-mark .dark { display: block; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 38px;
  position: relative;
  z-index: 2;
}
.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}
.primary-nav a {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--offwhite);
  padding: 6px 0;
  position: relative;
  transition: color 0.3s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.primary-nav a:hover { color: var(--gold-soft); }
.primary-nav a:hover::after,
.primary-nav a.is-active::after { width: 100%; }
.primary-nav a.is-active { color: var(--gold-soft); }

.site-header.is-scrolled .primary-nav a { color: var(--navy); }
.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.is-active { color: var(--gold-dark); }

.nav-reserve {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--offwhite);
  border: 1px solid var(--gold);
  transition: all 0.3s var(--ease);
}
.nav-reserve:hover {
  background: transparent;
  color: var(--gold);
}
.site-header.is-scrolled .nav-reserve:hover { color: var(--gold-dark); border-color: var(--gold-dark); }

.menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  z-index: 2;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--offwhite);
  transition: all 0.3s var(--ease);
}
.site-header.is-scrolled .menu-toggle span { background: var(--navy); }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: var(--offwhite);
  z-index: 99;
  padding: 100px var(--gutter) 60px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-slow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 300;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-foot {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: rgba(247, 245, 241, 0.7);
  font-size: 0.85rem;
}
.mobile-nav .nav-foot strong { color: var(--gold); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.7rem; }

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: var(--offwhite);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
  /* slightly tone down very bright skies/water in the source image */
  filter: brightness(0.78) saturate(1.05) contrast(1.02);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    /* dark wash to drop brightness everywhere */
    linear-gradient(180deg, rgba(14, 23, 41, 0.45), rgba(14, 23, 41, 0.45)),
    /* bottom-heavy gradient to anchor the title block */
    linear-gradient(180deg, rgba(14, 23, 41, 0.35) 0%, rgba(14, 23, 41, 0.1) 30%, rgba(14, 23, 41, 0.0) 50%, rgba(14, 23, 41, 0.75) 100%),
    /* left vignette to back the text column */
    linear-gradient(90deg, rgba(14, 23, 41, 0.7) 0%, rgba(14, 23, 41, 0.15) 55%, rgba(14, 23, 41, 0.0) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0 var(--gutter) clamp(80px, 10vw, 130px);
  max-width: var(--container);
  margin: 0 auto;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.015em;
  color: var(--offwhite);
  max-width: 20ch;
  margin-bottom: 28px;
  text-shadow: 0 2px 24px rgba(14, 23, 41, 0.55), 0 1px 3px rgba(0, 0, 0, 0.3);
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-soft);
}
.hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.6;
  max-width: 48ch;
  color: rgba(247, 245, 241, 0.92);
  margin-bottom: 44px;
  text-shadow: 0 1px 12px rgba(14, 23, 41, 0.5);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.7);
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollLine 2.6s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -60px; }
  100% { top: 60px; }
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px, 8vw, 100px);
  padding-top: 140px;
  color: var(--offwhite);
  overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.72) saturate(1.05) contrast(1.02);
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 23, 41, 0.35), rgba(14, 23, 41, 0.35)),
    linear-gradient(180deg, rgba(14, 23, 41, 0.55) 0%, rgba(14, 23, 41, 0.1) 40%, rgba(14, 23, 41, 0.0) 60%, rgba(14, 23, 41, 0.78) 100%),
    linear-gradient(90deg, rgba(14, 23, 41, 0.65) 0%, rgba(14, 23, 41, 0.15) 55%, rgba(14, 23, 41, 0.0) 100%);
}
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--offwhite);
  max-width: 16ch;
  margin-top: 22px;
  text-shadow: 0 2px 24px rgba(14, 23, 41, 0.55), 0 1px 3px rgba(0, 0, 0, 0.3);
}
.page-hero__title em { font-style: italic; color: var(--gold-soft); }
.page-hero__sub {
  margin-top: 22px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.65;
  max-width: 56ch;
  color: rgba(247, 245, 241, 0.92);
  text-shadow: 0 1px 12px rgba(14, 23, 41, 0.5);
}
.page-hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero__crumbs {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.65);
  display: flex;
  gap: 12px;
  align-items: center;
}
.page-hero__crumbs span { color: var(--gold-soft); }

/* ---------- Pilares ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}
.pillar:first-child { border-left: none; }
.pillar:hover { background: var(--sand-soft); }
.pillar__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}
.pillar__title {
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.1;
}
.pillar__copy {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Two-column feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.feature--flip { direction: rtl; }
.feature--flip > * { direction: ltr; }
.feature__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.feature__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-slow);
}
.feature__media:hover img { transform: scale(1.04); }
.feature__media--accent::before {
  content: "";
  position: absolute;
  inset: -20px -20px 20px 20px;
  border: 1px solid var(--gold);
  z-index: -1;
}
.feature__body { padding: 0 clamp(0px, 2vw, 24px); }
.feature__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 18px 0 24px;
}
.feature__body p {
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
  text-wrap: pretty;
}
.feature__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
  margin: 32px 0;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.feature__detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.feature__detail dt {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.feature__detail dd {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--navy);
}

/* ---------- Card grid (rooms, packages) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(24px, 3vw, 40px);
}
.card {
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px rgba(22, 35, 63, 0.25);
}
.card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-slow);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__media .tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--gold);
  color: var(--offwhite);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.card__body {
  padding: 28px clamp(20px, 2.2vw, 32px) 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.card__kicker {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}
.card__title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
}
.card__desc {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  flex: 1;
}
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  font-size: 0.78rem;
  color: var(--ink-soft);
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.card__meta svg { width: 14px; height: 14px; color: var(--gold); }
.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.card__price {
  display: flex;
  flex-direction: column;
}
.card__price small {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.card__price strong {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--navy);
}

/* ---------- Restaurant blocks ---------- */
.resto {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
}
.resto:last-of-type { border-bottom: none; }
.resto--flip { grid-template-columns: 1fr 1.1fr; }
.resto--flip .resto__media { order: 2; }
.resto__media {
  aspect-ratio: 5 / 6;
  overflow: hidden;
  position: relative;
}
.resto__media img { width: 100%; height: 100%; object-fit: cover; }
.resto__body { padding: 20px; }
.resto__mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 12px;
}
.resto__name {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.resto__lede {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 50ch;
}
.resto__hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 24px;
  padding: 22px 0;
  margin: 22px 0 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.resto__hours dt {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.resto__hours dd { color: var(--ink); }

.resto--aguape { --accent: #5C6E3F; }
.resto--mrray  { --accent: #A2754A; }
.resto--tatakua{ --accent: #4A3328; }
.resto .resto__name { color: var(--accent, var(--navy)); }
.resto .resto__mark { color: var(--accent, var(--gold)); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 14vw;
  gap: 12px;
}
.gallery__item {
  overflow: hidden;
  position: relative;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-slow);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 23, 41, 0) 60%, rgba(14, 23, 41, 0.35) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

.gallery__item.tall  { grid-row: span 2; }
.gallery__item.wide  { grid-column: span 6; }
.gallery__item.med   { grid-column: span 4; }
.gallery__item.sm    { grid-column: span 3; }
.gallery__item.tall6 { grid-column: span 6; grid-row: span 2; }
.gallery__item.tall4 { grid-column: span 4; grid-row: span 2; }

/* ---------- Stats / quote ---------- */
.quote {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto;
}
.quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--offwhite);
}
.quote__attr {
  margin-top: 30px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.stat {
  padding: 32px;
  text-align: center;
  border-left: 1px solid var(--line-light);
}
.stat:first-child { border-left: none; }
.stat__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--gold-soft);
  line-height: 1;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.6);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--navy);
  color: var(--offwhite);
  text-align: center;
  overflow: hidden;
}
.cta-band__bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.28;
}
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy) 0%, rgba(22, 35, 63, 0.4) 50%, var(--navy) 100%);
}
.cta-band__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); }
.cta-band__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--offwhite);
  margin-bottom: 20px;
}
.cta-band__title em { font-style: italic; color: var(--gold-soft); }
.cta-band__sub {
  font-size: 1.05rem;
  color: rgba(247, 245, 241, 0.78);
  margin-bottom: 40px;
  line-height: 1.65;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(247, 245, 241, 0.7);
  padding: clamp(60px, 7vw, 90px) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .brand-mark { height: 80px; display: inline-flex; align-items: center; }
.footer-brand .brand-mark img { height: 100%; width: auto; max-width: none; display: block; }
.footer-brand p {
  margin-top: 20px;
  max-width: 36ch;
  line-height: 1.65;
  font-size: 0.92rem;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col p { font-size: 0.92rem; line-height: 1.7; }
.footer-col .stamp {
  margin-top: 18px;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 245, 241, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}
.footer-bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold-soft); }

/* ---------- Reveal animations ---------- */
html.js-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease-slow), transform 1s var(--ease-slow);
}
html.js-ready .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* reveal-img: only hidden once JS confirms it can animate them in.
   Without the html.js-ready guard, images stay visible by default —
   so a failed IntersectionObserver never leaves an empty slot. */
html.js-ready .reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease-slow), transform 1.4s var(--ease-slow);
  will-change: opacity, transform;
}
html.js-ready .reveal-img.is-in {
  opacity: 1;
  transform: scale(1);
}

/* ---------- Forms ---------- */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form .full { grid-column: 1 / -1; }
.form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.form input,
.form select,
.form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  transition: border-color 0.3s var(--ease);
  letter-spacing: 0;
  text-transform: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form textarea { resize: vertical; min-height: 80px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .primary-nav ul { gap: 24px; }
  .primary-nav a { font-size: 0.7rem; letter-spacing: 0.18em; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(3) { border-left: none; border-top: 1px solid var(--line); }
  .pillar:nth-child(4) { border-top: 1px solid var(--line); }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; border-top: 1px solid var(--line-light); }
  .stat:nth-child(4) { border-top: 1px solid var(--line-light); }
}

@media (max-width: 820px) {
  .primary-nav ul, .nav-reserve { display: none; }
  .menu-toggle { display: flex; }
  .feature, .feature--flip { grid-template-columns: 1fr; direction: ltr; }
  .feature__media { aspect-ratio: 4 / 3; }
  .resto, .resto--flip { grid-template-columns: 1fr; }
  .resto--flip .resto__media { order: 0; }
  .gallery { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 22vw; }
  .gallery__item.wide, .gallery__item.tall6 { grid-column: span 6; }
  .gallery__item.med, .gallery__item.tall4 { grid-column: span 3; }
  .gallery__item.sm { grid-column: span 3; }
  .form { grid-template-columns: 1fr; }
}@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-left: none; border-top: 1px solid var(--line); }
  .pillar:first-child { border-top: none; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid var(--line-light); }
  .stat:first-child { border-top: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Mobile banners ---------- */
@media (max-width: 820px) {
  /* Home hero */
  .hero {
    min-height: 88vh;
    min-height: 88svh;
  }
  .hero__inner { padding-bottom: clamp(70px, 14vw, 110px); }
  .hero__eyebrow { margin-bottom: 22px; font-size: 0.66rem; letter-spacing: 0.28em; }
  .hero__title {
    font-size: clamp(2rem, 6.5vw, 3.2rem);
    max-width: 18ch;
    margin-bottom: 22px;
  }
  .hero__sub {
    font-size: 0.98rem;
    margin-bottom: 32px;
    max-width: 100%;
  }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { padding: 14px 24px; font-size: 0.72rem; letter-spacing: 0.22em; }
  .hero__scroll { display: none; } /* clutter on small screens */

  /* Interior page heros */
  .page-hero {
    min-height: 58vh;
    min-height: 58svh;
    padding-top: 110px;
    padding-bottom: clamp(50px, 8vw, 80px);
  }
  .page-hero__title {
    font-size: clamp(2.2rem, 8.6vw, 3.6rem);
    max-width: 16ch;
  }
  .page-hero__sub {
    font-size: 0.98rem;
    margin-top: 18px;
  }
  .page-hero__crumbs { font-size: 0.66rem; letter-spacing: 0.2em; }
}

@media (max-width: 560px) {
  .hero {
    min-height: 80vh;
    min-height: 80svh;
  }
  .hero__title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    max-width: 20ch;
  }
  .hero__sub { font-size: 0.94rem; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }

  .page-hero {
    min-height: 52vh;
    min-height: 52svh;
    padding-top: 100px;
  }
  .page-hero__title {
    font-size: clamp(1.9rem, 10vw, 2.6rem);
    max-width: 18ch;
  }
}
