/* ============================================================
   SURF WITH IZ — Global Stylesheet
   Design: Coastal Editorial (Cormorant Garamond + Josefin Sans)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Josefin+Sans:wght@300;400;600;700&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --deep:    #021520;
  --navy:    #0A2540;
  --ocean:   #0077B6;
  --teal:    #00B4D8;
  --sky:     #90E0EF;
  --foam:    #CAF0F8;
  --cream:   #FAF7F2;
  --sand:    #EAD7B8;
  --warm:    #F4E4B5;
  --coral:   #E76F51;
  --sunset:  #F4A261;
  --gold:    #E9C46A;
  --white:   #FFFFFF;
  --text-dk: #0A1628;
  --text-md: #3D5170;
  --text-lt: #8899AA;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Josefin Sans', sans-serif;
  --ff-script:  'Dancing Script', cursive;

  --max-w: 1200px;
  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 6px 30px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 60px rgba(0,0,0,0.20);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text-dk);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-dk);
}
h1 { font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 600; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: 1.25rem; }
p  { font-size: 1rem; letter-spacing: 0.01em; }

.script-text {
  font-family: var(--ff-script);
  font-size: 1.4em;
  color: var(--coral);
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ocean);
  display: block;
  margin-bottom: 0.6rem;
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 90px 0; }

/* === NAVIGATION === */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.site-nav.scrolled {
  background: rgba(2, 21, 32, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.site-nav.light-nav {
  background: rgba(2, 21, 32, 0.92);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--ff-script);
  font-size: 1.9rem;
  color: var(--white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.nav-logo:hover { color: var(--teal); }
.nav-logo span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links .btn-book {
  background: var(--coral);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition);
}
.nav-links .btn-book:hover {
  background: var(--sunset);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(2, 21, 32, 0.98);
  backdrop-filter: blur(16px);
  z-index: 998;
  padding: 24px;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-menu .btn-book-m {
  margin-top: 12px;
  background: var(--coral);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  border-bottom: none;
}

/* === HERO SECTION === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/surf3.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(2,21,32,0.72) 0%,
    rgba(2,21,32,0.45) 50%,
    rgba(0,30,60,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  animation: heroFade 1.2s ease-out both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  animation: heroFade 1.2s 0.2s ease-out both;
}
.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
  margin-bottom: 20px;
  animation: heroFade 1.2s 0.35s ease-out both;
}
.hero h1 em { font-style: italic; color: var(--sky); }
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82);
  margin-bottom: 40px;
  animation: heroFade 1.2s 0.5s ease-out both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFade 1.2s 0.65s ease-out both;
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s 2s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* === WAVE DIVIDER === */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}
.wave-divider svg { display: block; width: 100%; }
.wave-divider.flip { transform: scaleY(-1); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(231,111,81,0.4);
}
.btn-primary:hover { background: #d4563f; box-shadow: 0 6px 28px rgba(231,111,81,0.5); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,119,182,0.35);
}
.btn-ocean:hover { background: #006299; }

.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--deep); }

.btn-lg { padding: 18px 40px; font-size: 0.85rem; }
.btn-sm { padding: 10px 20px; font-size: 0.72rem; }

/* === ABOUT / SPLIT SECTIONS === */
.about-section { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,0.25), transparent 60%);
}
.about-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 2;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.about-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-md);
  display: block;
  margin-top: 4px;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p  { color: var(--text-md); margin-bottom: 16px; }
.stats-row {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.stat-item { }
.stat-item .num {
  font-family: var(--ff-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
}
.stat-item .lbl {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lt);
  display: block;
  margin-top: 4px;
}

/* === PRICING SECTION === */
.pricing-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
}
.pricing-section h2, .pricing-section .eyebrow { color: var(--white); }
.pricing-section .eyebrow { color: var(--teal); }
.pricing-section > .container > p { color: rgba(255,255,255,0.7); margin: 16px 0 48px; max-width: 560px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.price-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}
.price-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.10);
  border-color: var(--teal);
}
.price-card.featured {
  background: linear-gradient(135deg, rgba(0,180,216,0.18), rgba(0,119,182,0.25));
  border-color: var(--teal);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.price-card .people-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}
