/* =============================================
   SUN MAMA MILANO — Global Stylesheet
   ============================================= */

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('https://cdn.jsdelivr.net/npm/@fontsource/dm-sans@5/files/dm-sans-latin-variable-wghtOnly-normal.woff2') format('woff2');
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown:      #7A5C3E;
  --brown-dark: #5A3E28;
  --gold:       #C4956A;
  --gold-dark:  #B07D50;
  --cream:      #FAF8F5;
  --beige:      #F0E8DF;
  --beige-mid:  #E8D8C8;
  --text:       #2C1810;
  --text-mid:   #5A4035;
  --text-light: #8A7060;
  --white:      #FFFFFF;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(90,60,30,.10);
  --shadow-lg:  0 8px 40px rgba(90,60,30,.16);
  --trans:      all .3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--trans);
}

.nav.scrolled {
  background: rgba(250,248,245,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(90,60,30,.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--brown-dark);
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--trans);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--beige);
  color: var(--brown);
}

/* White links when nav is transparent (over dark hero) */
.nav:not(.scrolled) .nav-links a:not(.nav-cta) {
  color: rgba(255,255,255,.9);
}
.nav:not(.scrolled) .nav-links a:not(.nav-cta):hover,
.nav:not(.scrolled) .nav-links a:not(.nav-cta).active {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.nav:not(.scrolled) .nav-logo-text {
  color: #fff;
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: .88rem !important;
  transition: var(--trans) !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,149,106,.35) !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: 2px;
  transition: var(--trans);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(250,248,245,.98);
  backdrop-filter: blur(12px);
  padding: 20px 24px 32px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(90,60,30,.1);
  border-top: 1px solid var(--beige);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 14px 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--beige);
  color: var(--text);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile .mob-cta {
  margin-top: 20px;
  display: block;
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-weight: 600;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--brown-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%234a3020'/%3E%3Cstop offset='60%25' style='stop-color:%236a4530'/%3E%3Cstop offset='100%25' style='stop-color:%233a2015'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect fill='url(%23g)' width='100%25' height='100%25'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42,24,10,.72) 0%,
    rgba(42,24,10,.38) 50%,
    rgba(42,24,10,.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 32px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,149,106,.2);
  border: 1px solid rgba(196,149,106,.4);
  color: var(--gold);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-title strong {
  font-weight: 700;
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 12px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-subdesc {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 4px 20px rgba(196,149,106,.35);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(196,149,106,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: .95rem;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--trans);
  backdrop-filter: blur(6px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.55);
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-title strong {
  font-weight: 700;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 12px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--brown-dark);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
}

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  transition: var(--trans);
}

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

.service-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .5s ease;
}

.service-card:hover .service-card-bg { transform: scale(1.06); }

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,24,10,.85) 0%, rgba(42,24,10,.2) 60%, transparent 100%);
}

.service-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
}

.service-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.service-card-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  margin-bottom: 16px;
}

.service-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-card {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  transition: var(--trans);
}

.btn-card-outline {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.45);
  color: var(--white);
  backdrop-filter: blur(4px);
}

.btn-card-outline:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.7);
}

.btn-card-fill {
  background: var(--gold);
  color: var(--white);
}

.btn-card-fill:hover { background: var(--gold-dark); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%;
  height: 78%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 52%;
  height: 55%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}

.about-badge-float {
  position: absolute;
  bottom: 26%;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 100px;
}

.about-badge-float .num { font-size: 1.8rem; font-weight: 700; color: var(--brown); line-height: 1; }
.about-badge-float .lbl { font-size: .72rem; color: var(--text-light); margin-top: 2px; }

.about-text .section-label { margin-bottom: 14px; }

.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-mid);
}

.about-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: var(--brown);
  font-weight: 600;
  font-size: .95rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--trans);
}

.about-cta:hover { gap: 14px; color: var(--gold); }

/* =============================================
   TREATWELL BOOKING SECTION
   ============================================= */
.booking-section {
  background: var(--brown-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,149,106,.12) 0%, transparent 70%);
  pointer-events: none;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.booking-text .section-label { color: var(--gold); }
.booking-text .section-title { color: var(--white); }
.booking-text .section-desc { color: rgba(255,255,255,.72); }

.booking-actions {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-treatwell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  transition: var(--trans);
  box-shadow: 0 4px 24px rgba(196,149,106,.4);
}

.btn-treatwell:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(196,149,106,.5);
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  padding: 16px 28px;
  border-radius: 50px;
  transition: var(--trans);
}

.btn-call:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

.treatwell-widget-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 8px;
  overflow: hidden;
}

.treatwell-widget-box iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
}

/* =============================================
   EXPERIENCE / GALLERY STRIP
   ============================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: unset;
}

.gallery-item img,
.gallery-item .placeholder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item:hover img,
.gallery-item:hover .placeholder-img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(42,24,10,0);
  transition: var(--trans);
}

.gallery-item:hover .gallery-item-overlay { background: rgba(42,24,10,.3); }

/* =============================================
   PLACEHOLDER IMAGES (CSS-only)
   ============================================= */
.placeholder-img {
  display: block;
  width: 100%;
  height: 100%;
}

