/* =============================================================
   MAKIN' MEMORIES RETREAT — style.css
   Coastal Boho · Professional · Clean
   ============================================================= */

/* --- TOKENS --- */
:root {
  --sand:        #f7f2ea;
  --sand-mid:    #ede5d4;
  --sand-dark:   #d9cdb8;
  --drift:       #b89b7a;
  --drift-dk:    #8a7158;
  --ocean:       #4a7f8c;
  --ocean-dk:    #2d5c68;
  --ocean-lt:    #a8c5b5;
  --coral:       #c9856c;
  --white:       #fffdf9;
  --ink:         #2a2522;
  --body:        #4a3f38;
  --muted:       #8a7e76;
  --border:      rgba(184,155,122,0.22);
  --border-lt:   rgba(184,155,122,0.12);
  --green:       #4caf7d;
  --red:         #e05252;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Jost', system-ui, sans-serif;

  --max:    1200px;
  --pad:    clamp(20px, 4vw, 32px);
  --sec:    clamp(72px, 10vw, 120px);
  --r:      8px;
  --r-lg:   14px;
  --shadow: 0 4px 28px rgba(42,37,34,0.09);
  --shadow-hover: 0 10px 48px rgba(42,37,34,0.15);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--sans); color: var(--body); background: var(--white); line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font-family: var(--sans); cursor: pointer; }
input, select, textarea { font-family: var(--sans); }

/* --- TYPE SCALE --- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.12; }
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }
em { font-style: italic; color: var(--ocean); }

.eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--drift);
  margin-bottom: 10px;
}
.eyebrow-light { color: rgba(168,197,181,0.9); }

.section-hd { text-align: center; margin-bottom: clamp(40px, 6vw, 72px); }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 620px;
  margin: 14px auto 0;
  line-height: 1.8;
}

/* --- LAYOUT --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

/* --- BUTTONS --- */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ocean); color: var(--white);
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--r); border: none;
  transition: background 0.25s var(--ease), transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover { background: var(--ocean-dk); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(74,127,140,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--white);
  font-size: 0.82rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 13px 28px; border-radius: var(--r); border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.2s, border-color 0.2s;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-full { width: 100%; }

.btn-step {
  width: 100%; padding: 14px; background: var(--ocean); color: white;
  border: none; border-radius: var(--r); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s, transform 0.15s;
}
.btn-step:hover { background: var(--ocean-dk); transform: translateY(-1px); }
.btn-step:disabled { background: var(--sand-dark); color: var(--muted); cursor: not-allowed; transform: none; }

.btn-back {
  background: transparent; border: 1.5px solid var(--border); color: var(--muted);
  padding: 12px 20px; border-radius: var(--r); font-size: 0.8rem; letter-spacing: 0.06em;
  text-transform: uppercase; transition: border-color 0.2s, color 0.2s;
}
.btn-back:hover { border-color: var(--drift); color: var(--body); }

.link-btn {
  background: none; border: none; color: var(--ocean-lt);
  font-size: inherit; text-decoration: underline; cursor: pointer; padding: 0;
}

/* --- PHOTO PLACEHOLDER (when image missing) --- */
.photo-placeholder, .hero-placeholder {
  background: linear-gradient(135deg, var(--sand-mid), var(--sand));
  border: 2px dashed var(--drift);
}
.photo-placeholder img, .hero-placeholder img { display: none; }

/* ================================================================
   NAV
================================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,253,249,0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-lt);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 24px rgba(42,37,34,0.08); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad);
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo-anchor { font-size: 1.4rem; }
.logo-name { display: block; font-family: var(--serif); font-size: 1.2rem; color: var(--ink); line-height: 1.2; }
.logo-place { display: block; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--drift); }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.76rem; font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--body); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ocean); }
.nav-cta {
  background: var(--ocean); color: var(--white) !important;
  padding: 9px 20px; border-radius: var(--r);
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--ocean-dk) !important; color: white !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.25s; }

.mobile-menu {
  display: none; flex-direction: column; gap: 14px;
  padding: 18px var(--pad) 22px;
  background: var(--white); border-top: 1px solid var(--border-lt);
}
.mobile-menu a {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--body); transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--ocean); }
.mobile-cta {
  display: block; text-align: center;
  background: var(--ocean); color: white !important;
  padding: 12px; border-radius: var(--r); margin-top: 4px;
}
.mobile-menu.open { display: flex; }

/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-media { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(20,38,46,0.28) 0%, rgba(20,38,46,0.62) 70%, rgba(20,38,46,0.78) 100%);
}

/* placeholder state */
.hero-media.hero-placeholder {
  background: linear-gradient(150deg, #3d7a8a 0%, #2d5c68 50%, #1a3d48 100%);
}

.hero-content {
  position: relative; z-index: 2; text-align: center; color: var(--white);
  padding: 0 var(--pad); max-width: 820px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-eyebrow {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); padding: 5px 16px; border-radius: 50px;
  color: rgba(255,255,255,0.85); margin-bottom: 26px;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title {
  color: white; font-weight: 300; letter-spacing: -0.01em; margin-bottom: 18px;
  animation: fadeUp 0.9s 0.2s ease both;
}
.hero-title em { color: #a8d8c8; }
.hero-sub {
  font-size: 0.88rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.78); margin-bottom: 36px; font-weight: 300;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 40px; animation: fadeUp 0.9s 0.4s ease both;
}
.hero-pills {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.5s ease both;
}
.pill {
  font-size: 0.72rem; letter-spacing: 0.08em;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.88); padding: 5px 14px; border-radius: 50px;
  backdrop-filter: blur(4px);
}
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2;
}
.scroll-bar {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  margin: 0 auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.3; }
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar { background: var(--ocean); padding: 14px var(--pad); }
.trust-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap;
}
.trust-msg { font-size: 0.86rem; color: rgba(255,255,255,0.9); }
.trust-msg em { color: #a8d8c8; font-style: italic; }
.trust-platforms { display: flex; align-items: center; gap: 10px; }
.trust-also { font-size: 0.75rem; color: rgba(255,255,255,0.55); }
.platform-badge {
  font-size: 0.78rem; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25); padding: 4px 12px; border-radius: 50px;
  transition: background 0.2s;
}
.platform-badge:hover { background: rgba(255,255,255,0.1); color: white; }
.trust-dot { color: rgba(255,255,255,0.3); }

