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

:root {
  --peach:        #FFAB8C;
  --peach-light:  #FFD4C2;
  --peach-pale:   #FFF0EA;
  --peach-deep:   #E8714A;
  --peach-dark:   #C05530;
  --cream:        #FFFAF7;
  --warm-white:   #FFFFFF;
  --text:         #2C1A12;
  --text-mid:     #6B4535;
  --text-soft:    #A3775F;
  --border:       rgba(232,113,74,.15);
  --shadow-sm:    0 4px 16px rgba(192,85,48,.08);
  --shadow-md:    0 10px 36px rgba(192,85,48,.13);
  --shadow-lg:    0 24px 64px rgba(192,85,48,.18);
  --radius-sm:    .75rem;
  --radius-md:    1.25rem;
  --radius-lg:    2rem;
  --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
a { text-decoration: none; color: inherit; }

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,250,247,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  transition: background .3s, box-shadow .3s;
}

.navbar.scrolled {
  background: rgba(255, 212, 195, 0.98);
  box-shadow: 0 2px 20px rgba(192,85,48,.1);
}

.navbar > .container { display: flex; align-items: center; width: 100%; }

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--peach-dark) !important;
  line-height: 1.15;
  letter-spacing: .01em;
}

.brand-sub {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .68rem;
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.desktop-nav { gap: .25rem; }

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid) !important;
  padding: .5rem .85rem !important;
  border-radius: 999px;
  transition: all .2s ease;
}

.nav-link:hover { color: var(--peach-deep) !important; background: var(--peach-pale); }
.nav-link.active { color: var(--peach-deep) !important; background: var(--peach-pale); font-weight: 600; }

/* ── HAMBURGER ───────────────────────────────────── */
.mobile-menu-toggle {
  border: none;
  background: transparent;
  padding: .4rem;
  display: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 950;
  position: relative;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--peach-deep);
  margin: 5px 0;
  border-radius: 99px;
  transition: transform .3s ease, opacity .3s ease;
  transform-origin: center;
}

/* Animate to X when open */
.mobile-menu-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE NAV – slides from LEFT ───────────────── */
.mobile-backdrop {
  position: fixed; inset: 0;
  background: rgba(44,26,18,.5);
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 1000;
}
.mobile-backdrop.show { opacity: 1; visibility: visible; }

.custom-mobile-nav {
  position: fixed;
  top: 0;
  left: -320px;           /* starts off-screen to the LEFT */
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--warm-white);
  z-index: 1010;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 40px rgba(0,0,0,.12);
  transition: left .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.custom-mobile-nav.show { left: 0; }

/* Logo area at top of mobile nav */
.mobile-nav-header {
  background: linear-gradient(135deg, var(--peach-pale), #ffddd0);
  padding: 2rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--peach-dark);
  line-height: 1.2;
  margin-bottom: .2rem;
}

.mobile-nav-sub {
  font-size: .7rem;
  color: var(--text-soft);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mobile-nav-links {
  flex: 1;
  padding: 1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.mobile-nav-links .nav-link {
  display: block;
  padding: .85rem 1rem !important;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 500;
  color: var(--text) !important;
  transition: background .2s, color .2s;
}

.mobile-nav-links .nav-link:hover,
.mobile-nav-links .nav-link.active {
  background: var(--peach-pale);
  color: var(--peach-deep) !important;
}

.mobile-nav-footer {
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ── BUTTONS ─────────────────────────────────────── */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--peach), var(--peach-deep));
  color: #fff !important;
  border: none;
  padding: .85rem 1.75rem;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(232,113,74,.35);
  transition: transform .2s, box-shadow .2s;
}

.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,113,74,.45);
  color: #fff !important;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--peach);
  color: var(--peach-deep) !important;
  background: transparent;
  padding: .82rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
}

.btn-outline-brand:hover { background: var(--peach-pale); }

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,.7);
  color: #fff !important;
  background: rgba(255,255,255,.08);
  padding: .82rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .2s;
  backdrop-filter: blur(4px);
}

