/*!***************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/tokens.css ***!
  \***************************************************************************************************************************************************************************************************************************************************************/
:root {
  --accent-blue: #2B5D8C;
  --accent-olive: #6B7F5E;
  --accent-terracotta: #ce5a39;
  --accent-terracotta-hover: #B5623F;
  --accent-terracotta-light: #f77d5c;

  --bg-cream: #F5F0E6;
  --bg-navy: #0e3a69;
  --bg-navy-deep: #042c57;
  --bg-sand: #EDE7D9;
  --bg-warm-overlay: #1B3A5C99;
  --bg-white: #FFFFFF;

  --border-light: #DCD8CB;
  --border-sand: #C8C0B0;

  --text-dark: #2D2926;
  --text-light: #F5F0E6;
  --text-muted: #9EAAB8;
  --text-secondary: #5E5954;
  --text-white: #FFFFFF;

  --font-heading: "Noto Serif", Georgia, serif;
  --font-body: "Noto Sans", system-ui, -apple-system, sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  --container-max: 1280px;
  --container-pad-mobile: 20px;
  --container-pad-desktop: 80px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --shadow-sm: 0 1px 2px rgba(14, 58, 105, 0.08);
  --shadow-md: 0 4px 16px rgba(14, 58, 105, 0.10);
  --shadow-lg: 0 18px 48px rgba(14, 58, 105, 0.18);
}

/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/base.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-cream);
  overflow-x: hidden;
}

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

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }
input:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent-terracotta);
  outline-offset: 2px;
}

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

::selection { background: var(--accent-terracotta); color: var(--text-white); }

main { display: block; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad-mobile);
}
@media (min-width: 900px) {
  .container { padding: 0 var(--container-pad-desktop); }
}

.section { padding: 48px 20px; }
@media (min-width: 900px) {
  .section { padding: 100px 80px; }
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-terracotta);
}
.eyebrow.on-dark { color: var(--accent-terracotta-light); }

.lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 64ch;
}
.lede.on-dark { color: var(--text-light); }

.h1 { font-family: var(--font-heading); font-size: clamp(36px, 7vw, 56px); line-height: 1.1; font-weight: 500; }
.h2 { font-family: var(--font-heading); font-size: clamp(28px, 4.5vw, 40px); line-height: 1.2; font-weight: 600; }
.h3 { font-family: var(--font-heading); font-size: clamp(22px, 3vw, 28px); line-height: 1.25; font-weight: 600; }
.h4 { font-family: var(--font-heading); font-size: 20px; line-height: 1.3; font-weight: 600; }

.text-light { color: var(--text-light); }
.text-white { color: var(--text-white); }
.text-muted { color: var(--text-muted); }

.section--dark { background: var(--bg-navy); color: var(--text-light); }
.section--sand { background: var(--bg-sand); }
.section--cream { background: var(--bg-cream); }

.flex { display: flex; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

[data-reveal] { will-change: transform, opacity; }
html.js-ready [data-reveal]:not(.is-visible) { opacity: 0; transform: translateY(24px); }
html.js-ready [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

.icon { display: inline-flex; align-items: center; justify-content: center; }
.icon svg { width: 1em; height: 1em; }

/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/components.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/* ─── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--accent-terracotta); color: var(--text-white); }
.btn--primary:hover { background: var(--accent-terracotta-hover); }

.btn--outline {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid var(--text-white);
}
.btn--outline:hover { background: var(--text-white); color: var(--bg-navy); }

.btn--outline-dark {
  background: transparent;
  color: var(--bg-navy);
  border: 1.5px solid var(--bg-navy);
}
.btn--outline-dark:hover { background: var(--bg-navy); color: var(--text-white); }

.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl { padding: 18px 40px; font-size: 16px; }
.btn--full { width: 100%; }

.btn[disabled] { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* ─── Trust card (Component/Trust Card f1jGN) ────────── */
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 28px 20px;
  text-align: center;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.trust-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--bg-navy);
  border-radius: 50%;
  font-size: 28px;
}
.trust-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}
.trust-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ─── Review card (Component/Review Card u0e2vw) ────── */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.review-card__stars { display: flex; gap: 2px; color: var(--accent-terracotta); font-size: 14px; }
.review-card__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dark);
  font-style: italic;
}
.review-card__author {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ─── Form input (Component/Form Input LvbFr) ────────── */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.form-field__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: var(--text-dark);
}
.form-field__input,
.form-field__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.form-field__input:focus,
.form-field__textarea:focus {
  border-color: var(--bg-navy);
  box-shadow: 0 0 0 3px rgba(14, 58, 105, 0.08);
  outline: 0;
}
.form-field__textarea { resize: vertical; min-height: 120px; font-family: var(--font-body); }
.form-field__hint { font-size: 12px; color: var(--text-secondary); }

/* ─── Step item (Component/Step Item FtU4Y) ─────────── */
.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.step__num {
  flex: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-terracotta);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  border-radius: 50%;
}
.step:first-of-type .step__num,
.step--accent .step__num { background: var(--bg-navy); }
.step__body { flex: 1 1; padding-top: 6px; }
.step__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.step__desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

/* ─── Time slot (Component/Time Slot Zl8kQ) ─────────── */
.slot {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-dark);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out), border-color 0.15s var(--ease-out);
  text-align: center;
}
.slot:hover:not(.slot--busy):not(.slot--active) {
  border-color: var(--accent-blue);
  background: var(--bg-cream);
}
.slot--active {
  background: var(--accent-blue);
  color: var(--text-white);
  border-color: var(--accent-blue);
  font-weight: 600;
}
.slot--busy {
  background: var(--bg-sand);
  border-color: var(--border-sand);
  color: var(--text-muted);
  cursor: pointer;
}

