/* Recreated site.css with 4-image carousel and shared theme */
:root{
  /* Light theme with sage + terracotta accents */
  --bg: #f7f3ec;
  --bg2:#f1e7dd;
  --card:#ffffff;
  --text:#202521;
  --muted:#7b8170;
  --line:rgba(32,36,30,.10);
  --accent:#a5ab87;      /* sage */
  --accent2:#d68c5f;     /* terracotta */
  --olive:#5d6b2e;      /* olive green for primary buttons */
  --shadow: 0 18px 60px rgba(19,42,30,.18);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
[hidden]{ display:none !important; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 78% -12%, rgba(213,140,95,.26), transparent 60%),
    radial-gradient(900px 520px at 8% 18%, rgba(165,171,135,.55), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  display:flex;
  flex-direction:column;
}
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.skip-link{
  position:absolute;
  left:-999px; top:10px;
  background:#fff; color:#000;
  padding:10px 12px;
  border-radius:10px;
  z-index:1000;
}
.skip-link:focus{ left:10px; }

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: #265f34;
  border-bottom:1px solid rgba(0,0,0,.3);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled{
  border-bottom-color: rgba(0,0,0,.4);
  background: rgb(38 95 52 / 90%);
  box-shadow: 0 22px 50px rgba(0,0,0,.6);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none !important;
}
.brand-logo{
  display:block;
  height:40px;
  width:auto;
  object-fit:contain;
}
.header-right{
  display:flex;
  align-items:center;
  gap:18px;
  margin-left:auto;
}
.nav{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav-link{
  color: rgba(246,248,245,.92);
  font-weight:550;
  text-decoration:none !important;
  padding:8px 10px;
  border-radius:999px;
}
.nav-link:hover{
  background: rgba(246,248,245,.12);
}
.header-actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.icon-btn{
  border:1px solid rgba(255,255,255,.26);
  background: rgba(0,0,0,.4);
  color: rgba(248,250,248,.96);
  padding:10px 12px;
  border-radius:999px;
  cursor:pointer;
}
.icon-btn:hover{ background: rgba(243,245,242,.07); }

.menu-toggle{
  padding: 6px 8px;
  border-radius:999px;
  background:#f0e1c4;
  border-color:#ffffff;

}
.menu-toggle-icon{
  display:block;
  width:22px;
  height:22px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border: 1px solid var(--line);
  font-weight:650;
  letter-spacing:.01em;
  text-decoration:none !important;
  cursor:pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{
  color:#f6f5f2;
  border-color: #e35336;
  background: #e35336;
}
.btn-primary:hover{ filter: brightness(1.08); }
.btn-ghost{
  background: rgba(255,255,255,.70);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.90);
}
.btn-link{
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}
.btn-link:hover{ text-decoration: none; }

.hide-sm{ display:inline-flex; }
.show-sm{ display:none; }
@media (max-width: 860px){
  .nav{ display:none; }
  .hide-sm{ display:none; }
  .show-sm{ display:inline-flex; }
}

/* Overlays */
.overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  z-index:60;
}
.modal{
  position:fixed;
  inset:0;
  z-index:75;
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:none;
}
.modal-card {
  width: min(860px, 95vw);
  max-width: 95vw;
  max-height: 90vh;  /* ← this was commented out, add it back */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(160deg, rgba(28,28,32,.96), rgba(12,12,14,.94));
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06) inset;
  padding: 20px 20px 18px;
  pointer-events: auto;
}
.modal-card .modal-title,
.modal-card .eyebrow{
  color:#fff;
}
.modal-card .field label{
  color: rgba(255,255,255,.92);
}
.modal-card .muted{
  color: rgba(255,255,255,.78);
}
.modal-card .muted a{
  color: rgba(255,255,255,.9);
}
.modal-card .muted a:hover{
  color:#fff;
}
.modal-card .booking-as{
  color: rgba(255,255,255,.85);
}
.modal-card .booking-as a{
  color: rgba(255,255,255,.95);
}
.modal-card .btn-link{
  color: rgba(255,255,255,.9);
}
.modal-card .btn-link:hover{
  color:#fff;
}
.modal-card .field input,
.modal-card .field textarea{
  background: rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.2);
  color:#fff;
}
.modal-card .field input::placeholder,
.modal-card .field textarea::placeholder{
  color: rgba(255,255,255,.5);
}
.modal-card .field input:focus,
.modal-card .field textarea:focus{
  border-color: rgba(165,171,135,.7);
  box-shadow: 0 0 0 3px rgba(165,171,135,.25);
}
.modal-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.modal-title{
  margin:4px 0 0;
}
.booking-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.booking-layout{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
.booking-column{
  min-width:0;
}
.calendar-wrap{
  margin-top:6px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.35);
  overflow:hidden;
}
.calendar-header{
  padding:10px 12px;
  font-weight:800;
  letter-spacing:.02em;
  text-align:center;
  border-bottom:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
}
.calendar-weekdays{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  padding:6px 8px 0;
  gap:2px;
}
.calendar-wd{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  color: rgba(255,255,255,.65);
  text-align:center;
  padding:4px 0;
}
.calendar-grid{
  display:grid;
  grid-template-columns: repeat(7, 1fr);
  gap:4px;
  padding:6px 8px 10px;
}
.calendar-cell{
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid transparent;
}
.calendar-cell--empty{
  background:transparent;
  pointer-events:none;
}
.calendar-day{
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.95);
  font-weight:650;
  font-size:13px;
  cursor:pointer;
  border:1px solid transparent;
  padding:0;
  font-family:inherit;
}
.calendar-day:hover{
  background: rgba(255,255,255,.22);
}
.calendar-day--today{
  border-color: rgba(165,171,135,.7);
}
.calendar-day.is-selected{
  border-color: rgba(165,171,135,.85);
  background: rgba(165,171,135,.35);
  color:#fff;
}
.slot-grid{
  margin-top:6px;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.pill{
  min-width:72px;
  padding:7px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.95);
  cursor:pointer;
  text-align:left;
}
.pill-top{
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  color: rgba(255,255,255,.7);
}
.pill-main{
  font-size:15px;
  font-weight:700;
}
.pill-sub{
  font-size:11px;
  color: rgba(255,255,255,.65);
}
.pill.is-selected{
  border-color: rgba(165,171,135,.8);
  background: rgba(165,171,135,.4);
  color:#fff;
}
.pill.is-booked,
.pill:disabled{
  opacity:.5;
  cursor:not-allowed;
  color: rgba(255,255,255,.5);
}
.slot-hint{ margin-top:6px; font-size:13px; color: rgba(255,255,255,.75); }

