/* ============================================================
   ADK WEEKEND — GLOSSY COLLAGE REDESIGN
   Palette from the teal-porch-red-chairs photo:
     Teal:        #2A8C7C   Deep teal:    #143D36
     Butter:      #E4D54A   Crimson:      #C42B2B
     Cream:       #F5F0E4   Forest black: #0D1C19
   Type: Bebas Neue (display) · DM Serif Display (italic) · Space Mono (label)
   Signature: vertical spine nav + immersive hero with text bleeding through the photo
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Serif+Display:ital@0;1&family=Space+Mono:wght@400;700&display=swap');

:root {
  --teal:       #2A8C7C;
  --teal-deep:  #143D36;
  --teal-mid:   #1E6358;
  --teal-bright:#35B09E;
  --butter:     #E4D54A;
  --butter-lt:  #F0E86A;
  --crimson:    #C42B2B;
  --crimson-lt: #E03535;
  --cream:      #F5F0E4;
  --cream-dark: #EAE3D2;
  --forest:     #0D1C19;
  --forest-mid: #1A3530;
  --ink:        #0A1210;
  --ink-soft:   #3A524E;
  --ink-muted:  #6B8882;
  --white:      #FFFFFF;

  --bebas:   'Bebas Neue', 'Arial Black', sans-serif;
  --serif:   'DM Serif Display', Georgia, serif;
  --mono:    'Space Mono', monospace;

  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
  --fast:    0.2s var(--ease);
  --med:     0.45s var(--ease);
  --slow:    0.8s var(--ease);
  --col:     1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--mono);
  font-weight: 400;
  background: var(--forest);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: default;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ══════════════════════════════════════════════════
   VERTICAL SPINE NAV — the experimental signature
   Fixed left edge, rotated text, color-blocked panels
   ══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  left: 0; top: 0; bottom: 0;
  width: 64px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  background: var(--teal-deep);
  border-right: 2px solid var(--teal-mid);
}

.nav-logo-wrap {
  height: 64px;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--fast);
  text-decoration: none;
}
.nav-logo-wrap:hover { background: var(--crimson-lt); }
.nav-logo-glyph {
  font-family: var(--bebas);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8px 0;
  overflow: hidden;
}
.nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,228,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: color var(--fast), background var(--fast);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--butter);
  background: rgba(228,213,74,0.06);
}
.nav-links a.active::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--butter);
}

.nav-bottom {
  height: 64px;
  background: var(--butter);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--fast);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-bottom:hover { background: var(--butter-lt); }
.nav-bottom-label {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* Mobile nav (hamburger, top bar) */
.nav-mobile-bar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--teal-deep);
  z-index: 300;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 2px solid var(--teal-mid);
}
.nav-mobile-logo {
  font-family: var(--bebas);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: var(--fast);
}
.nav-mobile-drawer {
  display: none;
  position: fixed;
  top: 56px; left: 0; right: 0; bottom: 0;
  background: var(--forest);
  z-index: 299;
  flex-direction: column;
  padding: 32px 24px;
  gap: 8px;
}
.nav-mobile-drawer.open { display: flex; }
.nav-mobile-drawer a {
  font-family: var(--bebas);
  font-size: 40px;
  letter-spacing: 0.05em;
  color: var(--cream);
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,240,228,0.08);
  transition: color var(--fast), padding-left var(--fast);
}
.nav-mobile-drawer a:hover { color: var(--butter); padding-left: 12px; }

/* ══════════════════════════════
   PAGE WRAPPER — offset for spine
   ══════════════════════════════ */
.page-wrap {
  margin-left: 64px;
}

/* ══════════════════════════════════════════════════
   HERO — full-viewport immersive porch
   Text is MASSIVE Bebas punched over the photograph
   ══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--forest);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(1.15) contrast(1.05);
}

/* Colour overlays — teal wash at bottom, nothing at top */
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(13,28,25,0.1)  0%,
      rgba(13,28,25,0.05) 35%,
      rgba(13,28,25,0.55) 70%,
      rgba(13,28,25,0.85) 100%
    );
}

/* Huge Bebas title that sits on top of the photo */
.hero-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 56px 64px;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--butter);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--butter);
  display: block;
}