.btn-outline-light:hover { background: rgba(255,255,255,.18); border-color: #fff; }

/* ── HERO SLIDER ─────────────────────────────────── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .9s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.slide.active .slide-img { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(20,10,6,.65) 0%,
    rgba(20,10,6,.35) 60%,
    rgba(20,10,6,.1) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 0 5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 780px;
  margin-left: calc((100vw - min(1180px, 100vw)) / 2 + 1.5rem);
  padding-bottom: 7rem;
}

.slide-tag {
  display: inline-block;
  background: rgba(255,171,140,.25);
  border: 1px solid rgba(255,171,140,.5);
  color: var(--peach-light);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
  width: fit-content;
}

.slide-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.slide-content h1 em {
  font-style: italic;
  color: var(--peach-light);
}

.slide-content p {
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.82);
  margin-bottom: 1.75rem;
  max-width: 520px;
  font-weight: 300;
}

.slide-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background .2s;
  z-index: 10;
  display: flex; align-items: center; justify-content: center;
}

.slider-btn:hover { background: rgba(255,171,140,.3); border-color: var(--peach-light); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
  z-index: 10;
}

.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.dot.active {
  background: var(--peach-light);
  transform: scale(1.35);
}

/* ── IMAGE SERVICE GRID ───────────────────────────── */
.img-service-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}

.img-service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.img-service-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}

.img-service-card:hover .img-service-img { transform: scale(1.05); }

.img-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,6,.65) 0%, rgba(20,10,6,.05) 55%);
}

.img-service-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1rem .85rem .85rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
}

/* ── WHY CARD – image top ────────────────────────── */
.why-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
  height: 100%;
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.why-card-img {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}

.why-card:hover .why-card-img { transform: scale(1.04); }

.why-card-body { padding: 1.5rem; }

.why-card-body h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}

.why-card-body p { color: var(--text-soft); font-size: .93rem; font-weight: 300; margin: 0; }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 5rem 0; }

.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: .75rem;
}

.section-title { text-align: center; margin-bottom: 3rem; }

.section-title h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
}

.section-title p {
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
  font-size: 1rem;
}

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #FFF0EA 0%, #FFD4C2 50%, #FFBBA0 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  top: -80px; right: -60px;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  bottom: -50px; left: -30px;
}

.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}

.cta-band p { color: var(--text-mid); margin-bottom: 2rem; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-band .btn-brand { position: relative; z-index: 1; }

/* ── PAGE BANNER ─────────────────────────────────── */
.page-banner {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  background: linear-gradient(160deg, #fff9f6 0%, #ffeee7 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,171,140,.18), transparent 70%);
  top: -100px; right: -100px;
}

.page-banner-tag {
  font-size: .75rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--peach-deep); margin-bottom: .75rem;
  display: block; position: relative; z-index: 1;
}

.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600; color: var(--text);
  margin-bottom: .75rem;
  position: relative; z-index: 1;
}

.page-banner p {
  color: var(--text-soft); font-size: 1.05rem;
  font-weight: 300; max-width: 500px;
  margin: 0 auto; position: relative; z-index: 1;
}

/* ── SERVICE CARDS (services page) ───────────────── */
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  height: 100%;
  transition: transform .3s, box-shadow .3s;
  overflow: hidden;
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.service-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  transition: transform .4s;
}

.service-card:hover .service-card-img { transform: scale(1.04); }

.service-card-header {
  padding: 1.1rem 1.4rem .9rem;
  border-bottom: 1px solid var(--peach-pale);
}

.service-card-header h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.service-card .card-body { padding: 1rem 1.4rem 1.4rem; }

.service-card ul { list-style: none; padding: 0; margin: 0; }

.service-card li {
  padding: .42rem 0;
  border-bottom: 1px solid var(--peach-pale);
  color: var(--text-mid);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.service-card li:last-child { border-bottom: none; }

.service-card li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--peach);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── SOFT CARD ───────────────────────────────────── */
.card-soft {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.card-soft h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .75rem;
}

.card-soft p { color: var(--text-mid); font-weight: 300; }

