/* ============================================
   OCTAVIA SPA — SHARED STYLES
   ============================================ */

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

:root {
  --bg-main: #F7F3ED;
  --bg-alt: #EBE3D5;
  --bg-white: #FFFFFF;
  --accent: #8B6F47;
  --accent-hover: #6E5638;
  --gold: #C9A876;
  --taupe: #B5A89A;
  --text-primary: #2A241E;
  --text-secondary: #6B5E50;
  --dark: #2A241E;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --nav-h: 76px;
  --radius: 4px;
  --shadow: 0 4px 24px rgba(42,36,30,0.10);
  --shadow-lg: 0 12px 48px rgba(42,36,30,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(247,243,237,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(139,111,71,0.10);
  display: flex;
  align-items: center;
  padding: 0 5%;
  gap: 2rem;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(42,36,30,0.10); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  max-width: 100%;
  overflow: hidden;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
}
.navbar .logo-text { color: var(--text-primary); }
footer .logo-text { color: #fff; }
.site-logo {
  width: auto;
  max-width: 260px;
  height: auto;
  object-fit: contain;
  display: block;
  line-height: 0;
  font-size: 0;
  color: transparent;
}
.navbar .site-logo { max-height: 50px; }
footer .site-logo { max-height: 60px; }
.logo-link.logo-fallback::after {
  content: "Octavia Spa";
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.navbar .logo-link.logo-fallback::after { color: var(--text-primary); }
footer .logo-link.logo-fallback::after { color: #fff; }
@media (max-width: 820px) {
  .navbar .site-logo { max-height: 40px; }
  .logo-text { font-size: 1.2rem; }
  .logo-link.logo-fallback::after { font-size: 1.2rem; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.btn-nav {
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-nav:hover { background: var(--accent-hover); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-white);
  padding: 2rem 5%;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(42,36,30,0.12);
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139,111,71,0.10);
  transition: color 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--accent); }

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #3a2f24;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  to { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,36,30,0.78) 0%, rgba(42,36,30,0.45) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 3rem) 8% 4rem;
  max-width: 760px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid rgba(201,168,118,0.5);
  border-radius: 30px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero variants */
.hero-full { height: 90vh; min-height: 560px; }
.hero-half { height: 50vh; min-height: 400px; }
.hero-small { height: 40vh; min-height: 320px; }

/* Mid hero variant for services/about */
.hero-half .hero-content {
  padding: calc(var(--nav-h) + 1.8rem) 8% 2.8rem;
}
.hero-half .hero-badge {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  padding: 0.38rem 0.95rem;
  margin-bottom: 1rem;
  background: rgba(42, 36, 30, 0.32);
  border-color: rgba(201, 168, 118, 0.7);
  backdrop-filter: blur(2px);
}
.hero-half h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 0.75rem;
}
.hero-half p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Compact hero variant for contact/reservation */
.hero-small {
  height: 46vh;
  min-height: 360px;
}
.hero-small .hero-bg {
  background-position: center 24%;
}
.hero-small .hero-content {
  padding: calc(var(--nav-h) + 1.4rem) 8% 2.6rem;
}
.hero-small .hero-badge {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  padding: 0.38rem 0.95rem;
  margin-bottom: 1rem;
  background: rgba(42, 36, 30, 0.32);
  border-color: rgba(201, 168, 118, 0.7);
  backdrop-filter: blur(2px);
}
.hero-small h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  margin-bottom: 0.75rem;
}
.hero-small p {
  margin-bottom: 0;
  font-size: 1rem;
}

/* Small hero centered text */
.hero-centered .hero-content {
  padding: calc(var(--nav-h) + 2rem) 8% 3rem;
  text-align: center;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.22s;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,111,71,0.35); }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.65);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.btn-bronze {
  background: var(--accent);
  color: #fff;
  width: 100%;
  justify-content: center;
  border-radius: 3px;
}
.btn-bronze:hover { background: var(--accent-hover); }

.btn-outline-bronze {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline-bronze:hover { background: var(--accent); color: #fff; }

/* ─── SECTION COMMON ─────────────────────── */
.section { padding: 90px 8%; }
.section-alt { background: var(--bg-alt); }
.section-white { background: var(--bg-white); }
.section-dark { background: var(--dark); color: #fff; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--accent); }

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 3.5rem;
}
.section-header-centered {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header-centered .section-subtitle { margin: 0 auto; }

/* ─── SERVICE CARDS ──────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.service-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1.2;
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.service-card-includes {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.service-card-includes span { display: block; }
.service-card-includes .check { color: var(--accent); }

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: var(--bg-main);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
}

.badge-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── PILLARS / VALUES ───────────────────── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
}
.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.pillar p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── TESTIMONIALS ───────────────────────── */
.testimonials-wrap { position: relative; }
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  overflow: hidden;
}
.testimonial-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: border-color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card:hover { border-color: var(--gold); }

.testimonial-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.testimonial-time {
  font-size: 0.78rem;
  color: var(--taupe);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonials-dots {
  display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--taupe);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.dot.active { background: var(--accent); transform: scale(1.3); }

.slider-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.slider-arrow:hover { background: var(--accent); color: #fff; }

/* ─── CTA BANNER ─────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #3d3226 100%);
  padding: 80px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,168,118,0.12) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #fff;
  font-weight: 400;
  margin-bottom: 0.75rem;
  position: relative;
}
.cta-banner h2 em { color: var(--gold); font-style: italic; }
.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}
.cta-banner .btn { position: relative; }

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 72px 8% 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.2rem;
}
.footer-col p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-style: italic;
  font-family: var(--font-display);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.7rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-icon { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,118,0.4);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ─── FLOATING BUTTONS ───────────────────── */
.float-whatsapp, .float-phone {
  position: fixed;
  bottom: 28px;
  z-index: 900;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  text-decoration: none;
}
.float-whatsapp { right: 28px; background: #25D366; color: #fff; }
.float-phone { left: 28px; background: var(--accent); color: #fff; }
.float-whatsapp:hover, .float-phone:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.3); }

/* ─── LEGAL PAGES ────────────────────────── */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 5%;
  background: var(--bg-white);
}
.legal-content h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.legal-content .last-updated {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin-bottom: 2.5rem;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent);
  margin: 2.5rem 0 0.75rem;
}
.legal-content h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p, .legal-content li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 0.5rem;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: var(--accent); }

/* ─── STATS CHIPS ────────────────────────── */
.stat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.chip {
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

/* ─── TABS ───────────────────────────────── */
.tabs-nav {
  display: flex;
  gap: 0.5rem;
  border-bottom: 2px solid var(--bg-alt);
  margin-bottom: 2.5rem;
}
.tab-btn {
  padding: 0.8rem 1.8rem;
  background: transparent;
  border: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn:hover { color: var(--accent); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ─── CONTACT / INFO CARDS ───────────────── */
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.info-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.info-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
  font-size: 1.3rem;
}
.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.info-card p, .info-card a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.info-card a:hover { color: var(--accent); }

/* ─── FORM ───────────────────────────────── */
.form-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: var(--shadow-lg);
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(139,111,71,0.2);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-primary);
  background: var(--bg-main);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  background: #fff;
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ─── RESERVATION LAYOUT ─────────────────── */
.reservation-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.sidebar-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
}
.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.time-slot {
  padding: 0.6rem;
  text-align: center;
  border: 1.5px solid rgba(139,111,71,0.25);
  border-radius: 4px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--text-secondary);
}
.time-slot:hover, .time-slot.selected { background: var(--accent); color: #fff; border-color: var(--accent); }

.persons-selector {
  display: flex;
  gap: 0.5rem;
}
.person-btn {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(139,111,71,0.25);
  border-radius: 4px;
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.person-btn:hover, .person-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ─── GALLERY ────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.06); }

/* ─── FEATURED SERVICES ──────────────────── */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.featured-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
  background: var(--bg-white);
}
.featured-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.featured-card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.featured-card-body {
  padding: 1.5rem;
}
.featured-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.featured-card-body p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.featured-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent);
}