.hero-h1 {
  font-family: var(--bebas);
  font-size: clamp(5rem, 13vw, 13rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 0;
  /* The text peeks behind the railing — mix-blend-mode trick */
}
.hero-h1 .line-teal { color: var(--teal-bright); }
.hero-h1 .line-butter { color: var(--butter); }

.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 28px;
  gap: 32px;
}
.hero-sub {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(245,240,228,0.6);
  line-height: 1.8;
  max-width: 360px;
}
.hero-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Stats strip — horizontal ticker across the bottom */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: var(--crimson);
  display: flex;
  overflow: hidden;
}
.hero-stats-inner {
  display: flex;
  animation: ticker 18s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--bebas);
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.04em;
}
.stat-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ══════════════════════════════
   BUTTONS
   ══════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 13px 26px;
  transition: var(--fast);
  cursor: pointer;
  border: none;
}
.btn-teal { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-bright); }
.btn-butter { background: var(--butter); color: var(--forest); }
.btn-butter:hover { background: var(--butter-lt); }
.btn-crimson { background: var(--crimson); color: var(--white); }
.btn-crimson:hover { background: var(--crimson-lt); }
.btn-ghost-w { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-ghost-w:hover { border-color: var(--white); }
.btn-ghost-t { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-ghost-t:hover { background: var(--teal); color: var(--white); }
.btn-outline-cream { background: transparent; color: var(--cream); border: 2px solid rgba(245,240,228,0.3); }
.btn-outline-cream:hover { border-color: var(--cream); }

/* ══════════════════════════════════════════════
   FEATURED PROPERTY — Glossy collage panel
   ══════════════════════════════════════════════ */
.prop-section {
  background: var(--cream);
  padding: 0;
  position: relative;
  overflow: hidden;
}

/* Big angled colour slab behind property section */
.prop-section::before {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 45%;
  height: 120px;
  background: var(--teal);
  transform: skewY(-3deg);
  z-index: 0;
}

.prop-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 680px;
}

/* Photo collage panel */
.prop-photos {
  position: relative;
  background: var(--teal-deep);
  overflow: hidden;
}
.prop-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  display: block;
}
.prop-photos:hover .prop-photo-main { transform: scale(1.03); }

/* Floating mini photos — the "collage" part */
.prop-photo-float {
  position: absolute;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  transition: transform var(--med);
}
.prop-photo-float:hover { transform: scale(1.04) rotate(0deg) !important; }
.prop-photo-float img { width: 100%; height: 100%; object-fit: cover; display: block; }

.pfloat-1 { width: 220px; height: 160px; bottom: 80px; right: -40px; transform: rotate(2.5deg); z-index: 3; }
.pfloat-2 { width: 180px; height: 130px; top: 60px; right: 20px; transform: rotate(-3deg); z-index: 3; }

.prop-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--crimson);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 16px;
  z-index: 4;
}

/* Info panel */
.prop-info {
  background: var(--cream);
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
/* Teal accent stripe */
.prop-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: var(--teal);
}

.prop-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 16px;
}
.prop-title {
  font-family: var(--bebas);
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 0.9;
  color: var(--forest);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.prop-title span { color: var(--crimson); }

.prop-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.prop-stars { color: var(--crimson); font-size: 13px; letter-spacing: 2px; }
.prop-score {
  font-family: var(--bebas);
  font-size: 22px;
  color: var(--forest);
  letter-spacing: 0.04em;
}
.prop-reviews {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-muted);
}
.prop-superhost {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 2px solid var(--teal);
  color: var(--teal);
  padding: 4px 10px;
}

.prop-divider { height: 2px; background: var(--teal-deep); margin: 20px 0; opacity: 0.1; }

.prop-desc {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

/* Spec grid */
.prop-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 2px solid rgba(42,140,124,0.15);
  margin-bottom: 28px;
}
.prop-spec {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(42,140,124,0.1);
  border-right: 1px solid rgba(42,140,124,0.1);
}
.prop-spec:nth-child(even) { border-right: none; }
.prop-spec-label {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 3px;
}
.prop-spec-val {
  font-family: var(--bebas);
  font-size: 17px;
  color: var(--forest);
  letter-spacing: 0.04em;
}

/* Nearby ribbon */
.prop-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 28px;
}
.prop-nearby-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  background: var(--teal-deep);
  color: var(--cream);
}
.prop-nearby-tag span { color: var(--butter); margin-left: 6px; }

/* ══════════════════════════════════════════
   CLUB ADK — dark immersive strip
   ══════════════════════════════════════════ */
