:root {
  --cream: #f5f0e8;
  --sand: #d9c9a8;
  --terracotta: #c17f5a;
  --deep-blue: #1a2f3d;
  --sea-blue: #2e5f7a;
  --text: #2a2318;
  --light-text: #6b5d4f;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 4rem;
  background: rgba(26,47,61,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding 0.3s;
}
nav.scrolled { padding: 0.8rem 4rem; }
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300; letter-spacing: 0.15em;
  color: var(--cream); text-decoration: none;
}
.nav-logo span { color: var(--terracotta); font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(245,240,232,0.8); text-decoration: none;
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--terracotta);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-reserve {
  background: var(--terracotta) !important; color: white !important;
  padding: 0.5rem 1.4rem; border-radius: 2px;
}
.nav-reserve::after { display: none !important; }
.nav-reserve:hover { background: #a86a47 !important; }

/* ── HERO ── */
.hero {
  height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--deep-blue);
}
.hero-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.45;
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,47,61,0.25) 0%, rgba(26,47,61,0.65) 100%);
}
.hero-content {
  position: relative; text-align: center; color: white; padding: 2rem;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; line-height: 0.95;
  margin-bottom: 1.5rem; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--sand); }
.hero-subtitle {
  font-size: 1rem; letter-spacing: 0.06em; color: rgba(245,240,232,0.8);
  max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.9;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
.hero-cta {
  display: inline-block; padding: 0.9rem 2.8rem;
  border: 1px solid rgba(245,240,232,0.5); color: white;
  text-decoration: none; font-size: 0.75rem; letter-spacing: 0.25em;
  text-transform: uppercase; transition: all 0.3s;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-cta:hover { background: var(--terracotta); border-color: var(--terracotta); }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(245,240,232,0.45); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0; animation: fadeUp 1s 1.2s forwards;
}
.scroll-line {
  width: 1px; height: 40px; background: rgba(245,240,232,0.3);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.3; transform: scaleY(1); }
  50%      { opacity: 0.8; transform: scaleY(1.4); }
}

/* ── SECTION BASE ── */
section { padding: 7rem 4rem; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.2rem;
}
.section-divider {
  width: 50px; height: 1px; background: var(--terracotta); margin-bottom: 2rem;
}

/* Scroll-reveal utility */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── INTRO ── */
.intro { background: var(--cream); }
.intro-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.intro-text p {
  color: var(--light-text); line-height: 1.95; font-size: 0.97rem; font-weight: 300;
  margin-bottom: 1.2rem;
}
.intro-image {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3; border-radius: 2px;
}
.intro-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.intro-image:hover img { transform: scale(1.04); }
.cert-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem; padding: 0.5rem 1rem;
  border: 1px solid var(--sand); font-size: 0.72rem;
  letter-spacing: 0.1em; color: var(--light-text);
}
.cert-badge::before { content: "✓"; color: var(--terracotta); }

/* ── FEATURES ── */
.features { background: var(--deep-blue); color: white; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-title { color: white; }
.features .section-label { color: var(--sand); }
.features-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; margin-top: 3rem; background: rgba(255,255,255,0.05);
}
.feature-card {
  padding: 2.5rem 2rem; background: var(--deep-blue);
  border-top: 2px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover { border-top-color: var(--terracotta); background: rgba(255,255,255,0.03); }
.feature-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.feature-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
  margin-bottom: 0.7rem; color: var(--sand);
}
.feature-desc { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.52); font-weight: 300; }

/* ── GALLERY ── */
.gallery { background: white; padding: 7rem 0; }
.gallery-header { padding: 0 4rem; max-width: 900px; margin: 0 auto 4rem; }
.gallery-header p { color: var(--light-text); font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; }