/* ================================================================
   ABOUT
================================================================ */
.about { padding: var(--sec) 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 90px); align-items: center;
}

.about-photos { display: flex; flex-direction: column; gap: 12px; }
.about-photo-main {
  height: clamp(300px, 40vw, 420px); border-radius: var(--r-lg); overflow: hidden;
  position: relative; box-shadow: var(--shadow);
}
.about-photo-tag {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,253,249,0.92); backdrop-filter: blur(6px);
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--drift-dk); padding: 5px 14px; border-radius: 50px;
}
.about-photos-small { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-photo-sm {
  height: 160px; border-radius: var(--r); overflow: hidden;
  box-shadow: var(--shadow);
}

.about-text h2 { margin-bottom: 18px; }
.about-lead { font-size: 1.05rem; color: var(--body); margin-bottom: 14px; line-height: 1.8; }
.about-body { font-size: 0.92rem; color: var(--muted); margin-bottom: 14px; line-height: 1.85; }

.about-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin: 28px 0;
}
.spec { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: var(--body); }
.spec-icon { font-size: 1rem; }

/* ================================================================
   AMENITIES
================================================================ */
.amenities { padding: var(--sec) 0; background: var(--sand); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.amenity-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 28px 24px; border: 1px solid var(--border-lt);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s;
}
.amenity-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-hover);
  border-color: var(--ocean-lt);
}
.amenity-icon { font-size: 1.8rem; margin-bottom: 14px; }
.amenity-card h3 { font-family: var(--serif); font-size: 1.05rem; color: var(--ink); margin-bottom: 8px; }
.amenity-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.75; }