.club-strip {
  background: var(--teal-deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}
.club-strip::after {
  content: 'ADK';
  position: absolute;
  right: -20px; bottom: -40px;
  font-family: var(--bebas);
  font-size: 280px;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.02em;
  line-height: 1;
  pointer-events: none;
}
.club-img-panel {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.club-img-panel img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.8) brightness(0.7);
}
.club-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(42,140,124,0.25), rgba(196,43,43,0.15));
}
.club-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--teal-mid), var(--forest));
  display: flex; align-items: center; justify-content: center;
}
.club-placeholder-glyph {
  font-family: var(--bebas);
  font-size: 120px;
  color: rgba(255,255,255,0.07);
  letter-spacing: 0.1em;
}
.club-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.club-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 16px;
}
.club-title {
  font-family: var(--bebas);
  font-size: clamp(3.5rem, 6vw, 7rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.club-title span { color: var(--butter); }
.club-desc {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.9;
  color: rgba(245,240,228,0.5);
  margin-bottom: 28px;
  max-width: 380px;
}
.club-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.club-tag {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 2px solid rgba(53,176,158,0.3);
  color: var(--teal-bright);
}

/* ══════════════════════════════════════════
   EVENTS — colourful stacked rows
   ══════════════════════════════════════════ */
.events-section {
  background: var(--cream);
  padding: 80px 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  padding: 0 56px;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--bebas);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 0.88;
  color: var(--forest);
  letter-spacing: 0.02em;
}
.section-title span { color: var(--crimson); }
.section-link {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-mid);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: gap var(--fast), color var(--fast);
}
.section-link::after { content: '→'; }
.section-link:hover { gap: 16px; color: var(--teal); }

.events-list { padding: 0 56px; }
.event-row {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(20,61,54,0.1);
  gap: 32px;
  transition: background var(--fast);
  cursor: default;
}
.event-row:hover { background: rgba(42,140,124,0.04); }
.event-row:first-child { border-top: 2px solid var(--teal-deep); }
.event-date {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: 0.06em;
}
.event-main {}
.event-name {
  font-family: var(--bebas);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--forest);
  margin-bottom: 3px;
}
.event-loc {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.event-cat {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--teal-deep);
  color: var(--cream);
  padding: 6px 12px;
  white-space: nowrap;
}

/* ══════════════════════════════════════════
   DINING — dark glossy grid
   ══════════════════════════════════════════ */
.dining-section {
  background: var(--forest);
  padding: 80px 0;
}
.dining-section .section-eyebrow { color: var(--teal-bright); }
.dining-section .section-title { color: var(--white); }
.dining-section .section-title span { color: var(--butter); }
.dining-section .section-header { padding: 0 56px; }

.dining-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 40px;
}
.dining-card {
  background: var(--forest-mid);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: background var(--fast);
  border-top: 3px solid transparent;
}
.dining-card:hover { background: var(--teal-deep); border-top-color: var(--teal-bright); }
.dining-name {
  font-family: var(--bebas);
  font-size: 1.7rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 4px;
  line-height: 1;
}
.dining-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.dining-price {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--butter);
  letter-spacing: 0.08em;
  padding-top: 4px;
}
.dining-meta {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 14px;
}
.dining-desc {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.85;
  color: rgba(245,240,228,0.45);
  margin-bottom: 16px;
}
.dining-must {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--butter);
}

/* ══════════════════════════════════════════
   JOURNAL / BLOG — collage card strip
   ══════════════════════════════════════════ */
.journal-section {
  background: var(--teal-deep);
  padding: 80px 0;
}
.journal-section .section-eyebrow { color: var(--butter); }
.journal-section .section-title { color: var(--white); }
.journal-section .section-title span { color: var(--teal-bright); }
.journal-section .section-link { color: var(--butter); }

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 40px;
}
.journal-card {
  background: var(--teal-mid);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background var(--fast);
  cursor: pointer;
  position: relative;
}
.journal-card:hover { background: var(--forest-mid); }
.journal-img {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.journal-swatch {
  width: 100%; height: 100%;
  transition: transform 0.8s var(--ease);
}
.journal-card:hover .journal-swatch { transform: scale(1.06); }
.journal-cat {
  position: absolute;
  top: 14px; left: 14px;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--crimson);
  color: var(--white);
  padding: 5px 10px;
}
.journal-body { padding: 24px 24px 28px; flex: 1; display: flex; flex-direction: column; }
.journal-meta {
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(245,240,228,0.35);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.journal-title {
  font-family: var(--bebas);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
  flex: 1;
}
.journal-excerpt {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,240,228,0.4);
  line-height: 1.8;
  margin-bottom: 16px;
}
.journal-read {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--butter);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--fast);
}
.journal-read::after { content: '→'; }
.journal-card:hover .journal-read { gap: 14px; }