/* ─── Guest counter (Component/Guest Counter wj4wf) ── */
.counter {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.counter__label { font-size: 13px; font-weight: 500; color: var(--text-dark); }
.counter__sub { font-size: 12px; color: var(--text-secondary); }
.counter__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding: 8px 12px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
}
.counter__btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-cream);
  color: var(--bg-navy);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 600;
  transition: background 0.15s var(--ease-out), color 0.15s var(--ease-out);
}
.counter__btn:hover:not([disabled]) { background: var(--bg-navy); color: var(--text-white); }
.counter__btn[disabled] { opacity: 0.3; cursor: not-allowed; }
.counter__value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  min-width: 24px;
  text-align: center;
}

/* ─── Section headers ────────────────────────────────── */
.section-header { display: flex; flex-direction: column; gap: 16px; }
.section-header--center { align-items: center; text-align: center; }
.section-header--inverse .h2 { color: var(--text-white); }
.section-header__lede { max-width: 60ch; }

/* ─── Card / panel ──────────────────────────────────── */
.panel {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 20px;
}

/* ─── Badge ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
}
.badge--pending { background: rgba(206, 90, 57, 0.15); color: var(--accent-terracotta); }
.badge--confirmed { background: rgba(107, 127, 94, 0.18); color: var(--accent-olive); }
.badge--rejected { background: rgba(94, 89, 84, 0.15); color: var(--text-secondary); }
.badge--admin { background: var(--accent-terracotta); color: var(--text-white); padding: 3px 8px; font-size: 10px; letter-spacing: 1.5px; }

/* ─── Toast / modal ──────────────────────────────────── */
.toast-root,
.modal-root {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 58, 105, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}
.toast-root.is-open,
.modal-root.is-open { opacity: 1; pointer-events: auto; }

.modal {
  width: 100%;
  max-width: 480px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(20px);
  transition: transform 0.4s var(--ease-out);
}
.modal-root.is-open .modal { transform: none; }
.modal__title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--text-dark); }
.modal__body { font-size: 15px; line-height: 1.55; color: var(--text-secondary); }
.modal__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Sticky CTA bar (mobile) ────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  display: none;
  z-index: 50;
}

/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./styles/animations.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
/* ─── Display helpers (mobile/desktop) ───────────────── */
.d-only { display: none !important; }
.m-only { display: block !important; }
@media (min-width: 900px) {
  .d-only { display: block !important; }
  .m-only { display: none !important; }
}

/* Override for flex children */
@media (min-width: 900px) {
  .d-only.flex-d { display: flex !important; }
}

/* ─── Ken Burns (when GSAP not loaded fallback) ─── */
@keyframes ken-burns {
  0%   { transform: scale(1.02) translate3d(0, 0, 0); }
  50%  { transform: scale(1.08) translate3d(-1%, -1%, 0); }
  100% { transform: scale(1.02) translate3d(0, 0, 0); }
}
[data-ken-burns] { animation: ken-burns 30s ease-in-out infinite; }
.no-gsap [data-ken-burns] { animation: ken-burns 30s ease-in-out infinite; }

/* ─── Lazy fade-in fallback ─────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* If GSAP didn't pick up reveal targets, force fallback fade */
html.no-gsap [data-reveal] {
  animation: fade-up 0.9s var(--ease-out) both;
}

/* ─── Lucide icon sizing ────────────────────────────── */
[data-lucide] { width: 1em; height: 1em; display: inline-block; vertical-align: middle; }
.trust-card__icon [data-lucide] { width: 32px; height: 32px; }
.nav__hamburger [data-lucide] { width: 24px; height: 24px; }
.drawer__close [data-lucide] { width: 28px; height: 28px; }
.footer__contact-item [data-lucide] { width: 16px; height: 16px; }
.review-card__stars [data-lucide] { width: 16px; height: 16px; fill: currentColor; }

/* ─── How section image grid fix ─────────────────────── */
@media (max-width: 899.98px) {
  .how-imgs .how-img-1, .how-imgs .how-img-2 { display: none; }
}
@media (min-width: 900px) {
  .how-imgs { display: grid; grid-template-rows: 1fr 200px; grid-gap: 24px; gap: 24px; min-height: 560px; }
  .how-imgs .how-img--mobile { display: none; }
}

/* ─── Booking note ───────────────────────────────────── */
.book-note { color: var(--text-secondary); }

/* ─── No-scroll body when modal/drawer open ───────────── */
body.no-scroll { overflow: hidden; }

/* ─── Skeleton/loading state ─────────────────────────── */
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
.skeleton {
  background: linear-gradient(90deg, var(--bg-sand) 25%, var(--bg-cream) 50%, var(--bg-sand) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
  border-radius: var(--radius-sm);
}

/* ─── View Transitions ───────────────────────────────── */
@view-transition { navigation: auto; }
::view-transition-old(root) {
  animation: vt-fade-out 240ms var(--ease-in-out) both;
}
::view-transition-new(root) {
  animation: vt-fade-in 360ms var(--ease-in-out) both;
}
@keyframes vt-fade-out { to { opacity: 0; transform: translateY(-12px); } }
@keyframes vt-fade-in  { from { opacity: 0; transform: translateY(20px); } }

