/* ============================================================
   PUMZIKO SPA — Master Stylesheet
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cinzel:wght@400;500;600&family=Jost:wght@300;400;500&family=Cormorant+Garamond:ital,wght@0,400;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
  --forest:      #1B3A2D;
  --gold:        #C9A96E;
  --cream:       #F5EFE0;
  --sage:        #4A7C59;
  --charcoal:    #1A1A1A;
  --blush:       #F2DBC8;
  --forest-dark: #122A20;
  --gold-light:  #E0C08A;
  --tr: .4s cubic-bezier(.25,.46,.45,.94);
  --shadow-gold: 0 0 30px rgba(201,169,110,.25);
  --shadow-deep: 0 20px 60px rgba(0,0,0,.35);
  --r:  12px;
  --rl: 24px;
  --fd: 'Playfair Display', Georgia, serif;
  --fc: 'Cinzel', serif;
  --fb: 'Jost', sans-serif;
  --fs: 'Cormorant Garamond', Georgia, serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); background: var(--cream); color: var(--charcoal); overflow-x: hidden; cursor: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ---- Custom Cursor ---- */
#cursor {
  position: fixed; width: 20px; height: 20px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,.85) 0%, rgba(201,169,110,.15) 65%, transparent 100%);
  border: 1.5px solid rgba(201,169,110,.75);
  pointer-events: none; z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width .2s ease, height .2s ease, background .2s ease;
  box-shadow: 0 0 14px rgba(201,169,110,.55), 0 0 28px rgba(201,169,110,.2);
}
#cursor.expand {
  width: 42px; height: 42px;
  background: radial-gradient(circle, rgba(201,169,110,.3) 0%, transparent 70%);
}

/* ---- Scroll Reveal Animations ---- */
.rev   { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--tr), transform .8s var(--tr); }
.rev-l { opacity: 0; transform: translateX(-50px); transition: opacity .8s var(--tr), transform .8s var(--tr); }
.rev-r { opacity: 0; transform: translateX(50px);  transition: opacity .8s var(--tr), transform .8s var(--tr); }
.rev.on, .rev-l.on, .rev-r.on { opacity: 1; transform: none; }
.d1 { transition-delay: .1s !important; }
.d2 { transition-delay: .2s !important; }
.d3 { transition-delay: .3s !important; }
.d4 { transition-delay: .4s !important; }
.d5 { transition-delay: .5s !important; }

/* ---- Wave Float Animations ---- */
@keyframes wf1 { 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(-18px); } }
@keyframes wf2 { 0%,100%{ transform:translateX(0); } 50%{ transform:translateX( 18px); } }
@keyframes wf3 { 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(-12px); } }
.wa1 { animation: wf1  8s ease-in-out infinite; }
.wa2 { animation: wf2 10s ease-in-out infinite; }
.wa3 { animation: wf3 12s ease-in-out infinite; }

/* ---- Noise Texture ---- */
.noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 1; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* ---- Section Helpers ---- */
section { position: relative; overflow: hidden; }
.inn    { max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.lbl    { display: block; font-family: var(--fc); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; }
.stitle { font-family: var(--fd); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; line-height: 1.25; margin-bottom: 1.5rem; }

/* ---- Buttons ---- */
.btn-gold {
  display: inline-block; padding: .85rem 2.2rem;
  background: var(--gold); color: var(--forest);
  font-family: var(--fc); font-size: .8rem; letter-spacing: .15em; font-weight: 600;
  border-radius: 30px; position: relative; overflow: hidden;
  transition: all var(--tr); box-shadow: 0 4px 20px rgba(201,169,110,.35);
}
.btn-gold::before {
  content: ''; position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%; background: rgba(255,255,255,.28);
  transform: skewX(-20deg); transition: left .55s ease;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,169,110,.55); }
.btn-gold:hover::before { left: 150%; }