/* Service-specific photo backgrounds */
.bg-viso     { background: linear-gradient(160deg, #c4956a 0%, #8b5e3c 50%, #5a3820 100%); background-image: url('images/trattamento-viso.jpg'); background-size: cover; background-position: center; }
.bg-corpo    { background: linear-gradient(160deg, #a67c5b 0%, #7a4f33 50%, #4a2e18 100%); background-image: url('images/trattamento-icoone.jpg'); background-size: cover; background-position: center; }
.bg-epilaz   { background: linear-gradient(160deg, #b8846a 0%, #8a5840 50%, #5a3020 100%); background-image: url('images/laser-staff.jpg'); background-size: cover; background-position: center; }
.bg-mani     { background: linear-gradient(160deg, #c8a882 0%, #9a7255 50%, #6a4a30 100%); }
.bg-massaggi { background: linear-gradient(160deg, #9a7a5a 0%, #725640 50%, #4a3020 100%); background-image: url('images/massaggio.jpg'); background-size: cover; background-position: center; }
.bg-solarium { background: linear-gradient(160deg, #d4a870 0%, #a87840 50%, #784820 100%); }
.bg-hero     { background: linear-gradient(160deg, #3a2010 0%, #5a3020 40%, #7a4530 100%); }
.bg-about1   { background: linear-gradient(135deg, #c4956a 0%, #8b5e3c 100%); }
.bg-about2   { background: linear-gradient(135deg, #e8d8c8 0%, #c4956a 100%); }
.bg-staff1   { background: linear-gradient(160deg, #c4956a 0%, #8b5e3c 100%); }
.bg-gallery1 { background: linear-gradient(160deg, #8b5e3c 0%, #5a3820 100%); }
.bg-gallery2 { background: linear-gradient(160deg, #c4956a 0%, #9a7255 100%); }
.bg-gallery3 { background: linear-gradient(160deg, #a67c5b 0%, #6a4a30 100%); }
.bg-gallery4 { background: linear-gradient(160deg, #b8846a 0%, #8a5840 100%); }
.bg-gallery5 { background: linear-gradient(160deg, #d4a870 0%, #a87840 100%); }

/* Silhouette-style SVG figures inside placeholders */
.placeholder-figure {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .25;
}

/* =============================================
   TEAM / STAFF
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.team-card-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
}

.team-card-body {
  padding: 20px;
}

.team-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.team-card-bio {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* =============================================
   PRODUCTS / SHOP
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}

.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.product-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-body {
  padding: 18px;
}

.product-brand {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.product-desc {
  font-size: .83rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brown);
}

.btn-add-cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--trans);
}

.btn-add-cart:hover { background: var(--gold-dark); }

/* =============================================
   MAP / LOCATION
   ============================================= */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.location-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.location-info-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.location-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.location-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
}

.location-detail-icon svg { width: 18px; height: 18px; }

.location-detail-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  margin-bottom: 2px;
}

.location-detail-value {
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}

.location-detail-value a { color: var(--brown); }
.location-detail-value a:hover { color: var(--gold); }

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 420px;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--brown-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
}

.footer-logo-sub {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-tagline {
  font-size: .88rem;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: var(--trans);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,149,106,.1);
}

.footer-col-title {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--trans);
}

.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  transition: var(--trans);
}

.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(42,24,10,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(196,149,106,.2);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform .4s ease;
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-text {
  font-size: .88rem;
  color: rgba(255,255,255,.8);
  line-height: 1.5;
  max-width: 640px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
  font-size: .88rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  transition: var(--trans);
  cursor: pointer;
}

.btn-cookie-accept {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}

.btn-cookie-accept:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.3);
}

.btn-cookie-reject:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  padding: 148px 0 80px;
  background: linear-gradient(160deg, var(--brown-dark) 0%, var(--brown) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196,149,106,.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -.02em;
  max-width: 640px;
}

.page-hero-title strong { font-weight: 700; }

.page-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  margin-top: 14px;
  max-width: 500px;
  line-height: 1.7;
}

/* =============================================
   TREATMENT DETAIL
   ============================================= */
.treatment-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--beige);
}

.treatment-section:last-child { border-bottom: none; }

.treatment-header {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 36px;
}

.treatment-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.treatment-icon-box svg {
  width: 28px;
  height: 28px;
  color: var(--brown);
}

.treatment-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.treatment-subtitle {
  font-size: .9rem;
  color: var(--text-light);
  margin-top: 2px;
}

.treatments-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.treatment-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--trans);
}

.treatment-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.treatment-item-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}

.treatment-item-desc {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.treatment-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
  flex-shrink: 0;
}

.treatment-item-book {
  display: block;
  margin-top: 6px;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--trans);
}

.treatment-item-book:hover { color: var(--gold-dark); }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

.breadcrumb a { color: rgba(255,255,255,.55); transition: var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.3); }

/* =============================================
   PRIVACY / LEGAL PAGES
   ============================================= */
.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 64px 24px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 24px 0 8px;
}

.legal-content p {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.legal-content li {
  font-size: .95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: .88rem;
}

.legal-content th {
  background: var(--beige);
  padding: 10px 14px;
  text-align: left;
  font-weight: 600;
  color: var(--text);
  border: 1px solid var(--beige-mid);
}

.legal-content td {
  padding: 10px 14px;
  border: 1px solid var(--beige);
  color: var(--text-mid);
  vertical-align: top;
}

.legal-content tr:nth-child(even) td { background: var(--cream); }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-beige { background: var(--beige); }
.bg-white { background: var(--white); }

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--brown);
  color: var(--brown);
  font-size: .9rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: 50px;
  transition: var(--trans);
}

.btn-outline-dark:hover {
  background: var(--brown);
  color: var(--white);
}

.arrow-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { gap: 48px; }
  .location-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }

  .hero-content { padding: 100px 20px 60px; }
  .hero-actions { flex-direction: column; width: fit-content; }

  .section { padding: 64px 0; }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 320px; }
  .about-badge-float { left: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .treatments-list { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 20px; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .btn-cookie-accept, .btn-cookie-reject { flex: 1; text-align: center; }

  .gallery-strip { grid-template-columns: 1fr 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .gallery-strip { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