/* ================================================================
   GALLERY
================================================================ */
.gallery { padding: var(--sec) 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--r); overflow: hidden;
  position: relative; cursor: pointer;
  background: var(--sand-mid);
}
.gallery-item img { transition: transform 0.45s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-feature { grid-column: span 2; grid-row: span 2; }

.gallery-hover {
  position: absolute; inset: 0;
  background: rgba(20,38,46,0.45); backdrop-filter: blur(2px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover span {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: white; border: 1px solid rgba(255,255,255,0.6); padding: 7px 18px; border-radius: 50px;
}

/* ================================================================
   BOOK / PRICING
================================================================ */
.book {
  padding: var(--sec) 0;
  background: linear-gradient(155deg, var(--ocean-dk) 0%, #1e4550 100%);
  color: var(--white);
}
.book-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start;
}

/* Left */
.book-title { color: white; margin-bottom: 14px; }
.book-title em { color: #a8d8c8; }
.book-desc { color: rgba(255,255,255,0.72); font-size: 0.92rem; margin-bottom: 28px; line-height: 1.8; }

.rate-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg); padding: 26px; margin-bottom: 22px;
}
.rate-from { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.rate-num { font-family: var(--serif); font-size: 3.2rem; font-weight: 300; color: white; line-height: 1; margin-bottom: 8px; }
.rate-note { font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 18px; }
.rate-perks { display: flex; flex-direction: column; gap: 7px; }
.rate-perk { font-size: 0.82rem; color: rgba(255,255,255,0.78); }

.also-on { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.also-row {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r); padding: 11px 16px; font-size: 0.83rem; color: rgba(255,255,255,0.75);
}
.also-row a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.also-row a:hover { color: white; }
.tag-best { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; background: var(--ocean-lt); color: var(--ocean-dk); padding: 3px 10px; border-radius: 50px; font-weight: 500; }
.tag-fees { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); padding: 3px 10px; border-radius: 50px; }

.sync-badge {
  display: flex; gap: 12px; align-items: flex-start;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r); padding: 16px;
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
}
.sync-icon { font-size: 1.2rem; flex-shrink: 0; }
.sync-badge strong { display: block; color: white; font-size: 0.85rem; margin-bottom: 3px; }
.sync-badge p { color: rgba(255,255,255,0.6); }

/* Right: Widget */
.book-widget {
  background: var(--white); border-radius: 18px; padding: clamp(24px, 4vw, 42px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.28); color: var(--body);
}
.book-widget h3 { font-family: var(--serif); font-size: 1.6rem; color: var(--ink); margin-bottom: 26px; }

/* Steps bar */
.steps-bar {
  display: flex; align-items: center; margin-bottom: 28px;
  padding-bottom: 24px; border-bottom: 1px solid var(--border-lt);
}
.step-dot { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.step-dot span {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--sand-mid); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 500; transition: 0.25s;
}
.step-dot small { font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); transition: 0.25s; }
.step-dot.active span { background: var(--ocean); color: white; }
.step-dot.active small { color: var(--ocean); }
.step-dot.done span { background: var(--green); color: white; }
.step-line { flex: 1; height: 1.5px; background: var(--border); margin: 0 6px 18px; max-width: 36px; }

/* Fields */
.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--drift-dk); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-size: 0.88rem; color: var(--ink); background: var(--white);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--ocean); }
.field textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Price preview */
.price-preview {
  background: var(--sand); border-radius: var(--r); padding: 16px 18px;
  margin-bottom: 18px; font-size: 0.83rem;
}
.pp-row { display: flex; justify-content: space-between; padding: 5px 0; color: var(--muted); }
.pp-row.main { font-size: 0.9rem; color: var(--body); font-weight: 500; }
.pp-row.total { font-size: 1rem; font-weight: 600; color: var(--ink); border-top: 1px solid var(--border); margin-top: 6px; padding-top: 10px; }
.pp-row.deposit-row { color: var(--ocean-dk); font-weight: 500; }
.pp-min { font-size: 0.7rem; color: var(--muted); margin-top: 8px; letter-spacing: 0.06em; }