/* Booking popup: scrollable and larger time slots on mobile */
@media (max-width: 980px){
  .modal-card{
    max-height: 90vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .slot-grid{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .slot-grid .pill{
    min-width: 0;
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    font-size: 1rem;
    touch-action: manipulation;
  }
  .slot-grid .pill .pill-main{
    font-size: 16px;
  }
  .slot-grid .pill .pill-sub{
    font-size: 12px;
  }
}

.drawer{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,.90);
  border-left:none;
  z-index:70;
  box-shadow:none;
  display:flex;
  flex-direction:column;
}
.drawer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 24px 8px;
  border-bottom:none;
  color:#f9f7f2;
}
.drawer-body{
  padding:24px 24px 32px;
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#f9f7f2;
}
.drawer-link{
  padding:12px 12px;
  border-radius:14px;
  text-decoration:none !important;
  border: 1px solid transparent;
  color:#f9f7f2;
}
.drawer-link:hover{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
}
.drawer-cta{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.search{
  position:fixed;
  inset:0;
  z-index:80;
  background: rgba(246,242,234,.96);
  backdrop-filter: blur(14px);
}
.search-inner{ padding:28px 0; }
.search-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}
.search-form input{
  width:100%;
  padding:16px 16px;
  border-radius:16px;
  border:1px solid rgba(33,40,36,.14);
  background:#ffffff;
  color: var(--text);
  outline:none;
  font-size: 16px;
}
.search-form input:focus{
  border-color: rgba(106,148,115,.55);
  box-shadow: 0 0 0 4px rgba(160,200,143,.20);
}
.search-hint{ color: var(--muted); }
kbd{
  border:1px solid rgba(33,40,36,.16);
  background:#ffffff;
  padding:2px 6px;
  border-radius:8px;
}