.price-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.price-main {
  margin: 20px 0;
}
.price-main .amount {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.price-main .per { font-size: 0.78rem; color: rgba(255,255,255,0.5); display: block; margin-top: 4px; }
.price-add {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.price-add strong { color: var(--gold); }
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}

/* === GALLERY SECTION === */
.gallery-section { background: var(--cream); }
.gallery-section h2 { text-align: center; margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,21,32,0.45), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* === CTA BAND === */
.cta-band {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 50%, #0A3A60 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band .eyebrow { color: var(--teal); }
.cta-band p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 40px; }
.cta-band .btn-group { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === INFO PAGE === */
.page-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--navy) 100%);
  padding: calc(var(--nav-h) + 60px) 0 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 5vw, 4rem); }
.page-hero .eyebrow { color: var(--teal); text-align: center; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 16px auto 0; }

.info-section { background: var(--cream); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.info-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}
.info-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.info-card p, .info-card li {
  font-size: 0.9rem;
  color: var(--text-md);
  line-height: 1.75;
}
.info-card ul { list-style: none; margin-top: 12px; }
.info-card li {
  padding: 6px 0;
  border-bottom: 1px solid var(--sand);
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.info-card li:last-child { border-bottom: none; }
.info-card li::before {
  content: '✦';
  color: var(--coral);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.info-card.accent-card {
  background: var(--navy);
  color: var(--white);
}
.info-card.accent-card h3 { color: var(--teal); }
.info-card.accent-card p, .info-card.accent-card li { color: rgba(255,255,255,0.75); }
.info-card.accent-card li { border-color: rgba(255,255,255,0.1); }
.info-card.full-width { grid-column: 1 / -1; }

.process-steps { counter-reset: steps; }
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--sand);
}
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  counter-increment: steps;
}
.step-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.step-content p { font-size: 0.88rem; color: var(--text-md); }

/* === BOOKING PAGE === */
.booking-section {
  background: var(--cream);
  padding-top: calc(var(--nav-h) + 40px);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.booking-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.sidebar-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  margin-bottom: 20px;
}
.sidebar-card h3 { color: var(--teal); font-size: 1.5rem; margin-bottom: 20px; }
.sidebar-card .eyebrow { color: rgba(255,255,255,0.5); }
.price-summary { }
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.price-line:last-child { border-bottom: none; }
.price-line.total {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  padding-top: 16px;
  margin-top: 4px;
  border-bottom: none;
}
.price-line.total span:last-child {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--teal);
}
.promo-badge {
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: var(--teal);
  margin-top: 12px;
  display: none;
}
.promo-badge.show { display: block; }

/* Form Styles */
.form-section-title {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin: 32px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title:first-child { margin-top: 0; }
.form-section-title .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ocean);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }
label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-md);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  background: var(--cream);
  font-size: 0.95rem;
  color: var(--text-dk);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.1);
  background: var(--white);
}
input::placeholder { color: var(--text-lt); }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238899AA' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.field-hint {
  font-size: 0.75rem;
  color: var(--text-lt);
  margin-top: 4px;
}

/* Time Slot Grid */
.time-slot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.time-slot {
  padding: 12px 8px;
  text-align: center;
  border-radius: 8px;
  border: 1.5px solid var(--sand);
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text-dk);
  user-select: none;
}
.time-slot:hover:not(.unavailable) {
  border-color: var(--ocean);
  background: rgba(0,119,182,0.06);
}
.time-slot.selected {
  background: var(--ocean);
  border-color: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(0,119,182,0.35);
}
.time-slot.unavailable {
  background: #F0F0F0;
  border-color: #E0E0E0;
  color: #BDBDBD;
  cursor: not-allowed;
  text-decoration: line-through;
}
.slots-loading {
  text-align: center;
  color: var(--text-lt);
  font-size: 0.85rem;
  padding: 20px;
  font-style: italic;
}
.no-date-msg {
  font-size: 0.85rem;
  color: var(--text-lt);
  font-style: italic;
  padding: 12px 0;
}

/* Promo Code */
.promo-row {
  display: flex;
  gap: 10px;
}
.promo-row input { flex: 1; text-transform: uppercase; letter-spacing: 0.1em; }
.btn-promo {
  padding: 12px 18px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}