.btn-outline {
  display: inline-block; padding: .85rem 2.2rem;
  background: transparent; color: var(--cream);
  font-family: var(--fc); font-size: .8rem; letter-spacing: .15em;
  border-radius: 30px; border: 1.5px solid rgba(245,239,224,.5);
  transition: all var(--tr);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s ease, padding .4s ease, backdrop-filter .5s ease;
}
#nav.scrolled {
  background: rgba(27,58,45,.96); backdrop-filter: blur(14px);
  padding: .8rem 3rem; box-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.n-logo { display: flex; align-items: center; gap: .7rem; }
.n-name { display: block; font-family: var(--fc); font-size: .88rem; letter-spacing: .2em; color: var(--gold); line-height: 1.3; }
.n-tag  { display: block; font-family: var(--fs); font-style: italic; font-size: .62rem; color: rgba(245,239,224,.6); }
.n-links { display: flex; align-items: center; gap: 2rem; }
.n-links a {
  font-family: var(--fb); font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--cream);
  position: relative; transition: color var(--tr);
}
.n-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width var(--tr);
}
.n-links a:hover { color: var(--gold); }
.n-links a:hover::after { width: 100%; }
.n-cta {
  padding: .5rem 1.3rem !important;
  border: 1.5px solid var(--gold) !important;
  border-radius: 30px; color: var(--gold) !important;
  position: relative; overflow: hidden; transition: all var(--tr) !important;
}
.n-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform var(--tr); z-index: -1;
}
.n-cta:hover { color: var(--forest) !important; }
.n-cta:hover::before { transform: scaleX(1); }
.n-cta::after { display: none !important; }

/* Hamburger */
.hbg { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hbg span { display: block; width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: all .3s ease; }
.hbg.op span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hbg.op span:nth-child(2) { opacity: 0; }
.hbg.op span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.n-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.52); z-index: 998; }
.n-overlay.on { display: block; }

@media (max-width: 768px) {
  #nav { padding: 1rem 1.5rem; }
  #nav.scrolled { padding: .7rem 1.5rem; }
  .hbg { display: flex; }
  .n-links {
    position: fixed; top: 0; right: -100%; width: 75vw; max-width: 320px;
    height: 100vh; background: var(--forest-dark); flex-direction: column;
    justify-content: center; align-items: flex-start;
    padding: 2.5rem 2rem; gap: 2rem;
    transition: right .4s ease; box-shadow: -10px 0 40px rgba(0,0,0,.4); z-index: 999;
  }
  .n-links.op { right: 0; }
  .n-links a { font-size: 1rem; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative; min-height: 100vh;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-c {
  position: relative; z-index: 2; text-align: center;
  padding: 2rem; max-width: 900px;
  opacity: 0; animation: heroFade 1.2s ease .3s forwards;
}
@keyframes heroFade { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: none; } }

.hero-logo {
  display: flex; justify-content: center; margin-bottom: 2rem;
  opacity: 0; animation: logoRise 1s ease .65s forwards;
}
@keyframes logoRise { from { opacity:0; transform: scale(.88) translateY(14px); } to { opacity:1; transform: none; } }

.hero-title {
  font-family: var(--fc); font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 600; color: var(--gold); letter-spacing: .25em;
  line-height: 1; margin-bottom: 1rem;
  text-shadow: 0 0 60px rgba(201,169,110,.3);
}
.hero-sub {
  font-family: var(--fs); font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic; color: var(--cream); margin-bottom: 1.2rem;
  opacity: 0; animation: heroFade 1s ease 1.1s forwards;
}
.hero-body {
  font-family: var(--fb); font-size: clamp(.9rem, 1.5vw, 1.05rem);
  color: rgba(245,239,224,.75); max-width: 560px; margin: 0 auto 2.5rem;
  line-height: 1.85; font-weight: 300;
  opacity: 0; animation: heroFade 1s ease 1.45s forwards;
}
.hero-btns {
  display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: heroFade 1s ease 1.75s forwards;
}
.hero-wave-btm {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3; display: block;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 3rem; } }