/* Carousel lightbox */
.carousel-lightbox{
  position:fixed;
  inset:0;
  z-index:90;
  display:flex;
  align-items:center;
  justify-content:center;
}
.carousel-lightbox[hidden]{
  display:none;
}
.carousel-lightbox__backdrop{
  position:absolute;
  inset:0;
  margin:0;
  padding:0;
  border:0;
  background: rgba(0,0,0,.78);
  cursor:pointer;
}
.carousel-lightbox__inner{
  position:relative;
  z-index:1;
  max-width:min(960px, 92vw);
  max-height:min(80vh, 640px);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  background:#000;
}
.carousel-lightbox__inner img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.carousel-lightbox__close{
  position:absolute;
  top:10px;
  right:10px;
}

/* Flash messages */
.flash-wrap{ padding: 14px 0 0; }
.flash{
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(33,40,36,.12);
  background:#ffffff;
  margin-bottom:10px;
}
.flash-success{
  border-color: rgba(160,200,143,.40);
  background: rgba(160,200,143,.14);
}
.flash-error{
  border-color: rgba(248,113,113,.25);
  background: rgba(248,113,113,.10);
}

/* Sections */
.hero{
  padding: 54px 0 18px;
}
.hero-with-bg{
  position: relative;
  padding: 72px 0 40px;
  color: #f9f7f2;
  background-image: linear-gradient(120deg, rgba(3, 10, 6, 0.10), rgba(0, 0, 0, 0.45)), url("../images/gallery/PF\ 2.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.hero-with-bg .hero-copy .eyebrow,
.hero-with-bg .hero-copy .lead,
.hero-with-bg .hero-copy .hero-meta,
.hero-with-bg .hero-copy h1{
  color: #f9f7f2;
}
.hero-with-bg .dot{
  background: rgba(249,247,242,.68);
}
.hero-with-bg .inline-link{
  color:#f9f7f2;
}

/* Page hero sections (About, Contact) */
.page-hero{
  position: relative;
  padding: 72px 0 56px;
  color: #f9f7f2;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-hero-about{
  background-image: linear-gradient(120deg, rgba(3, 10, 6, 0.55), rgba(0, 0, 0, 0.6)), url("../images/gallery/contact-us-hero-section.jpeg");
}
.page-hero-contact{
  background-image: linear-gradient(120deg, rgba(3, 10, 6, 0.2), rgba(0, 0, 0, 0.6)), url("../images/gallery/gallery-11.jpeg");
}
.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead,
.page-hero .muted{
  color: #f9f7f2;
}
.page-hero .muted{
  opacity: 0.92;
}
/* About: feature panel on hero - keep readable */
.page-hero-about .feature-panel{
  background: hsl(135deg 43% 26% / 40%);
  /* border-color: rgba(255, 255, 255, 0.5); */
  color: var(--text);
}
.page-hero-about .feature-panel .kpi-number,
.page-hero-about .feature-panel .kpi-label{
  color: #fff;
}
.page-hero-about .feature-panel .kpi-label{
  color: #fff;
}
/* Contact: only intro column gets light text; form card stays white */
.page-hero-contact .contact-grid > div:first-child .eyebrow,
.page-hero-contact .contact-grid > div:first-child h1,
.page-hero-contact .contact-grid > div:first-child .lead,
.page-hero-contact .contact-grid > div:first-child .muted,
.page-hero-contact .contact-grid > div:first-child .contact-line,
.page-hero-contact .contact-grid > div:first-child strong{
  color: #f9f7f2;
}
.page-hero-contact .contact-grid > div:first-child .muted{
  opacity: 0.92;
}
.page-hero-contact .contact-card{
  background: linear-gradient(160deg, rgba(28,28,32,.96), rgba(12,12,14,.94));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.page-hero-contact .contact-card .field label,
.page-hero-contact .contact-card h2,
.page-hero-contact .contact-card .muted{
  color: rgba(255,255,255,.92);
}
.page-hero-contact .contact-card .muted{
  color: rgba(255,255,255,.78);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px;
  align-items: stretch;
}
.eyebrow{
  color: rgba(32,36,30,.70);
  letter-spacing:.16em;
  font-weight:700;
  text-transform:uppercase;
  font-size: 12px;
}
h1{
  margin: 10px 0 12px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.06;
  letter-spacing: .01em;
}
h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: .08em;
}
.lead{
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 12px;
}

.lead-new{
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 12px;
}
.muted{
  color: var(--muted);
  line-height: 1.7;
  color: #fff;
}

.muted-new{
  color: var(--muted);
  line-height: 1.7;
  color: #fff;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}
.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  margin-top: 18px;
  color: var(--muted);
}
.inline-link{ color: rgba(32,36,30,.88); }
.dot{
  width:4px; height:4px; border-radius:99px;
  background: rgba(243,245,242,.35);
}
.hero-art {
  position: relative;
  border-radius: var(--radius2);
  border: 1px solid rgba(33, 40, 36, .10);
  overflow: hidden;
  background:
    /* radial-gradient(900px 420px at 30% 10%, rgba(160,200,143,.24), transparent 62%),
    radial-gradient(700px 380px at 80% 60%, rgba(106,148,115,.18), transparent 58%),
    linear-gradient(135deg, rgba(255,255,255,0.55), rgba(246,242,234,0.45)), */
    url('../images/gallery/hero-section.jpeg');
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  min-height: 500px;
}
.art-gradient{
  position:absolute; inset:-40px;
  /* background: radial-gradient(700px 260px at 60% 20%, rgba(167,243,160,.24), transparent 55%); */
  /* filter: blur(12px); */
}
.art-card{
  position:absolute;
  left: 18px; right: 18px; bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(33,40,36,.10);
  /* background: rgba(255,255,255,.88); */
  padding: 16px 16px;
  /* backdrop-filter: blur(12px); */

}
.art-badge{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  background: #f9f7f2;
  border:1px solid rgba(160,200,143,.40);
  color: rgba(12, 12, 14, .94);
  font-weight:700;
  font-size:12px;
}
.art-title{
  margin-top:10px;
  font-weight:800;
  letter-spacing:.01em;
  font-size: 18px;
  color: #fff;
}
.art-subtitle{ margin-top:6px; color: var(--muted); 
color: #fff;}

.section{
  padding: 56px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.90), rgba(246,242,234,.90));
  border-top:1px solid rgba(33,40,36,.06);
  border-bottom:1px solid rgba(33,40,36,.06);
}
.two-col{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items:start;
}
.feature-panel{
  border-radius: var(--radius2);
  /* border: 1px solid rgba(33,40,36,.10); */
  background: hsl(135deg 43% 26% / 40%);
  padding: 18px;
  display:grid;
  gap: 12px;
}
/* .feature-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 14px 14px;
} */
.feature-kpi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 14px 14px;
  background: none;   /* ← removes background completely */
  border: none;       /* ← removes border too */
}
.kpi-number{
  font-size: 28px;
  font-weight: 900;
  padding: 15px;
}
.kpi-label{ color: var(--muted); font-weight:650; }