/* Album strip: thumbnails row */
.album-wrap {
  max-width: 1300px; margin: 0 auto; padding: 0 4rem;
}
.album-main {
  position: relative; overflow: hidden;
  aspect-ratio: 16/9; background: #111;
  border-radius: 2px; margin-bottom: 1.2rem;
  cursor: zoom-in;
}
.album-main img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
  transform: scale(1.03);
}
.album-main img.active {
  opacity: 1; transform: scale(1);
}
.album-main-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; background: rgba(26,47,61,0.55);
  border: none; color: white; font-size: 1.6rem;
  padding: 0.9rem 1.1rem; cursor: pointer;
  backdrop-filter: blur(4px); transition: background 0.2s;
}
.album-main-nav:hover { background: rgba(193,127,90,0.8); }
.album-prev { left: 1rem; }
.album-next { right: 1rem; }
.album-count {
  position: absolute; bottom: 1rem; right: 1.2rem;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
  font-size: 0.75rem; letter-spacing: 0.15em; padding: 0.3rem 0.8rem;
  border-radius: 20px;
}
.album-zoom-btn {
  position: absolute; bottom: 1rem; left: 1.2rem;
  background: rgba(0,0,0,0.5); color: rgba(255,255,255,0.8);
  font-size: 0.75rem; letter-spacing: 0.1em; padding: 0.3rem 0.8rem;
  border-radius: 20px; border: none; cursor: pointer; transition: background 0.2s;
}
.album-zoom-btn:hover { background: rgba(193,127,90,0.8); }

/* Thumbnail strip */
.album-thumbs {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 6px;
}
.album-thumb {
  aspect-ratio: 1; overflow: hidden; border-radius: 2px;
  cursor: pointer; opacity: 0.55; transition: opacity 0.3s, transform 0.3s;
  border: 2px solid transparent;
}
.album-thumb:hover { opacity: 0.85; transform: scale(1.04); }
.album-thumb.active { opacity: 1; border-color: var(--terracotta); }
.album-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* LIGHTBOX */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.96); z-index: 1000;
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.lightbox.active { display: flex; }
.lightbox.shown { opacity: 1; }
.lightbox-img {
  max-width: 90vw; max-height: 90vh; object-fit: contain;
  opacity: 0; transition: opacity 0.4s;
}
.lightbox-img.loaded { opacity: 1; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: white; font-size: 2rem; cursor: pointer;
  background: none; border: none; opacity: 0.6; transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none; color: white;
  font-size: 1.6rem; padding: 1rem 1.2rem; cursor: pointer;
  transition: background 0.2s; backdrop-filter: blur(4px);
}
.lightbox-nav:hover { background: rgba(193,127,90,0.6); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.2em;
}

/* ── RESERVATION ── */
.reservation { background: var(--cream); }
.reservation-inner { max-width: 1100px; margin: 0 auto; }

/* Step indicator */
.steps {
  display: flex; align-items: center; gap: 0; margin-bottom: 3.5rem;
}
.step {
  display: flex; align-items: center; gap: 0.8rem; flex: 1;
}
.step-num {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  border: 2px solid var(--sand); display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 500; color: var(--light-text);
  transition: all 0.4s; flex-shrink: 0;
}
.step.active .step-num { background: var(--deep-blue); border-color: var(--deep-blue); color: white; }
.step.done .step-num { background: var(--terracotta); border-color: var(--terracotta); color: white; }
.step-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light-text); transition: color 0.4s; }
.step.active .step-label, .step.done .step-label { color: var(--text); }
.step-line { flex: 1; height: 1px; background: var(--sand); margin: 0 1rem; }

/* Step panels */
.step-panel { display: none; }
.step-panel.active { display: block; animation: stepIn 0.4s ease; }
@keyframes stepIn {
  from { opacity: 0; transform: translateX(18px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Calendar */
.cal-months-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-bottom: 2rem;
  background: rgba(26,47,61,0.07); border-radius: 3px; overflow: hidden;
}
.cal-month-block {
  background: #faf6ee;
  padding: 1.8rem 1.6rem;
}
.cal-month-nav {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem;
}
.cal-nav-btn {
  background: none; border: 1px solid var(--sand); padding: 0.4rem 0.9rem;
  cursor: pointer; font-family: 'Jost'; font-size: 0.78rem; color: var(--text);
  transition: all 0.2s;
}
.cal-nav-btn:hover { background: var(--deep-blue); color: white; border-color: var(--deep-blue); }
.cal-month-name {
  font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
}
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-day-lbl {
  text-align: center; font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--light-text); padding: 0.4rem 0;
}
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; border-radius: 2px; cursor: pointer;
  transition: background 0.2s, color 0.2s; position: relative; border: 1px solid transparent;
}
.cal-day.empty { cursor: default; }
.cal-day.past { opacity: 0.3; cursor: not-allowed; }
.cal-day.booked {
  background: rgba(193,127,90,0.12); cursor: not-allowed;
  color: var(--terracotta); text-decoration: line-through; font-size: 0.72rem;
}
.cal-day.available:hover { background: rgba(26,47,61,0.08); }
.cal-day.checkin-sel { background: var(--deep-blue); color: white; border-radius: 2px 0 0 2px; }
.cal-day.checkout-sel { background: var(--deep-blue); color: white; border-radius: 0 2px 2px 0; }
.cal-day.in-range { background: rgba(26,47,61,0.1); border-radius: 0; }
.cal-day.today { border-color: var(--terracotta); }