.about-text .stitle { color: var(--forest); }
.about-text p { font-family: var(--fs); font-size: 1.08rem; line-height: 1.95; color: #3c3c3c; margin-bottom: 1.5rem; }
.about-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem; }
.am { padding: 1.2rem; border: 1px solid rgba(201,169,110,.3); border-radius: var(--r); background: rgba(27,58,45,.04); }
.am strong { display: block; font-family: var(--fc); font-size: .68rem; letter-spacing: .15em; color: var(--gold); margin-bottom: .4rem; }
.am p { font-family: var(--fb) !important; font-size: .88rem !important; line-height: 1.5 !important; margin: 0 !important; color: var(--forest) !important; }

.about-visual { display: flex; align-items: center; justify-content: center; }
.a-circle { position: relative; width: 340px; height: 340px; }
@media (max-width: 500px) { .a-circle { width: 240px; height: 240px; } }
.ac-bg  { position: absolute; inset: 0; border-radius: 50%; background: radial-gradient(circle at 40% 38%, var(--sage), var(--forest)); box-shadow: var(--shadow-gold); }
.ac-r1  { position: absolute; inset: -14px; border-radius: 50%; border: 1px solid rgba(201,169,110,.32); animation: spin 20s linear infinite; }
.ac-r2  { position: absolute; inset: -28px; border-radius: 50%; border: 1px dashed rgba(201,169,110,.15); animation: spin 35s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.ac-in  { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
#why { background: var(--forest); }
#why .stitle { color: var(--cream); text-align: center; }
#why .lbl   { text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; margin-top: 3rem; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  padding: 2.5rem 2rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(201,169,110,.26);
  border-radius: var(--rl); transition: all var(--tr); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transition: transform var(--tr);
}
.why-card:hover { transform: translateY(-8px); border-color: rgba(201,169,110,.6); box-shadow: var(--shadow-gold); }
.why-card:hover::before { transform: scaleX(1); }
.why-ico { width: 56px; height: 56px; background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.why-card h3 { font-family: var(--fd); font-size: 1.25rem; color: var(--gold); margin-bottom: .8rem; }
.why-card p  { font-family: var(--fb); font-size: .92rem; color: rgba(245,239,224,.75); line-height: 1.78; font-weight: 300; }

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--cream); }
#services .stitle { color: var(--forest); }
.srv-sub { font-family: var(--fs); font-style: italic; font-size: 1.1rem; color: var(--sage); margin-bottom: 3rem; }
.srv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.8rem; }
.srv-card {
  background: #fff; border: 1px solid rgba(27,58,45,.1); border-radius: var(--rl);
  overflow: hidden; transition: all var(--tr);
}
.srv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-deep); border-color: var(--gold); }
.srv-top {
  padding: 2rem 2rem 1.5rem;
  background: linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  position: relative; overflow: hidden;
}
.srv-top::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 28px; background: #fff; clip-path: ellipse(55% 100% at 50% 100%);
}
.srv-ico { width: 52px; height: 52px; background: rgba(201,169,110,.15); border: 1px solid rgba(201,169,110,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.srv-name { font-family: var(--fd); font-size: 1.15rem; color: var(--gold); font-weight: 600; }
.srv-body { padding: 1.5rem 2rem 2rem; }
.srv-desc { font-family: var(--fb); font-size: .88rem; color: #555; line-height: 1.78; margin-bottom: 1.2rem; font-weight: 300; }
.srv-price { font-family: var(--fc); font-size: .72rem; letter-spacing: .1em; color: var(--sage); margin-bottom: 1.2rem; }
.srv-price span { font-size: 1.1rem; color: var(--forest); font-weight: 600; }
.srv-cta {
  display: block; width: 100%; padding: .7rem; text-align: center;
  background: transparent; border: 1.5px solid var(--gold); border-radius: 30px;
  font-family: var(--fc); font-size: .72rem; letter-spacing: .12em; color: var(--gold);
  transition: all var(--tr); opacity: 1; transform: none;
}
.srv-cta:hover { background: var(--gold); color: var(--forest); }

/* ============================================================
   LOGO STORY
   ============================================================ */
#story { background: var(--forest-dark); }
#story .stitle { color: var(--cream); }
.story-wm { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .04; pointer-events: none; }
.story-pts { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 3.5rem; }
@media (max-width: 768px) { .story-pts { grid-template-columns: 1fr; gap: 2rem; } }
.story-pt {
  padding: 2.5rem 2rem; border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--rl); background: rgba(255,255,255,.03); transition: all var(--tr);
}
.story-pt:hover { border-color: rgba(201,169,110,.5); background: rgba(255,255,255,.06); }
.story-num { font-family: var(--fc); font-size: 2.5rem; color: rgba(201,169,110,.2); line-height: 1; margin-bottom: 1rem; }
.story-pt h3 { font-family: var(--fd); font-size: 1.3rem; color: var(--gold); margin-bottom: .8rem; }
.story-pt p  { font-family: var(--fb); font-size: .92rem; color: rgba(245,239,224,.7); line-height: 1.82; font-weight: 300; }

/* ============================================================
   BOOKING
   ============================================================ */
#booking { background: var(--blush); }
#booking .stitle { color: var(--forest); text-align: center; }
#booking .lbl   { text-align: center; }
.bk-sub { font-family: var(--fs); font-style: italic; font-size: 1.05rem; color: var(--sage); margin-bottom: 2.5rem; text-align: center; }

.bk-wrap { background: #fff; border-radius: var(--rl); box-shadow: var(--shadow-deep); overflow: hidden; max-width: 800px; margin: 0 auto; }
.bk-head { background: var(--forest); padding: 1.8rem 2.5rem; }

/* Progress Bar */
.prog { display: flex; justify-content: space-between; align-items: center; gap: .4rem; }
.ps   { flex: 1; display: flex; flex-direction: column; align-items: center; gap: .4rem; }
.pd   {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid rgba(201,169,110,.4); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fc); font-size: .7rem; color: rgba(201,169,110,.5);
  transition: all var(--tr);
}
.ps.active .pd { border-color: var(--gold); background: var(--gold); color: var(--forest); box-shadow: 0 0 16px rgba(201,169,110,.5); }
.ps.done   .pd { border-color: var(--gold); background: rgba(201,169,110,.2); color: var(--gold); }
.pl-lbl { font-family: var(--fb); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,239,224,.45); transition: color var(--tr); }
.ps.active .pl-lbl { color: var(--gold); }
.p-line { flex: 1; height: 1px; background: rgba(201,169,110,.2); margin-top: -1rem; transition: background .45s; }
.p-line.filled { background: var(--gold); }

.bk-body { padding: 2.5rem; }
.bk-step { display: none; }
.bk-step.active { display: block; }
.step-h { font-family: var(--fd); font-size: 1.35rem; color: var(--forest); margin-bottom: 1.5rem; }

/* Service tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: .8rem; }
.tile  {
  padding: 1rem; border: 1.5px solid rgba(27,58,45,.15); border-radius: var(--r);
  cursor: none; transition: all var(--tr); text-align: center;
}
.tile:hover { border-color: var(--sage); }
.tile.sel   { border-color: var(--gold); background: rgba(201,169,110,.09); }
.tile span  { display: block; font-family: var(--fb); font-size: .85rem; color: var(--forest); font-weight: 500; }
.tile small { font-family: var(--fs); font-style: italic; font-size: .75rem; color: var(--sage); }

/* Duration */
.dur-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.d-btn { padding: .65rem 1.4rem; border: 1.5px solid rgba(27,58,45,.2); border-radius: 30px; font-family: var(--fc); font-size: .75rem; letter-spacing: .1em; color: var(--forest); cursor: none; transition: all var(--tr); }
.d-btn:hover { border-color: var(--sage); }
.d-btn.sel { background: var(--forest); color: var(--gold); border-color: var(--forest); }
.d-btn.dis { opacity: .32; pointer-events: none; }

/* Calendar */
.cal-h    { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; padding: .8rem 1rem; background: var(--cream); border-radius: var(--r); }
.cal-h span { font-family: var(--fd); font-size: 1rem; color: var(--forest); }
.cal-nav  { width: 32px; height: 32px; border: 1px solid rgba(27,58,45,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: none; transition: all var(--tr); color: var(--forest); font-size: .9rem; }
.cal-nav:hover { background: var(--forest); color: var(--gold); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; margin-bottom: 1.5rem; }
.c-dn   { font-family: var(--fc); font-size: .6rem; letter-spacing: .1em; color: var(--sage); padding: .4rem 0; }
.c-day  { padding: .55rem 0; font-family: var(--fb); font-size: .85rem; border-radius: 8px; cursor: none; transition: all var(--tr); color: var(--charcoal); }
.c-day:hover:not(.emp):not(.past) { background: rgba(201,169,110,.15); }
.c-day.sel   { background: var(--forest); color: var(--gold); font-weight: 600; }
.c-day.today { border: 1px solid var(--gold); color: var(--forest); font-weight: 600; }
.c-day.past  { opacity: .3; pointer-events: none; }
.c-day.emp   { pointer-events: none; }

/* Time grid */
.t-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(68px,1fr)); gap: 6px; max-height: 200px; overflow-y: auto; }
.ts { padding: .5rem; border: 1px solid rgba(27,58,45,.15); border-radius: 8px; font-family: var(--fb); font-size: .78rem; text-align: center; cursor: none; transition: all var(--tr); color: var(--forest); }
.ts:hover { border-color: var(--sage); background: rgba(74,124,89,.06); }
.ts.sel   { background: var(--forest); color: var(--gold); border-color: var(--forest); }