.split{
  display:grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items:center;
}
.split.reverse{
  grid-template-columns: 1.05fr .95fr;
}
.split.reverse .split-media{ order:2; }
.split.reverse .split-copy{ order:1; }
.split-copy-new{
  border-radius: var(--radius2);
  border: 1px solid rgba(33, 40, 36, .10);
  overflow: hidden;
  min-height: 320px;
  background: #265f34;
  padding: 24px;
}
.split-media{
  border-radius: var(--radius2);
  border: 1px solid rgba(33,40,36,.10);
  overflow:hidden;
  min-height: 320px;
  height: 100%;
  background:#ffffff;
}
.media-placeholder{
  height:100%;
  min-height:320px;
  background: url('../images/gallery/gallery-14.jpeg') no-repeat center / cover;;
    background-size: cover;
    background-position: center;
}

.section-restaurant {
  background: #265f34;
}


.media-placeholder-new{
  height:100%;
  min-height:320px;
  background: url('../images/gallery/PF\ 4.png') no-repeat center / cover;
  background-size: cover;
  background-position: center;
}
.media-padel{ filter: saturate(1.05); }
.media-movement{ filter: hue-rotate(10deg); }
.media-restaurant{ filter: hue-rotate(-8deg); }
.split-copy .row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 16px;
}