/* Agreement */
.agree-intro { font-size: 0.82rem; color: var(--muted); margin-bottom: 14px; }
.agreement-scroll-box {
  max-height: 240px; overflow-y: auto;
  background: var(--sand); border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  font-size: 0.78rem; line-height: 1.8; color: var(--body);
  margin-bottom: 18px;
  scrollbar-width: thin; scrollbar-color: var(--drift) transparent;
}
.agreement-scroll-box::-webkit-scrollbar { width: 4px; }
.agreement-scroll-box::-webkit-scrollbar-thumb { background: var(--drift); border-radius: 4px; }
.agreement-scroll-box h4 { font-family: var(--serif); font-size: 1.05rem; text-align: center; margin-bottom: 14px; color: var(--ink); }
.agreement-scroll-box h5 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--ink); margin: 13px 0 4px; }
.agreement-scroll-box p { margin-bottom: 6px; }
.agree-note { font-style: italic; color: var(--drift-dk); font-size: 0.72rem; margin-top: 14px; }

.sig-block { margin-bottom: 4px; }
.sig-preview { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 14px 18px; margin-bottom: 14px; }
.sig-script { font-family: var(--serif); font-size: 1.7rem; font-style: italic; color: var(--ocean-dk); border-bottom: 1px solid var(--sand-dark); padding-bottom: 6px; margin-bottom: 6px; min-height: 38px; }
.sig-meta { font-size: 0.65rem; color: var(--muted); }

.agree-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; font-size: 0.8rem; line-height: 1.5; color: var(--body); margin-top: 10px; margin-bottom: 16px; }
.agree-checkbox input { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; accent-color: var(--ocean); }

/* Payment */
.pay-summary {
  background: var(--sand); border-radius: var(--r); padding: 16px 18px;
  margin-bottom: 18px; font-size: 0.83rem;
}
.ps-row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--body); border-bottom: 1px solid var(--border-lt); }
.ps-row:last-child { border-bottom: none; }
.ps-row.muted { color: var(--muted); }
.ps-row.small { font-size: 0.74rem; }
.ps-row.ps-total { font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.ps-row.ps-deposit { color: var(--ocean-dk); font-weight: 500; }

.stripe-wrap { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r); padding: 18px; margin-bottom: 16px; }
.sec-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.sec-badges span { font-size: 0.68rem; color: var(--muted); background: var(--sand); padding: 3px 10px; border-radius: 50px; border: 1px solid var(--border); }
.stripe-mount { min-height: 56px; }

.stripe-setup { background: var(--sand); border: 1.5px dashed var(--drift); border-radius: var(--r); padding: 18px; font-size: 0.78rem; color: var(--body); line-height: 1.75; }
.stripe-setup strong { display: block; font-size: 0.85rem; color: var(--ink); margin-bottom: 8px; }
.stripe-setup p { color: var(--muted); margin-bottom: 6px; }
.stripe-setup ol { padding-left: 16px; color: var(--body); }
.stripe-setup ol li { margin-bottom: 4px; }
.stripe-setup code { background: rgba(74,127,140,0.1); color: var(--ocean-dk); padding: 1px 5px; border-radius: 3px; font-size: 0.75rem; }
.stripe-setup a { color: var(--ocean); }
.stripe-docs-btn { display: inline-block; margin-top: 12px; color: var(--ocean); font-weight: 500; font-size: 0.8rem; text-decoration: underline; }
.StripeElement { padding: 12px 14px; border: 1.5px solid var(--border); border-radius: var(--r); transition: border-color 0.2s; }
.StripeElement--focus { border-color: var(--ocean); }
.card-error { color: var(--red); font-size: 0.78rem; margin-top: 6px; }

.protect-note { display: flex; gap: 12px; align-items: flex-start; background: var(--sand); border-radius: var(--r); padding: 14px; margin-bottom: 16px; font-size: 0.8rem; }
.protect-note span { font-size: 1.2rem; flex-shrink: 0; }
.protect-note strong { display: block; color: var(--ink); margin-bottom: 3px; font-size: 0.85rem; }
.protect-note p { color: var(--muted); }

.btn-pay {
  width: 100%; padding: 16px; background: var(--ocean); color: white;
  border: none; border-radius: var(--r); font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; transition: background 0.2s, transform 0.15s;
}
.btn-pay:hover { background: var(--ocean-dk); transform: translateY(-1px); }
.btn-pay:disabled { background: var(--sand-dark); color: var(--muted); transform: none; cursor: not-allowed; }
.pay-disclaimer { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 10px; }

.step-nav { display: flex; justify-content: space-between; gap: 10px; margin-top: 16px; }