/* ══════════════════════════════════════════
   VENUES
   ══════════════════════════════════════════ */
.venues-section { background: var(--cream); padding: 80px 0; }
.venues-section .section-header { padding: 0 56px; }
.venues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  margin-top: 40px;
}
.venue-card {
  background: var(--cream-dark);
  padding: 40px;
  border-left: 4px solid transparent;
  transition: border-color var(--fast), background var(--fast);
}
.venue-card:hover { border-left-color: var(--teal); background: var(--cream); }
.venue-type {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 10px;
}
.venue-name {
  font-family: var(--bebas);
  font-size: 2rem;
  letter-spacing: 0.03em;
  color: var(--forest);
  margin-bottom: 6px;
  line-height: 1;
}
.venue-loc {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.venue-desc {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.venue-best {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-muted);
}
.venue-best strong { color: var(--teal-mid); font-weight: 700; }

/* ══════════════════════════════════════════
   PLAN PAGE CARDS
   ══════════════════════════════════════════ */
.plan-section { background: var(--forest); padding: 2px 0 80px; }
.plan-section .section-header { padding: 0 56px; margin-top: 60px; }
.plan-section .section-eyebrow { color: var(--teal-bright); }
.plan-section .section-title { color: var(--white); }
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-top: 3px;
}
.plan-card {
  background: var(--forest-mid);
  padding: 40px;
  border-top: 3px solid transparent;
  transition: background var(--fast), border-color var(--fast);
  cursor: pointer;
}
.plan-card:hover { background: var(--teal-deep); border-top-color: var(--butter); }
.plan-icon { font-size: 28px; margin-bottom: 16px; opacity: 0.8; }
.plan-card h3 {
  font-family: var(--bebas);
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1;
}
.plan-card p {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.85;
  color: rgba(245,240,228,0.45);
  margin-bottom: 20px;
}
.plan-clink {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--butter);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--fast);
}
.plan-clink::after { content: '→'; }
.plan-card:hover .plan-clink { gap: 14px; }

/* ══════════════════════════════════════════
   PAGE HERO (interior pages)
   ══════════════════════════════════════════ */