/* ── ABOUT ───────────────────────────────────────── */
.about-accent {
  background: linear-gradient(135deg, var(--peach-pale), #ffe8de);
  border-left: 4px solid var(--peach);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.75rem;
}

.about-accent h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .5rem;
}

.about-accent p { color: var(--text-mid); font-weight: 300; margin: 0; }

.pill-group { display: flex; flex-wrap: wrap; gap: .6rem; }

.feature-pill {
  background: var(--peach-pale);
  border: 1px solid rgba(255,171,140,.4);
  color: var(--peach-deep);
  font-size: .83rem;
  font-weight: 500;
  padding: .45rem 1rem;
  border-radius: 999px;
}

/* ── STAT ────────────────────────────────────────── */
.stat-item { text-align: center; padding: 1.5rem 1rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 600;
  color: var(--peach-deep); line-height: 1; margin-bottom: .3rem;
}
.stat-label { font-size: .85rem; color: var(--text-soft); }

/* ── FORMS ───────────────────────────────────────── */
.form-label {
  font-size: .83rem; font-weight: 600;
  color: var(--text-mid); letter-spacing: .02em; margin-bottom: .4rem;
}

.form-control, .form-select {
  border: 1.5px solid rgba(232,113,74,.2);
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: .93rem;
  color: var(--text);
  background: var(--warm-white);
  transition: border-color .2s, box-shadow .2s;
}

.form-control:focus, .form-select:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgba(255,171,140,.2);
  outline: none;
}

.form-control::placeholder { color: var(--text-soft); }

/* ── CONTACT INFO ────────────────────────────────── */
.info-item {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin-bottom: .85rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: box-shadow .2s;
}

.info-item:hover { box-shadow: var(--shadow-sm); }

.info-icon {
  width: 38px; height: 38px;
  background: var(--peach-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

.info-item h6 {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: .2rem;
}

.info-item p { margin: 0; color: var(--text); font-size: .93rem; }

/* ── BOOKING LIST ────────────────────────────────── */
.booking-list { list-style: none; padding: 0; margin: 0; }
.booking-list li {
  padding: .65rem 0;
  border-bottom: 1px solid var(--peach-pale);
  color: var(--text-mid); font-size: .93rem;
  display: flex; gap: .65rem; align-items: flex-start;
}
.booking-list li:last-child { border-bottom: none; }
.booking-list li::before { content: '✦'; color: var(--peach); font-size: .7rem; margin-top: .3rem; flex-shrink: 0; }

/* ── FOOTER ──────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,240,234,.85);
  padding: 3rem 0 2rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--peach-light); margin-bottom: .25rem;
}

.footer-tagline {
  font-size: .85rem; color: var(--peach-light);
  opacity: .7; letter-spacing: .08em; margin-bottom: 1.5rem;
}

.footer-divider { border-color: rgba(255,171,140,.12); margin: 1.5rem 0; }
.footer-copy { font-size: .82rem; color: rgba(255,240,234,.4); }

/* ── REVEAL ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; animation: fadeUp .6s ease forwards; animation-play-state: paused; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }
.delay-4 { animation-delay: .4s; }
.delay-5 { animation-delay: .5s; }

/* ── CONTAINER ───────────────────────────────────── */
.container { max-width: 1180px; padding-left: 1.5rem; padding-right: 1.5rem; }

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991.98px) {
  .mobile-menu-toggle { display: block; }
  .desktop-nav { display: none !important; }

  .slide-content {
    margin-left: 1.5rem;
    padding-bottom: 6rem;
    max-width: calc(100vw - 3rem);
  }

  .slide-content h1 { font-size: clamp(2rem, 8vw, 3.2rem); }

  .slider-btn { width: 40px; height: 40px; font-size: 1rem; }
  .slider-prev { left: .75rem; }
  .slider-next { right: .75rem; }

  .section { padding: 3.5rem 0; }
  .hero-slider { min-height: 520px; }
}

@media (max-width: 575.98px) {
  .slide-actions { flex-direction: column; align-items: flex-start; }
  .slide-actions a { width: 100%; justify-content: center; text-align: center; }
}

@media (min-width: 992px) {
  .custom-mobile-nav, .mobile-backdrop { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}