/* ─── SUCCESS STATE ──────────────────────── */
.success-screen {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.success-screen.show { display: block; }
.success-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(139,111,71,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--accent);
}
.success-screen h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── HOURS TABLE ────────────────────────── */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(139,111,71,0.1);
  color: var(--text-secondary);
}
.hour-row span:last-child { font-weight: 500; color: var(--text-primary); }

/* ─── DECORATIVE ─────────────────────────── */
.ornament {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1rem 0;
}
.ornament-center {
  margin: 1rem auto;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-slider { grid-template-columns: 1fr; }
  .reservation-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --nav-h: 64px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 6%; }
  .hero-content { padding: calc(var(--nav-h) + 2rem) 6% 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr; }
  .info-cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-full { height: 85vh; }
  .hero-half { height: 55vh; }
  .hero-half .hero-content {
    padding: calc(var(--nav-h) + 1.2rem) 6% 2rem;
  }
  .hero-half .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .hero-half h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-half p {
    font-size: 0.95rem;
  }
  .hero-small {
    height: 44vh;
    min-height: 320px;
  }
  .hero-small .hero-content {
    padding: calc(var(--nav-h) + 1.1rem) 6% 2rem;
  }
  .hero-small .hero-badge {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }
  .hero-small h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .hero-small p {
    font-size: 0.95rem;
  }
}

@media (max-width: 600px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .cta-banner { padding: 60px 6%; }
}