.page-hero {
  background: var(--teal-deep);
  padding: 100px 56px 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--teal);
}
.page-hero::after {
  content: attr(data-title);
  position: absolute;
  right: -16px; bottom: -24px;
  font-family: var(--bebas);
  font-size: 180px;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.04em;
  pointer-events: none;
}
.ph-kicker {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--butter);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ph-kicker::before { content: ''; width: 24px; height: 2px; background: var(--butter); display: block; }
.page-hero h1 {
  font-family: var(--bebas);
  font-size: clamp(3.5rem, 7vw, 7rem);
  line-height: 0.88;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.page-hero h1 span { color: var(--teal-bright); }
.page-hero p {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
  color: rgba(245,240,228,0.5);
  max-width: 480px;
  letter-spacing: 0.04em;
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 64px 0 32px;
  border-top: 4px solid var(--teal-mid);
}
.footer-inner {
  max-width: var(--col);
  margin: 0 auto;
  padding: 0 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--bebas);
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  color: var(--teal-bright);
  margin-bottom: 14px;
  line-height: 1;
}
.footer-brand-tag {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,240,228,0.3);
  line-height: 1.8;
  max-width: 230px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,228,0.3);
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(245,240,228,0.06);
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,240,228,0.4);
  letter-spacing: 0.04em;
  transition: color var(--fast);
}
.footer-col a:hover { color: var(--teal-bright); }
.footer-bottom {
  border-top: 1px solid rgba(245,240,228,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(245,240,228,0.2);
}

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-left.visible { opacity: 1; transform: none; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .prop-inner { grid-template-columns: 1fr; }
  .prop-photos { height: 480px; }
  .pfloat-1, .pfloat-2 { display: none; }
  .club-strip { grid-template-columns: 1fr; }
  .club-img-panel { height: 280px; }
  .dining-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav-mobile-bar { display: flex; }
  .page-wrap { margin-left: 0; margin-top: 56px; }
  .hero-text { padding: 0 24px 80px; }
  .hero-h1 { font-size: 4rem; }
  .section-header { padding: 0 24px; flex-direction: column; align-items: flex-start; }
  .events-list { padding: 0 24px; }
  .event-row { grid-template-columns: 1fr; gap: 8px; }
  .dining-grid, .journal-grid, .plan-grid, .venues-grid { grid-template-columns: 1fr; }
  .prop-info { padding: 40px 28px; }
  .club-text { padding: 48px 28px; }
  .page-hero { padding: 80px 24px 56px; }
  .page-hero::after { display: none; }
  .footer-inner { padding: 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal-left { transition: none !important; animation: none !important; }
}

/* ══════════════════════════════════════════════════
   NEUMORPHISM — applied to key interactive elements
   Base surface: var(--cream) #F5F0E4
   Light shadow: rgba(255,255,255,0.85)
   Dark shadow:  rgba(180,165,140,0.55)
   ══════════════════════════════════════════════════ */

/* Neumorphic card — raised */
.neu-card {
  background: var(--cream);
  border-radius: 20px;
  box-shadow:
    8px 8px 20px rgba(160,145,120,0.45),
    -8px -8px 20px rgba(255,255,255,0.88);
  border: none;
}

/* Neumorphic inset (pressed/input) */
.neu-inset {
  background: var(--cream);
  border-radius: 12px;
  box-shadow:
    inset 5px 5px 12px rgba(160,145,120,0.4),
    inset -5px -5px 12px rgba(255,255,255,0.85);
  border: none;
}

/* Neumorphic button */
.neu-btn {
  background: var(--cream);
  border-radius: 12px;
  box-shadow:
    5px 5px 12px rgba(160,145,120,0.45),
    -5px -5px 12px rgba(255,255,255,0.88);
  transition: box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
  border: none;
  cursor: pointer;
}
.neu-btn:hover {
  box-shadow:
    7px 7px 16px rgba(160,145,120,0.5),
    -7px -7px 16px rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.neu-btn:active {
  box-shadow:
    inset 4px 4px 10px rgba(160,145,120,0.4),
    inset -4px -4px 10px rgba(255,255,255,0.85);
  transform: translateY(0);
}

/* Neumorphic input */
.neu-input {
  background: var(--cream);
  border-radius: 10px;
  box-shadow:
    inset 4px 4px 10px rgba(160,145,120,0.35),
    inset -4px -4px 10px rgba(255,255,255,0.85);
  border: none;
  outline: none;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--forest);
  padding: 12px 18px;
  width: 100%;
  transition: box-shadow 0.2s;
}
.neu-input:focus {
  box-shadow:
    inset 5px 5px 14px rgba(42,140,124,0.2),
    inset -5px -5px 14px rgba(255,255,255,0.9);
}
.neu-input::placeholder { color: var(--ink-muted); }

/* ══════════════════════════════════════════════════
   HERO IMAGE ROTATOR — crossfade slideshow
   ══════════════════════════════════════════════════ */
.hero-rotator {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.4,0,0.2,1);
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.12) contrast(1.03);
}

/* Ticker: slower */
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-stats-inner {
  animation: ticker 48s linear infinite;
}

/* ══════════════════════════════════════════════════
   NEWSLETTER SIGNUP BOX — neumorphic
   ══════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--cream);
  padding: 80px 0;
}
.newsletter-box {
  max-width: 580px;
  margin: 0 auto;
  padding: 52px 48px;
  text-align: center;
}
.newsletter-icon {
  font-size: 36px;
  margin-bottom: 16px;
  opacity: 0.7;
}
.newsletter-title {
  font-family: var(--bebas);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 8px;
  line-height: 1;
}
.newsletter-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin-bottom: 32px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.newsletter-row {
  display: flex;
  gap: 10px;
}
.newsletter-success {
  display: none;
  background: var(--teal);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 14px 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 12px;
}
.newsletter-btn {
  background: var(--teal);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--fast);
  flex-shrink: 0;
  box-shadow: 5px 5px 12px rgba(42,100,90,0.3), -3px -3px 8px rgba(255,255,255,0.6);
}
.newsletter-btn:hover { background: var(--teal-bright); }
.newsletter-btn:active {
  box-shadow: inset 3px 3px 8px rgba(20,60,50,0.3), inset -2px -2px 6px rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════════════
   DASHBOARD
   ══════════════════════════════════════════════════ */