/* Form fields */
.fg        { margin-bottom: 1.2rem; }
.fg label  { display: block; font-family: var(--fc); font-size: .68rem; letter-spacing: .15em; color: var(--sage); margin-bottom: .5rem; }
.fg input, .fg textarea, .fg select {
  width: 100%; padding: .85rem 1.1rem;
  border: 1.5px solid rgba(27,58,45,.15); border-radius: var(--r);
  font-family: var(--fb); font-size: .92rem; color: var(--charcoal);
  background: var(--cream); outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.fg input:focus, .fg textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,.12); }
.fg input.inv, .fg textarea.inv { border-color: #c0392b !important; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .f-row { grid-template-columns: 1fr; } }
.fg textarea { resize: vertical; min-height: 88px; }
.err-msg { font-size: .78rem; color: #c0392b; margin-top: .3rem; display: none; font-family: var(--fb); }
.err-msg.on { display: block; }

/* Summary box */
.sum-box { background: var(--cream); border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.5rem; }
.s-row   { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px solid rgba(27,58,45,.08); font-family: var(--fb); font-size: .9rem; }
.s-row:last-child { border-bottom: none; }
.s-row strong { font-family: var(--fc); font-size: .68rem; letter-spacing: .1em; color: var(--sage); }

/* Booking nav */
.bk-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2rem; }
.btn-next, .btn-prev { padding: .85rem 2rem; border-radius: 30px; font-family: var(--fc); font-size: .78rem; letter-spacing: .12em; cursor: none; transition: all var(--tr); }
.btn-next { background: var(--forest); color: var(--gold); border: none; position: relative; overflow: hidden; }
.btn-next::before { content: ''; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%; background: rgba(255,255,255,.12); transform: skewX(-20deg); transition: left .5s; }
.btn-next:hover { box-shadow: 0 6px 20px rgba(27,58,45,.45); transform: translateY(-1px); }
.btn-next:hover::before { left: 150%; }
.btn-prev { background: transparent; color: var(--forest); border: 1.5px solid rgba(27,58,45,.25); }
.btn-prev:hover { border-color: var(--forest); background: rgba(27,58,45,.05); }
.btn-confirm {
  width: 100%; padding: 1rem; background: var(--gold); color: var(--forest);
  border: none; border-radius: 30px; font-family: var(--fc); font-size: .85rem;
  letter-spacing: .15em; font-weight: 600; cursor: none;
  transition: all var(--tr); position: relative; overflow: hidden;
}
.btn-confirm::before { content: ''; position: absolute; top: -50%; left: -75%; width: 50%; height: 200%; background: rgba(255,255,255,.3); transform: skewX(-20deg); transition: left .5s; }
.btn-confirm:hover { box-shadow: 0 8px 30px rgba(201,169,110,.55); transform: translateY(-2px); }
.btn-confirm:hover::before { left: 150%; }

/* Success state */
.bk-suc { display: none; text-align: center; padding: 3rem 2rem; }
.bk-suc.on { display: block; }
.suc-ico {
  width: 80px; height: 80px; background: rgba(201,169,110,.1);
  border: 2px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; animation: sucPop .5s ease;
}
@keyframes sucPop { 0%{ transform:scale(.5);opacity:0; } 70%{ transform:scale(1.1); } 100%{ transform:scale(1);opacity:1; } }
.bk-suc h3 { font-family: var(--fd); font-size: 1.6rem; color: var(--forest); margin-bottom: .8rem; }
.bk-suc p  { font-family: var(--fs); font-style: italic; font-size: 1.05rem; color: var(--sage); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testi { background: var(--forest); }
#testi .stitle { color: var(--cream); text-align: center; }
#testi .lbl    { text-align: center; }
.t-wrap {
  overflow: hidden;
  margin-top: 3rem;
  width: 100%;
}
.t-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.t-card {
  width: calc(33.333% - 1rem);
  min-width: calc(33.333% - 1rem);
  flex: 0 0 calc(33.333% - 1rem);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: var(--rl);
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  transition: all var(--tr);
}
.t-card:hover {
  border-color: rgba(201,169,110,.5);
  background: rgba(255,255,255,.06);
}

@media (max-width: 900px) {
  .t-card {
    width: calc(50% - .75rem);
    min-width: calc(50% - .75rem);
    flex: 0 0 calc(50% - .75rem);
  }
}

@media (max-width: 600px) {
  .t-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: 1.5rem;
    padding-bottom: .5rem;
  }
  .t-wrap::-webkit-scrollbar { display: none; }
  .t-track {
    gap: 1rem;
    transform: none !important;
    transition: none;
    width: max-content;
  }
  .t-card {
    width: 85vw;
    min-width: 85vw;
    flex: 0 0 85vw;
    scroll-snap-align: center;
    padding: 1.8rem 1.5rem;
  }
}
.q-mark  {
  font-family: var(--fc);
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(201,169,110,.2);
  margin-bottom: 1rem;
}
.t-text  {
  font-family: var(--fb);
  font-size: .92rem;
  font-style: normal;
  color: rgba(245,239,224,.7);
  line-height: 1.82;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.t-auth  {
  font-family: var(--fd);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  font-style: normal;
}
.stars   { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--gold); font-size: .85rem; }
.t-dots  { display: flex; justify-content: center; gap: 8px; margin-top: 2rem; }
.t-dot   { width: 8px; height: 8px; border-radius: 50%; background: rgba(201,169,110,.3); border: none; cursor: none; transition: all var(--tr); }
.t-dot.active { background: var(--gold); transform: scale(1.35); }

/* ============================================================
   LOCATION
   ============================================================ */
#location { background: var(--cream); }
#location .stitle { color: var(--forest); }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .loc-grid { grid-template-columns: 1fr; gap: 2.5rem; } }
.loc-items { margin-top: 1.5rem; }
.l-item { display: flex; gap: 1.2rem; padding: 1rem 0; border-bottom: 1px solid rgba(27,58,45,.08); align-items: flex-start; }
.l-item:last-child { border-bottom: none; }
.l-ico { width: 42px; height: 42px; background: rgba(201,169,110,.1); border: 1px solid rgba(201,169,110,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.l-info strong { display: block; font-family: var(--fc); font-size: .68rem; letter-spacing: .12em; color: var(--sage); margin-bottom: .22rem; }
.l-info span   { font-family: var(--fb); font-size: .9rem; color: var(--charcoal); }
.map-real {
  border-radius: var(--rl);
  overflow: hidden;
  border: 1px solid rgba(201,169,110,.22);
  box-shadow: var(--shadow-gold);
  height: 380px;
}
.map-real iframe {
  width: 100%; height: 100%;
  display: block; border: 0;
  filter: saturate(.85) contrast(1.05);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--charcoal); position: relative; }
.f-inn  { max-width: 1200px; margin: 0 auto; padding: 4rem 2rem 2rem; }
.f-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .f-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .f-grid { grid-template-columns: 1fr; } }
.f-brand-name { font-family: var(--fc); font-size: 1rem; letter-spacing: .2em; color: var(--gold); margin-bottom: .3rem; }
.f-brand-tag  { font-family: var(--fs); font-style: italic; font-size: .82rem; color: rgba(245,239,224,.5); margin-bottom: 1rem; }
.f-desc { font-family: var(--fb); font-size: .85rem; color: rgba(245,239,224,.45); line-height: 1.78; font-weight: 300; }
.f-col h4 { font-family: var(--fc); font-size: .7rem; letter-spacing: .2em; color: var(--gold); margin-bottom: 1.2rem; }
.f-col ul li { margin-bottom: .7rem; }
.f-col ul li a { font-family: var(--fb); font-size: .85rem; color: rgba(245,239,224,.5); transition: color var(--tr); font-weight: 300; }
.f-col ul li a:hover { color: var(--gold); }
.soc-icons { display: flex; gap: .8rem; margin-top: 1.5rem; }
.soc-ico {
  width: 38px; height: 38px; border: 1px solid rgba(201,169,110,.25);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(245,239,224,.5); transition: all var(--tr);
}
.soc-ico:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 14px rgba(201,169,110,.28); }
.f-bot { border-top: 1px solid rgba(255,255,255,.06); padding-top: 1.5rem; text-align: center; font-family: var(--fb); font-size: .78rem; color: rgba(245,239,224,.3); font-weight: 300; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sr { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   CALENDAR — BLOCKED DATES
   ============================================================ */
.c-day.blocked {
  background: rgba(192,57,43,.12) !important;
  color: rgba(192,57,43,.5) !important;
  cursor: not-allowed !important;
  text-decoration: line-through;
  border: 1px solid rgba(192,57,43,.2) !important;
  position: relative;
}
.c-day.blocked::after {
  content: '✕';
  position: absolute;
  top: 1px; right: 3px;
  font-size: 8px;
  color: rgba(192,57,43,.6);
  line-height: 1;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9999;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.1); }
}
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #1a1a1a;
  color: #fff;
  font-family: var(--fb);
  font-size: .78rem;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: all .2s ease;
}
.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateX(0);
}
@media (max-width: 480px) {
  .wa-float { bottom: 20px; right: 16px; width: 50px; height: 50px; }
  .wa-tooltip { display: none; }
}