.date-summary {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center; text-align: center;
  gap: 0; padding: 1.5rem 2rem;
  background: var(--deep-blue); color: white; border-radius: 2px;
  margin-bottom: 1.5rem;
}
.date-box { display: flex; flex-direction: column; align-items: center; justify-content: center; }
.date-box-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.55; margin-bottom: 0.4rem; }
.date-box-val { font-family: 'Jost', sans-serif; font-size: 1.3rem; font-weight: 300; line-height: 1.1; letter-spacing: 0.03em; font-variant-numeric: tabular-nums; }
.date-arrow { display: none; }
.date-nights { font-family: 'Jost', sans-serif; font-size: 2.4rem; font-weight: 300; line-height: 1; font-variant-numeric: tabular-nums; }
.date-nights small { display: block; font-family: 'Jost', sans-serif; font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.5; margin-top: 0.35rem; font-weight: 400; }
.date-summary .date-box:first-child { border-right: 1px solid rgba(255,255,255,0.12); }
.date-summary .date-box:last-child { border-left: 1px solid rgba(255,255,255,0.12); }

.cal-legend { display: flex; gap: 1.5rem; font-size: 0.72rem; color: var(--light-text); margin-bottom: 1.5rem; }
.legend-dot { display: inline-block; width: 10px; height: 10px; border-radius: 1px; margin-right: 0.4rem; }
.legend-available { background: rgba(26,47,61,0.15); }
.legend-booked { background: rgba(193,127,90,0.25); }
.legend-selected { background: var(--deep-blue); }