.dash-page {
  background: var(--cream);
  min-height: 100vh;
  padding: 88px 40px 64px;
}
.dash-inner { max-width: 1100px; margin: 0 auto; }
.dash-title {
  font-family: var(--bebas);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 8px;
}
.dash-sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.dash-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.dash-stat-card {
  padding: 28px 24px;
  text-align: center;
}
.dash-stat-num {
  font-family: var(--bebas);
  font-size: 3.5rem;
  letter-spacing: 0.02em;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.dash-stat-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Chart bars */
.dash-chart {
  padding: 32px;
  margin-bottom: 40px;
}
.dash-chart-title {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 24px;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 120px;
}
.chart-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
  gap: 6px;
}
.chart-bar {
  width: 100%;
  background: var(--teal);
  border-radius: 6px 6px 0 0;
  min-height: 4px;
  transition: height 0.6s var(--ease);
  box-shadow: 0 -3px 8px rgba(42,140,124,0.25);
}
.chart-bar-label {
  font-family: var(--mono);
  font-size: 7px;
  color: var(--ink-muted);
  text-align: center;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Section headers in dash */
.dash-section-title {
  font-family: var(--bebas);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 20px;
}

/* Email composer */
.dash-compose {
  padding: 36px;
  margin-bottom: 40px;
}
.dash-compose textarea {
  height: 140px;
  resize: vertical;
  font-family: var(--mono);
}
.dash-field { margin-bottom: 14px; }
.dash-label {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
  display: block;
}
.dash-select {
  background: var(--cream);
  border-radius: 10px;
  box-shadow: inset 4px 4px 10px rgba(160,145,120,0.35), inset -4px -4px 10px rgba(255,255,255,0.85);
  border: none;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--forest);
  padding: 11px 16px;
  width: 100%;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.dash-btn-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.dash-btn {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: var(--fast);
}
.dash-btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 5px 5px 12px rgba(42,100,90,0.3), -3px -3px 8px rgba(255,255,255,0.6);
}
.dash-btn-primary:hover { background: var(--teal-bright); }
.dash-btn-primary:active {
  box-shadow: inset 3px 3px 8px rgba(20,60,50,0.35), inset -2px -2px 6px rgba(255,255,255,0.5);
}
.dash-btn-danger {
  background: var(--crimson);
  color: var(--white);
  box-shadow: 4px 4px 10px rgba(150,40,40,0.3), -3px -3px 8px rgba(255,255,255,0.5);
  font-size: 8px;
  padding: 8px 16px;
}
.dash-btn-danger:hover { background: var(--crimson-lt); }

/* Guest table */
.dash-table {
  padding: 32px;
  margin-bottom: 40px;
  overflow-x: auto;
}
.dash-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 11px;
}
.dash-table th {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0 16px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(42,140,124,0.15);
}
.dash-table td {
  padding: 12px 16px;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(160,145,120,0.12);
  vertical-align: middle;
}
.dash-table tr:last-child td { border-bottom: none; }
.dash-table tr:hover td { background: rgba(42,140,124,0.04); }

/* Add guest form */
.dash-add-guest {
  padding: 28px 32px;
  margin-bottom: 40px;
}
.dash-add-row {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.dash-add-field { flex: 1; min-width: 160px; }

/* Email log */
.dash-email-log {
  padding: 32px;
  margin-bottom: 40px;
}
.email-log-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(160,145,120,0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.email-log-item:last-child { border-bottom: none; }
.email-log-subject {
  font-family: var(--bebas);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--forest);
  margin-bottom: 4px;
}
.email-log-meta {
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.email-log-count {
  font-family: var(--bebas);
  font-size: 1.6rem;
  color: var(--teal);
  letter-spacing: 0.04em;
  text-align: right;
  line-height: 1;
}
.email-log-count-label {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
  text-align: right;
}

/* Flash messages */
.flash-msg {
  padding: 14px 20px;
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.flash-success { background: var(--teal); color: var(--white); }
.flash-error { background: var(--crimson); color: var(--white); }

/* Source badge */
.source-badge {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
}
.source-manual { background: rgba(42,140,124,0.12); color: var(--teal-mid); }
.source-website { background: rgba(196,43,43,0.1); color: var(--crimson); }
.source-airbnb { background: rgba(228,213,74,0.2); color: #7a6a10; }

@media (max-width: 768px) {
  .dash-grid { grid-template-columns: 1fr; }
  .dash-page { padding: 72px 20px 48px; }
  .newsletter-box { padding: 36px 24px; }
  .newsletter-row { flex-direction: column; }
}