/* Carousel */
.gallery-header{
  margin-bottom:18px;
  max-width:520px;
}
.gallery-header h2{
  margin-bottom:6px;
}
.carousel{
  display:flex;
  align-items:center;
  gap:12px;
}
.carousel-viewport{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius2);
  flex:1 1 auto;
  background:transparent;
  padding:0 6px;
}
.carousel-track{
  display:flex;
  gap:12px;
  transition: transform .45s ease-out;
  will-change: transform;
}
.carousel-slide{
  min-width:25%;
  flex:0 0 25%;
  padding:0;
  margin:0;
  border:0;
  background:none;
  cursor:pointer;
}
.carousel-slide img{
  display:block;
  width:100%;
  height: clamp(260px, 42vh, 420px);
  object-fit:cover;
}
@media (max-width: 768px){
  .carousel-slide{
    min-width:100%;
    flex:0 0 100%;
  }
}
.carousel-nav{
  border:0;
  background: rgba(0,0,0,.70);
  color:#f7f7f5;
  width:36px;
  height:36px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-shrink:0;
}
.carousel-nav:hover{
  background: rgba(0,0,0,.86);
}
.carousel-dots{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:6px;
  margin-top:12px;
}
.carousel-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  border:none;
  background: rgba(255,255,255,.38);
  opacity:.7;
  cursor:pointer;
}
.carousel-dot.is-active{
  width:16px;
  background:#ffffff;
  opacity:1;
}

.cta-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  padding: 22px 22px;
  border-radius: var(--radius2);
  border:1px solid rgba(106,148,115,.30);
  /* background: linear-gradient(135deg, rgba(160,200,143,.22), rgba(246,242,234,1)); */
  background: linear-gradient(160deg, rgba(28, 28, 32, .96), rgba(12, 12, 14, .94));
  ;
}
.cta-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.book-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  height: 340px;
}

.book-media {
  border-radius: var(--radius2);
  overflow: hidden;
  height: 340px; /* ← controls rectangle height */
}