/* Form fields */
.form-section-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; margin-bottom: 1.5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.field { display: flex; flex-direction: column; gap: 0.35rem; }
.field label { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--light-text); }
.field input, .field select {
  padding: 0.8rem 1rem; border: 1px solid var(--sand);
  background: white; font-family: 'Jost'; font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.2s; border-radius: 2px;
}
.field input:focus, .field select:focus { border-color: var(--deep-blue); }
.field input.error { border-color: #c0392b; }
.field .err-msg { font-size: 0.7rem; color: #c0392b; display: none; }
.field input.error + .err-msg { display: block; }

/* Phone field */
.phone-wrap { display: flex; }
.phone-code-sel {
  padding: 0.8rem 0.6rem; border: 1px solid var(--sand); border-right: none;
  background: white; font-family: 'Jost'; font-size: 0.82rem; color: var(--text);
  outline: none; cursor: pointer; min-width: 110px; border-radius: 2px 0 0 2px;
}
.phone-code-sel:focus { border-color: var(--deep-blue); }
.phone-num-inp {
  flex: 1; padding: 0.8rem 1rem; border: 1px solid var(--sand);
  background: white; font-family: 'Jost'; font-size: 0.9rem; color: var(--text);
  outline: none; transition: border-color 0.2s; border-radius: 0 2px 2px 0;
}
.phone-num-inp:focus { border-color: var(--deep-blue); }

/* Payment */
.payment-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.pay-method {
  padding: 1.4rem; border: 1.5px solid var(--sand); cursor: pointer;
  transition: all 0.25s; display: flex; align-items: center; gap: 1rem;
  border-radius: 2px; background: white;
}
.pay-method:hover { border-color: var(--deep-blue); }
.pay-method.selected { border-color: var(--deep-blue); background: rgba(26,47,61,0.04); }
.pay-method-icon { font-size: 1.5rem; }
.pay-method-info { display: flex; flex-direction: column; }
.pay-method-name { font-size: 0.9rem; font-weight: 500; }
.pay-method-sub { font-size: 0.72rem; color: var(--light-text); margin-top: 0.1rem; }

/* Card form */
.card-panel { display: none; padding: 1.5rem; background: white; border: 1px solid var(--sand); border-radius: 2px; margin-bottom: 1rem; }
.card-panel.visible { display: block; animation: stepIn 0.3s ease; }
.card-row3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 0.8rem; }

/* Card brand icons */
.card-brands { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
.card-brand {
  padding: 0.2rem 0.6rem; font-size: 0.65rem; border: 1px solid var(--sand);
  border-radius: 3px; color: var(--light-text); letter-spacing: 0.05em; font-weight: 500;
  transition: all 0.2s;
}
.card-brand.detected { border-color: var(--deep-blue); color: var(--deep-blue); background: rgba(26,47,61,0.07); }

/* Transfer info */
.transfer-panel { display: none; padding: 1.5rem; background: white; border: 1px solid var(--sand); border-radius: 2px; margin-bottom: 1rem; }
.transfer-panel.visible { display: block; animation: stepIn 0.3s ease; }
.transfer-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.transfer-table td { padding: 0.5rem 0; border-bottom: 1px solid rgba(217,201,168,0.4); }
.transfer-table td:first-child { color: var(--light-text); width: 40%; }
.transfer-table td:last-child { font-weight: 500; }

/* Summary box (step 3) */
.booking-summary {
  background: white; border: 1px solid var(--sand); border-radius: 2px; padding: 2rem; margin-bottom: 2rem;
}
.summary-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.7rem 0; border-bottom: 1px solid rgba(217,201,168,0.4);
  font-size: 0.88rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row span:first-child { color: var(--light-text); }
.summary-row span:last-child { font-weight: 500; }
.summary-total { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }

/* Buttons */
.btn-primary {
  padding: 1rem 2.5rem; background: var(--deep-blue); color: white;
  border: none; font-family: 'Jost'; font-size: 0.78rem; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: background 0.3s; border-radius: 2px;
}
.btn-primary:hover { background: var(--terracotta); }
.btn-secondary {
  padding: 1rem 2rem; background: transparent; color: var(--deep-blue);
  border: 1px solid var(--sand); font-family: 'Jost'; font-size: 0.78rem; letter-spacing: 0.15em;
  text-transform: uppercase; cursor: pointer; transition: all 0.3s; border-radius: 2px;
}
.btn-secondary:hover { border-color: var(--deep-blue); }
.btn-row { display: flex; gap: 1rem; align-items: center; margin-top: 1.5rem; }

/* Success */
.success-panel {
  text-align: center; padding: 4rem 2rem; display: none;
}
.success-panel.active { display: block; animation: fadeUp 0.6s ease; }
.success-circle {
  width: 80px; height: 80px; border-radius: 50%; background: rgba(42,122,75,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 2rem;
}
.success-title { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; margin-bottom: 1rem; }
.success-text { color: var(--light-text); line-height: 1.9; max-width: 500px; margin: 0 auto; }

/* ── LOCATION ── */
.location { background: var(--deep-blue); color: white; }
.location-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
}
.location .section-title { color: white; }
.location .section-label { color: var(--sand); }
.location .section-divider { background: var(--sand); }
.location-address {
  margin-top: 1.5rem; color: rgba(255,255,255,0.65);
  line-height: 2.2; font-size: 0.95rem;
}
.location-address strong {
  color: var(--sand); display: block; margin-bottom: 0.2rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.contact-items { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.contact-icon { font-size: 1rem; width: 2rem; opacity: 0.7; }
.contact-text { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.contact-text a { color: var(--sand); text-decoration: none; }
.contact-text a:hover { color: white; }
.map-container { border-radius: 2px; overflow: hidden; height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
footer {
  background: #0f1a22; color: rgba(255,255,255,0.35);
  text-align: center; padding: 2rem;
  font-size: 0.72rem; letter-spacing: 0.1em;
}
footer span { color: var(--terracotta); }

/* ── NOTICE MODAL ── */
.notice-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 26, 34, 0.82);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  opacity: 0; animation: overlayIn 0.5s 0.2s forwards;
}
@keyframes overlayIn {
  to { opacity: 1; }
}
.notice-modal {
  background: var(--cream);
  max-width: 520px; width: 100%;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  transform: translateY(30px) scale(0.97);
  animation: modalIn 0.5s 0.3s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes modalIn {
  to { transform: translateY(0) scale(1); }
}
.notice-modal-header {
  background: var(--deep-blue);
  padding: 2rem 2.2rem 1.8rem;
  position: relative;
  text-align: center;
}
.notice-modal-header::after {
  content: '';
  display: block;
  width: 40px; height: 2px;
  background: var(--terracotta);
  margin: 1rem auto 0;
}
.notice-modal-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--sand);
  margin-bottom: 0.7rem;
}
.notice-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 300;
  color: white; letter-spacing: 0.02em;
  line-height: 1.2;
}
.notice-modal-title em { font-style: italic; color: var(--sand); }
.notice-modal-body {
  padding: 2rem 2.2rem 2.2rem;
  text-align: center;
}
.notice-modal-icon {
  font-size: 2.2rem; margin-bottom: 1.2rem;
  display: block;
}
.notice-modal-text {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--light-text); font-weight: 300;
  margin-bottom: 1.6rem;
}
.notice-modal-text strong {
  color: var(--text); font-weight: 500;
}
.notice-phone-box {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--deep-blue); color: white;
  padding: 0.85rem 1.8rem; border-radius: 2px;
  text-decoration: none; font-size: 1.05rem;
  letter-spacing: 0.08em; font-weight: 300;
  margin-bottom: 1.6rem;
  transition: background 0.25s;
}
.notice-phone-box:hover { background: var(--terracotta); }
.notice-phone-box span { font-size: 1.1rem; }
.notice-modal-divider {
  width: 30px; height: 1px; background: var(--sand);
  margin: 0 auto 1.4rem;
}
.notice-close-btn {
  background: transparent; border: 1px solid var(--sand);
  color: var(--light-text); font-family: 'Jost'; font-size: 0.72rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.7rem 2rem; cursor: pointer; border-radius: 2px;
  transition: all 0.25s;
}
.notice-close-btn:hover {
  border-color: var(--deep-blue); color: var(--deep-blue);
  background: rgba(26,47,61,0.05);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .intro-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .cal-months-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .card-row3 { grid-template-columns: 1fr; }
  .location-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .payment-methods { grid-template-columns: 1fr; }
  .album-thumbs { grid-template-columns: repeat(6,1fr); }
  .steps { gap: 0; }
  .step-label { display: none; }
  .gallery-header, .album-wrap { padding: 0 1.5rem; }
}