/* Success state */
.success-wrap { text-align: center; padding: 24px 12px; }
.success-wave { font-size: 3rem; display: block; margin-bottom: 14px; }
.success-wrap h3 { color: var(--ink); margin-bottom: 10px; }
.success-wrap p { font-size: 0.87rem; color: var(--muted); margin-bottom: 16px; }
.success-details { background: var(--sand); border-radius: var(--r); padding: 18px; text-align: left; }
.sd-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid var(--border-lt); }
.sd-row:last-child { border-bottom: none; }
.sd-row span { color: var(--muted); }
.sd-row strong { color: var(--ink); }
.success-note { font-size: 0.78rem; color: var(--muted); margin-top: 14px; }

/* ================================================================
   LOCATION
================================================================ */
.location { padding: var(--sec) 0; background: var(--sand); }

.map-card { background: var(--white); border-radius: var(--r-lg); border: 1px solid var(--border-lt); box-shadow: var(--shadow); overflow: hidden; margin-bottom: 48px; }
.map-card-header { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: start; padding: 30px 32px 26px; border-bottom: 1px solid var(--border-lt); }
.map-card-header h3 { font-family: var(--serif); font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; }
.map-card-header p { font-size: 0.84rem; color: var(--muted); line-height: 1.7; max-width: 500px; }
.map-tag { display: inline-block; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ocean-dk); background: rgba(74,127,140,0.1); padding: 4px 12px; border-radius: 50px; margin-bottom: 10px; }
.map-legend { display: flex; flex-direction: column; gap: 7px; flex-shrink: 0; }
.ml-item { display: flex; align-items: center; gap: 7px; font-size: 0.76rem; color: var(--muted); white-space: nowrap; }
.map-embed iframe { display: block; }

.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.nearby-card {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--r-lg);
  padding: 20px; transition: transform 0.2s, box-shadow 0.2s;
}
.nearby-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.nc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.nearby-card strong { display: block; font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.nearby-card p { font-size: 0.78rem; color: var(--muted); line-height: 1.65; }

/* ================================================================
   REVIEWS
================================================================ */
.reviews { padding: var(--sec) 0; background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 36px; }
.review-card { background: var(--sand); border-radius: var(--r-lg); padding: 30px; border: 1px solid var(--border-lt); transition: transform 0.2s, box-shadow 0.2s; }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-hero { background: var(--ocean); border-color: var(--ocean); }
.review-hero p, .review-hero .reviewer { color: rgba(255,255,255,0.88); }
.review-hero .review-via { color: rgba(255,255,255,0.5); }
.review-stars { font-size: 0.9rem; letter-spacing: 2px; color: var(--drift); margin-bottom: 14px; }
.review-hero .review-stars { color: #f5d47a; }
.review-card p { font-size: 0.88rem; line-height: 1.8; color: var(--body); font-style: italic; margin-bottom: 18px; }
.reviewer { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.review-via { font-size: 0.68rem; color: var(--muted); margin-top: 3px; }
.reviews-more { text-align: center; font-size: 0.85rem; color: var(--muted); }
.reviews-more a { color: var(--ocean); text-decoration: underline; }

/* ================================================================
   CONTACT
================================================================ */
.contact { padding: var(--sec) 0; background: var(--sand); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 7vw, 80px); align-items: start; }
.contact-info h2 { margin-bottom: 14px; }
.contact-info > p { font-size: 0.92rem; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--r);
  padding: 16px; text-decoration: none; color: var(--body);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-item:hover { border-color: var(--ocean-lt); box-shadow: var(--shadow); }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--drift-dk); margin-bottom: 2px; }
.contact-item span { font-size: 0.88rem; color: var(--body); }

.contact-form-wrap { background: var(--white); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 36px); box-shadow: var(--shadow); border: 1px solid var(--border-lt); }
.contact-form .field { margin-bottom: 16px; }
.contact-success { text-align: center; padding: 40px 20px; }
.contact-success .success-wave { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.contact-success h4 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 10px; }