/* ============================================================
   WHATSAPP BUTTON — BOOKING SUCCESS
   ============================================================ */
.btn-whatsapp-suc {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .8rem 1.8rem;
  background: #25D366; color: #fff;
  border-radius: 30px;
  font-family: var(--fc); font-size: .75rem; letter-spacing: .15em;
  text-decoration: none;
  transition: all var(--tr);
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp-suc:hover { background: #1ebe5d; box-shadow: 0 6px 20px rgba(37,211,102,.5); }

/* ============================================================
   CONTACT US
   ============================================================ */
#contact { background: var(--cream); position: relative; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 3rem; } }
.contact-intro { font-family: var(--fb); font-size: .95rem; color: var(--charcoal); line-height: 1.8; margin-bottom: 2rem; font-weight: 300; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.cd-item { display: flex; align-items: flex-start; gap: 1rem; }
.cd-ico { font-size: 1.1rem; width: 38px; height: 38px; background: rgba(27,58,45,.07); border: 1px solid rgba(27,58,45,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cd-item a, .cd-item span { font-family: var(--fb); font-size: .92rem; color: var(--charcoal); text-decoration: none; line-height: 1.5; }
.cd-item a:hover { color: var(--sage); }

.contact-form { background: #fff; border-radius: var(--rl); padding: 2.5rem; box-shadow: 0 8px 40px rgba(27,58,45,.08); border: 1px solid rgba(27,58,45,.07); }
.contact-form label { font-family: var(--fc); font-size: .68rem; letter-spacing: .12em; color: var(--sage); display: block; margin-bottom: .45rem; }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid rgba(27,58,45,.18);
  border-radius: 8px; font-family: var(--fb); font-size: .92rem; color: var(--charcoal);
  background: #fafafa; transition: border-color var(--tr), box-shadow var(--tr);
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--sage); box-shadow: 0 0 0 3px rgba(74,124,89,.12); }
.contact-form textarea { resize: vertical; min-height: 130px; }
.btn-contact-submit {
  margin-top: 1.2rem; width: 100%; padding: 1rem; background: var(--forest);
  color: var(--gold); font-family: var(--fc); font-size: .8rem; letter-spacing: .18em;
  border: none; border-radius: 8px; cursor: pointer; transition: all var(--tr);
}
.btn-contact-submit:hover { background: var(--sage); color: var(--cream); }
.btn-contact-submit:disabled { opacity: .6; cursor: not-allowed; }
.contact-suc {
  background: rgba(74,124,89,.1); border: 1px solid rgba(74,124,89,.3);
  border-radius: 8px; padding: 1rem 1.2rem; font-family: var(--fb);
  font-size: .9rem; color: var(--sage); margin-bottom: 1rem;
}
.contact-err {
  background: rgba(200,50,50,.08); border: 1px solid rgba(200,50,50,.25);
  border-radius: 8px; padding: 1rem 1.2rem; font-family: var(--fb);
  font-size: .9rem; color: #c03030; margin-bottom: 1rem;
}

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--forest-dark); position: relative; }
#faq .stitle { color: var(--cream); }
.faq-list { margin-top: 3rem; max-width: 860px; margin-left: auto; margin-right: auto; }
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,.18);
  transition: background .2s ease;
}
.faq-item:first-child { border-top: 1px solid rgba(201,169,110,.18); }
.faq-item.open { background: rgba(201,169,110,.05); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.4rem 1rem; text-align: left;
  transition: background .2s ease;
}
.faq-q:hover { background: rgba(201,169,110,.06); }
.faq-q span:first-child {
  font-family: var(--fb); font-size: 1rem; color: var(--cream);
  font-weight: 400; line-height: 1.5; flex: 1;
  transition: color .25s ease;
}
.faq-ico {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(201,169,110,.35); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.1rem; font-weight: 300;
  transition: transform .35s ease, background .25s ease, border-color .25s ease;
  line-height: 1;
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--gold); color: var(--forest);
  border-color: var(--gold);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .42s cubic-bezier(.4,0,.2,1);
}
.faq-a p {
  font-family: var(--fb); font-size: .93rem; color: rgba(245,239,224,.72);
  line-height: 1.85; font-weight: 300; padding: 0 1rem 1.4rem;
}
.faq-item.open .faq-q span:first-child { color: var(--gold); }