/* ── TERMS CHECKBOX ── */
.terms-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--sand);
  border-radius: 2px;
  background: white;
  cursor: pointer;
}
.terms-check-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--deep-blue);
  cursor: pointer;
}
.terms-label {
  font-size: 0.88rem;
  color: var(--light-text);
  line-height: 1.6;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.terms-label a {
  color: var(--deep-blue);
  text-decoration: underline;
  font-weight: 500;
}
.terms-label a:hover { color: var(--terracotta); }

/* ── TERMS MODAL ── */
.terms-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(10, 20, 28, 0.80);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.terms-overlay.active {
  display: flex;
}
.terms-overlay.shown {
  opacity: 1;
}
.terms-modal {
  background: var(--cream);
  width: 100%;
  max-width: 780px;
  max-height: 90vh;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.terms-overlay.shown .terms-modal {
  transform: translateY(0) scale(1);
}
.terms-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  background: var(--deep-blue);
  border-radius: 3px 3px 0 0;
}
.terms-modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.04em;
}
.terms-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0.2rem 0.5rem;
}
.terms-modal-close:hover { color: white; }
.terms-modal-body {
  flex: 1;
  overflow: hidden;
  padding: 0;
}
.terms-pdf-frame {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}
.terms-modal-footer {
  padding: 1.2rem 1.8rem;
  border-top: 1px solid var(--sand);
  display: flex;
  align-items: center;
  background: white;
  border-radius: 0 0 3px 3px;
}

@media (max-width: 900px) {
  .terms-pdf-frame { height: 60vh; }
  .terms-modal { max-height: 95vh; }
}

/* ── WHATSAPP FLOAT BUTTON ── */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9997;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  background: #1ebe5d;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 900px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}