.btn-promo:hover { background: var(--ocean); }
.promo-status {
  font-size: 0.8rem;
  margin-top: 6px;
}
.promo-status.success { color: #2e7d32; }
.promo-status.error   { color: #c62828; }

/* Submit area */
.form-submit-area {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 2px solid var(--sand);
  text-align: center;
}
.form-submit-area p {
  font-size: 0.78rem;
  color: var(--text-lt);
  margin-top: 14px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
.error-msg {
  background: #fdecea;
  border: 1px solid #f5c6cb;
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: #c62828;
  margin-top: 16px;
  display: none;
}
.success-msg {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  display: none;
}
.success-msg .check { font-size: 3rem; margin-bottom: 12px; }
.success-msg h3 { font-size: 2rem; color: #2e7d32; margin-bottom: 10px; }
.success-msg p { color: var(--text-md); font-size: 0.9rem; }
.success-msg.show { display: block; }
.error-msg.show { display: block; }

/* === PROMO PAGE === */
.promo-hero {
  background: linear-gradient(135deg, var(--deep) 0%, #0A3A28 100%);
  padding: calc(var(--nav-h) + 80px) 0 80px;
  text-align: center;
}
.promo-badge-big {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(231,111,81,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(231,111,81,0); }
}
.promo-hero h1 { color: var(--white); margin-bottom: 12px; }
.promo-hero h1 .pct {
  font-size: 1.2em;
  color: var(--gold);
}
.promo-hero p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 40px; font-size: 1.1rem; }
.promo-code-display {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 2px dashed rgba(255,255,255,0.3);
  border-radius: 12px;
  padding: 16px 36px;
  margin-bottom: 40px;
}
.promo-code-display .code {
  font-family: 'Courier New', monospace;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.2em;
}
.promo-code-display small {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.promo-notice {
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: 10px;
  padding: 20px 28px;
  max-width: 520px;
  margin: 0 auto 40px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

/* === ADMIN PAGE === */
.admin-section {
  padding-top: calc(var(--nav-h) + 40px);
  min-height: 100vh;
  background: var(--cream);
}
.admin-login {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.admin-login h2 { font-size: 2.2rem; margin-bottom: 8px; }
.admin-login p { color: var(--text-lt); font-size: 0.85rem; margin-bottom: 32px; }
.admin-dash { display: none; }
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-header h2 { font-size: 2rem; color: var(--navy); }
.admin-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  background: var(--sand);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-md);
  transition: all var(--transition);
}
.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

.bookings-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
thead th {
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 16px;
  text-align: left;
}
thead th:first-child { border-radius: 8px 0 0 0; }
thead th:last-child  { border-radius: 0 8px 0 0; }
tbody tr {
  border-bottom: 1px solid var(--sand);
  transition: background var(--transition);
}
tbody tr:hover { background: var(--cream); }
tbody td { padding: 12px 16px; color: var(--text-md); }
tbody td strong { color: var(--text-dk); }
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-badge.confirmed { background: #e8f5e9; color: #2e7d32; }
.status-badge.pending   { background: #fff8e1; color: #f57f17; }
.status-badge.cancelled { background: #fdecea; color: #c62828; }
.status-badge.promo     { background: #e3f2fd; color: #1565c0; }

.block-slot-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  max-width: 600px;
}
.block-slot-form h3 { font-size: 1.8rem; margin-bottom: 24px; }

/* === FOOTER === */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { font-size: 2rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; max-width: 260px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--teal); }
.footer-col p { font-size: 0.88rem; line-height: 1.75; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--teal); }
.footer-bottom a:hover { text-decoration: underline; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: auto; }
}
@media (max-width: 768px) {
  section { padding: 60px 0; }
  h1 { font-size: clamp(2.5rem, 8vw, 4rem); }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { height: 400px; }
  .about-img-wrap img { height: 400px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .time-slot-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.8rem; }
  .time-slot-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-lg { padding: 14px 28px; }
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-ocean  { color: var(--ocean); }
.text-coral  { color: var(--coral); }
.text-teal   { color: var(--teal); }
.mt-sm       { margin-top: 12px; }
.mt-md       { margin-top: 24px; }
.mt-lg       { margin-top: 48px; }
.mb-lg       { margin-bottom: 48px; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === QR PAGE === */
.qr-section {
  background: var(--cream);
  padding: calc(var(--nav-h) + 60px) 0 80px;
  min-height: 100vh;
  text-align: center;
}
.qr-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}
.qr-card img { margin: 24px auto; border-radius: 8px; }
.qr-card p { font-size: 0.88rem; color: var(--text-md); margin-bottom: 8px; }