/* ============================================================
   LOGO IMAGES
   ============================================================ */
.n-logo-img {
  width: 44px; height: 44px; object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201,169,110,.4));
}
.hero-logo-img {
  width: 130px; height: 130px; object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(201,169,110,.45));
}
.f-logo-img {
  width: 42px; height: 42px; object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(2deg) opacity(.85);
}

/* ============================================================
   HERO PHOTO BG
   ============================================================ */
.hero-photo-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
  filter: brightness(.38) saturate(.7);
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1;
  opacity: .72;
}

/* ============================================================
   ABOUT PHOTO CIRCLE
   ============================================================ */
.about-photo {
  width: 290px; height: 290px; object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(201,169,110,.45);
  box-shadow: 0 0 40px rgba(201,169,110,.2);
}
@media (max-width: 500px) { .about-photo { width: 200px; height: 200px; } }

/* remove old gradient bg since we have photo now */
.ac-bg { display: none; }

/* ============================================================
   SERVICE CARD — IMAGE VERSION
   ============================================================ */
.srv-img-wrap {
  position: relative; height: 200px; overflow: hidden;
}
.srv-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
  display: block;
}
.srv-card:hover .srv-img { transform: scale(1.06); }
.srv-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,42,32,.88) 0%, rgba(18,42,32,.25) 55%, transparent 100%);
  display: flex; align-items: flex-end; padding: 1.2rem 1.4rem;
}
.srv-img-overlay .srv-name {
  font-family: var(--fd); font-size: 1.15rem; color: var(--gold); font-weight: 600;
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--forest-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