.book-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.book-card{
  border-radius: var(--radius2);
  border:1px solid rgba(33,40,36,.10);
  background:#ffffff;
  padding: 18px;
}
.book-card.wide{
  grid-column: 1 / -1;
}
.book-card.wide .book-title,
.book-card.wide .book-subtitle{
  color: rgba(255,255,255,.9);
}
.book-card.wide{
  background: linear-gradient(160deg, rgba(28,28,32,.96), rgba(12,12,14,.94));
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.book-card.wide .subscribe input{
  background: rgba(0,0,0,.4);
  border-color: rgba(255,255,255,.2);
  color:#fff;
}
.book-card.wide .subscribe input::placeholder{
  color: rgba(255,255,255,.5);
}
.book-card.wide .subscribe input:focus{
  border-color: rgba(165,171,135,.7);
  box-shadow: 0 0 0 4px rgba(165,171,135,.25);
}
.book-title{
  letter-spacing:.14em;
  font-weight:850;
  font-size: 12px;
  color: rgba(33,40,36,.70);
}
.book-subtitle{
  margin-top:8px;
  font-size: 18px;
  font-weight: 750;
}
.subscribe{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 12px;
}
.subscribe input{
  flex: 1 1 240px;
  padding: 12px 12px;
  border-radius: 16px;
  border:1px solid rgba(33,40,36,.14);
  background:#ffffff;
  color: var(--text);
}
.subscribe input:focus{
  outline:none;
  border-color: rgba(106,148,115,.55);
  box-shadow: 0 0 0 4px rgba(160,200,143,.22);
}

/* Layout helpers: ensure footer sticks to bottom on short pages */
main{
  flex: 1 0 auto;
}

/* Footer */
.site-footer{
  padding: 44px 0 26px;
  border-top: 1px solid rgba(0,0,0,.08);
  background:#265f34;
  color:#202521;
  flex-shrink:0;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}
.footer-title{
  font-weight:900;
  letter-spacing:.02em;
  margin-bottom: 10px;
  color:#f7f3ec;
}
.footer-copy{
  color: rgb(247 243 236);
  line-height: 1.7;
  margin: 0 0 10px;
}
.footer-links{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  color: rgb(247 243 236);
}
.footer-link{ color: rgb(247 243 236); }
.footer-bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgb(247 243 236);
  display:flex;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  color: rgb(247 243 236);
}
.footer-bottom-links{
  display:flex;
  gap: 14px;
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-art{ min-height: 280px; }
  .two-col{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .split.reverse .split-media{ order:0; }
  .cta-card{ flex-direction: column; align-items:flex-start; }
  .footer-grid{ grid-template-columns: 1fr; }
  .booking-layout{ grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}

/* Contact */
.contact-hero{
  padding-top: 72px;
}
.contact-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items:flex-start;
}
.contact-line{
  margin: 0 0 10px;
}
.contact-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(160deg, rgba(28,28,32,.96), rgba(12,12,14,.94));
  padding: 20px 20px 18px;
  box-shadow: 0 24px 64px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.06) inset;
}
.contact-card .eyebrow,
.contact-card h1,
.contact-card h2{
  color:#fff;
}
.contact-card .muted{
  color: rgba(255,255,255,.78);
}
.contact-card .muted a{
  color: rgba(255,255,255,.9);
}
.contact-card .muted a:hover{
  color:#fff;
}
.contact-card .field label{
  color: rgba(255,255,255,.92);
}
.contact-card .field input,
.contact-card .field textarea{
  background: rgba(0,0,0,.4);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  border-radius: 14px;
  padding: 10px 11px;
  resize: vertical;
  min-height: 0;
}
.contact-card .field input::placeholder,
.contact-card .field textarea::placeholder{
  color: rgba(255,255,255,.5);
}
.contact-card .field input:focus,
.contact-card .field textarea:focus{
  outline:none;
  border-color: rgba(165,171,135,.7);
  box-shadow: 0 0 0 3px rgba(165,171,135,.25);
}
.contact-form{
  margin-top: 14px;
  display:flex;
  flex-direction:column;
  gap: 14px;
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.field{
  display:flex;
  flex-direction:column;
  gap: 6px;
}
.field label{
  font-size: 13px;
  letter-spacing:.04em;
  text-transform:uppercase;
  color: rgba(243,245,242,.76);
  font-weight:700;
}
.field input,
.field textarea{
  border-radius: 14px;
  border:1px solid rgba(33,40,36,.14);
  padding: 10px 11px;
  background:#ffffff;
  color: var(--text);
  resize: vertical;
  min-height: 0;
}
.field input:focus,
.field textarea:focus{
  outline:none;
  border-color: rgba(106,148,115,.55);
  box-shadow: 0 0 0 3px rgba(160,200,143,.22);
}

/* Scroll reveal animations */
.reveal{
  opacity:0;
  transform: translateY(26px);
  transition:
    opacity .7s ease-out,
    transform .7s ease-out;
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  transform: translateY(0);
}
.reveal-delay-1{ transition-delay:.12s; }
.reveal-delay-2{ transition-delay:.22s; }
.reveal-delay-3{ transition-delay:.32s; }

@media (max-width: 980px){
  .contact-grid{
    grid-template-columns: 1fr;
  }
  .form-grid{
    grid-template-columns: 1fr;
  }
}



:root {
      --forest:  #1a3320;
      --forest2: #2d5a3d;
      --leaf:    #4a8c5c;
      --sage:    #a8c5a0;
      --cream:   #f0ece3;
      --white:   #ffffff;
      --text:    #1a1a18;
      --muted:   #6b7c6e;
      --border:  rgba(74,140,92,0.18);
    }
 
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      min-height: 100vh;
    }
 
    /* ── HEADER ── */
    .header {
      background: var(--forest);
      padding: 2.5rem 2.5rem 2rem;
      position: relative;
      overflow: hidden;
    }
    .header::before {
      content: '';
      position: absolute;
      top: -60px; right: 100px;
      width: 260px; height: 260px;
      border-radius: 50%;
      border: 55px solid rgba(74,140,92,0.18);
      pointer-events: none;
    }
    .header::after {
      content: '';
      position: absolute;
      top: -30px; right: -30px;
      width: 200px; height: 200px;
      border-radius: 50%;
      border: 40px solid rgba(74,140,92,0.13);
      pointer-events: none;
    }
    .header-inner {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .eyebrow {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--sage);
      margin-bottom: 0.4rem;
    }
    .page-title {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem;
      font-weight: 600;
      color: #f5f0e8;
      line-height: 1.1;
      margin-bottom: 0.4rem;
    }
    .user-info {
      font-size: 14px;
      font-weight: 300;
      color: var(--sage);
    }
    .user-info span {
      margin: 0 0.4rem;
      opacity: 0.6;
    }
    .btn-signout {
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: #f5f0e8;
      background: transparent;
      border: 1.5px solid rgba(245,240,232,0.45);
      border-radius: 8px;
      padding: 0.55rem 1.4rem;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .btn-signout:hover {
      background: rgba(245,240,232,0.1);
      border-color: rgba(245,240,232,0.7);
    }
 
    /* ── BODY ── */
    .body {
      padding: 2rem 2.5rem;
      max-width: 1100px;
    }
 
    /* ── STATS ── */
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 2.5rem;
    }
    .stat-card {
      background: var(--white);
      border-radius: 14px;
      border: 0.5px solid var(--border);
      padding: 1.2rem 1.4rem 1.3rem;
    }
    .stat-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 0.5rem;
    }
    .stat-value {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1;
    }
 
    /* ── SECTION LABEL ── */
    .section-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.1rem;
      padding-bottom: 0.6rem;
      border-bottom: 1px solid rgba(74,140,92,0.15);
    }
 
    /* ── BOOKING CARDS ── */
    .cards { display: flex; flex-direction: column; gap: 10px; }
 
    .card {
      background: var(--white);
      border-radius: 14px;
      border: 0.5px solid var(--border);
      padding: 1rem 1.4rem;
      display: flex;
      align-items: center;
      gap: 1.1rem;
    }
 
    .date-block {
      background: var(--forest);
      border-radius: 10px;
      padding: 0.5rem 0.75rem;
      text-align: center;
      min-width: 58px;
      flex-shrink: 0;
    }
    .date-month {
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sage);
      display: block;
      margin-bottom: 1px;
    }
    .date-day {
      font-family: 'Playfair Display', serif;
      font-size: 1.65rem;
      font-weight: 600;
      color: #f5f0e8;
      line-height: 1;
      display: block;
    }
 
    .card-info { flex: 1; min-width: 0; }
    .card-time {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 3px;
    }
    .card-meta {
      font-size: 13px;
      font-weight: 300;
      color: var(--muted);
    }
    .card-meta span { margin: 0 0.3rem; opacity: 0.5; }
 
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 500;
      padding: 0.35rem 0.85rem;
      border-radius: 20px;
      white-space: nowrap;
      flex-shrink: 0;
    }
    .badge::before {
      content: '';
      width: 7px; height: 7px;
      border-radius: 50%;
      flex-shrink: 0;
    }
    .badge-verified {
      background: #e6f4ea;
      color: #2e7d32;
    }
    .badge-verified::before { background: #43a047; }
    .badge-pending {
      background: #fff8e1;
      color: #a56800;
    }
    .badge-pending::before { background: #f59e0b; }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 600px) {
      .header { padding: 1.75rem 1.25rem 1.5rem; }
      .body { padding: 1.5rem 1.25rem; }
      .stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
      .stat-card { padding: 0.9rem 0.9rem 1rem; }
      .page-title { font-size: 1.75rem; }
      .card { padding: 0.85rem 1rem; gap: 0.85rem; }
    }

  

  /* Payment buttons */
.pay-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px; font-size: 14px;
  font-weight: 500; cursor: pointer; background: #fff;
  transition: background 0.15s;
}
.pay-btn--jc { border: 1.5px solid #C8102E; color: #C8102E; }
.pay-btn--jc:hover { background: #fff0f2; }
.pay-btn--ep { border: 1.5px solid #5B2D8E; color: #5B2D8E; }
.pay-btn--ep:hover { background: #f3eeff; }

/* Overlay */
.pay-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.pay-overlay.open { opacity: 1; pointer-events: all; }

/* Modal */
.pay-modal {
  background: #fff; border-radius: 12px; padding: 1.5rem;
  width: 100%; max-width: 380px; position: relative;
  transform: translateY(12px); transition: transform 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.pay-overlay.open .pay-modal { transform: translateY(0); }

.pay-modal__close {
  position: absolute; top: 12px; right: 14px;
  background: none; border: none; font-size: 22px;
  cursor: pointer; color: #888; line-height: 1;
}
.pay-modal__close:hover { color: #111; }

.pay-modal__header { display: flex; align-items: center; gap: 12px; margin-bottom: 1.25rem; }

.pay-modal__logo {
  width: 44px; height: 44px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: #fff;
}
.pay-modal__logo--jc { background: #C8102E; }
.pay-modal__logo--ep { background: #5B2D8E; }

.pay-modal__title { font-size: 17px; font-weight: 600; margin: 0; }
.pay-modal__sub { font-size: 13px; color: #888; margin: 2px 0 0; }

.pay-modal__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #e5e5e5;
  font-size: 14px;
}
.pay-modal__row:last-of-type { border-bottom: none; }
.pay-modal__label { color: #888; }
.pay-modal__value { font-weight: 500; color: #111; display: flex; align-items: center; gap: 8px; }

.pay-copy-btn {
  background: #f4f4f4; border: 1px solid #e0e0e0;
  border-radius: 6px; padding: 2px 10px; font-size: 12px;
  cursor: pointer; color: #555;
}
.pay-copy-btn:hover { background: #e8e8e8; }

.pay-modal__note {
  margin-top: 1.25rem; padding: 10px 14px;
  background: #f9f9f9; border-radius: 8px;
  font-size: 13px; color: #666; line-height: 1.5;
}

.pay-modal__actions { display: flex; gap: 10px; margin-top: 1.25rem; }

.pay-btn-action {
  flex: 1; padding: 10px; border-radius: 8px;
  font-size: 14px; font-weight: 500; cursor: pointer;
  text-align: center; text-decoration: none; border: none; display: block;
}
.pay-btn-action--wa { background: #25D366; color: #fff; }
.pay-btn-action--wa:hover { background: #1ebe5d; }
.pay-btn-action--close {
  background: #f4f4f4; color: #333;
  border: 1px solid #e0e0e0;
}
.pay-btn-action--close:hover { background: #e8e8e8; }

.calendar-day--disabled {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}