/* ================================================================
   FOOTER
================================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); padding: 52px var(--pad) 30px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; margin-bottom: 36px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand { display: flex; align-items: flex-start; gap: 12px; }
.footer-anchor { font-size: 1.5rem; }
.footer-name { display: block; font-family: var(--serif); font-size: 1.1rem; color: white; margin-bottom: 4px; }
.footer-loc { display: block; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-links a:hover { color: var(--ocean-lt); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact a:hover { color: var(--ocean-lt); }
.footer-social { display: flex; gap: 14px; margin-top: 6px; }
.footer-social a { color: rgba(255,255,255,0.5); transition: color 0.2s; display: flex; align-items: center; }
.footer-social a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.35); }
.footer-legal { font-style: italic; }

/* ================================================================
   LIGHTBOX
================================================================ */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(12,10,9,0.96); backdrop-filter: blur(4px);
  flex-direction: column; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.open { display: flex; animation: lbIn 0.2s ease; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lb-img-wrap { flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; }
.lb-img-wrap img {
  max-width: 88vw; max-height: calc(100vh - 120px);
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r); box-shadow: 0 20px 80px rgba(0,0,0,0.5);
  transition: opacity 0.2s;
}
.lb-close {
  position: fixed; top: 18px; right: 20px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: white; font-size: 1.5rem; width: 40px; height: 40px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 10001;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-prev, .lb-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: white; font-size: 2rem; width: 46px; height: 46px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s; z-index: 10001;
}
.lb-prev { left: 14px; } .lb-next { right: 14px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.18); }
.lb-caption { color: rgba(255,255,255,0.65); font-size: 0.8rem; margin-top: 14px; text-align: center; }
.lb-counter { color: rgba(255,255,255,0.35); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 5px; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photos { order: -1; }
  .book-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-feature { grid-column: span 2; height: 280px; }
  .gallery-item { height: 200px; }
  .map-card-header { grid-template-columns: 1fr; }
  .map-legend { flex-direction: row; flex-wrap: wrap; }
  .nearby-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { grid-column: span 1; }
}

@media (max-width: 560px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature { grid-column: span 1; }
  .nearby-grid { grid-template-columns: 1fr; }
  .hero-pills { gap: 6px; }
  .pill { font-size: 0.65rem; padding: 4px 10px; }
  .field-row { grid-template-columns: 1fr; }
  .about-specs { grid-template-columns: 1fr; }
  .lb-prev { left: 6px; } .lb-next { right: 6px; }
}

/* ---- GALLERY TOGGLE & EXTENDED GRID ---- */
.gallery-toggle-wrap {
  text-align: center;
  margin-top: 36px;
}
.gallery-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ocean);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1.5px solid var(--ocean);
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s;
}
.gallery-toggle-btn:hover {
  background: var(--ocean);
  color: var(--white);
}
.gallery-more-wrap {
  margin-top: 20px;
}
.gallery-more-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
.gallery-more-grid .gallery-item {
  height: 200px;
}
@media (max-width: 900px) {
  .gallery-more-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 560px) {
  .gallery-more-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .gallery-more-grid .gallery-item { height: 160px; }
}

/* ---- AMENITY CARDS WITH PHOTOS ---- */
.amenity-card-photo {
  padding: 0;
  overflow: hidden;
}
.amenity-card-photo .amenity-photo {
  width: 100%;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.amenity-card-photo .amenity-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}
.amenity-card-photo:hover .amenity-photo img {
  transform: scale(1.05);
}
.amenity-card-photo .amenity-icon,
.amenity-card-photo h3,
.amenity-card-photo p {
  padding-left: 24px;
  padding-right: 24px;
}
.amenity-card-photo .amenity-icon {
  padding-top: 20px;
}
.amenity-card-photo p {
  padding-bottom: 24px;
}

/* ---- Dog field ---- */
.dog-field { margin-bottom: 0; }
.dog-toggle-row { display: flex; gap: 20px; margin-top: 8px; }
.dog-radio { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; cursor: pointer; color: var(--text-body); }
.dog-radio input[type="radio"] { accent-color: var(--ocean); width: 16px; height: 16px; cursor: pointer; }
.dog-count-wrap { margin-top: 14px; padding: 14px 16px; background: rgba(74,127,140,0.06); border: 1.5px solid rgba(74,127,140,0.2); border-radius: 8px; }
.dog-count-wrap label { font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: var(--driftwood); }
