/* ==========================================================================
   SMPU By Isabel Chloe — Luxury Brow Studio
   ========================================================================== */

:root {
  --ivory: #FBF8F3;
  --champagne: #F1E5D3;
  --champagne-soft: #F6ECDD;
  --taupe: #B8A692;
  --taupe-dark: #8C7A66;
  --espresso: #34281E;
  --espresso-soft: #5A4A3D;
  --espresso-deep: #241A13;
  --espresso-rich: #3D2E22;
  --nude: #CBA98C;
  --gold: #A9824F;
  --gold-light: #C9A66B;
  --white: #FFFFFF;

  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;

  --shadow-soft: 0 16px 48px rgba(52, 40, 30, 0.07);
  --shadow-card: 0 4px 20px rgba(52, 40, 30, 0.05);
  --shadow-hover: 0 16px 40px rgba(52, 40, 30, 0.10);

  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;

  /* 8px spacing scale */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 40px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 80px;
  --space-9: 96px;
  --space-10: 120px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-card: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: 76px;
}

@media (min-width: 641px) {
  body { padding-bottom: 0; }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   Mobile-first breakpoints: mobile <= 640px is the base experience;
   tablet 641–1023px and desktop >= 1024px progressively enhance it.
   ========================================================================== */
.mobile-only {
  display: block;
}

.tablet-up {
  display: none;
}

@media (min-width: 641px) {
  .mobile-only {
    display: none;
  }

  .tablet-up {
    display: block;
  }
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: var(--space-10) 0;
}

@media (max-width: 768px) {
  section { padding: var(--space-7) 0; }
}

.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.section-heading {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.1rem, 4.2vw, 2.9rem);
  color: var(--espresso);
  line-height: 1.2;
  margin-bottom: 22px;
}

.section-sub {
  max-width: 640px;
  color: var(--espresso-soft);
  font-size: 1.05rem;
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto var(--space-8);
}

.section-intro .section-sub {
  margin: 0 auto;
}

.divider-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  margin: 0 auto var(--space-3);
}

.section-intro .divider-line {
  margin: -4px auto var(--space-3);
}

/* Decorative rings — reused across sections for quiet rhythm */
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(169, 130, 79, 0.10);
  pointer-events: none;
  z-index: 0;
}

/* Decorative rings add nothing on a phone screen — cleaner without them */
@media (max-width: 640px) {
  .deco-ring {
    display: none;
  }
}

/* Staggered reveal for grid children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.09s; }
.stagger > *:nth-child(3) { transition-delay: 0.18s; }
.stagger > *:nth-child(4) { transition-delay: 0.27s; }
.stagger > *:nth-child(5) { transition-delay: 0.36s; }
.stagger > *:nth-child(6) { transition-delay: 0.45s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 16px var(--space-4);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
    border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
}

.btn-primary:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--taupe);
}

.btn-secondary:hover {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(251, 248, 243, 0.55);
}

.btn-outline-light:hover {
  background: var(--ivory);
  color: var(--espresso);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(184, 166, 146, 0.25);
  transition: box-shadow 0.3s ease;
}

.navbar.is-scrolled {
  box-shadow: 0 4px 24px rgba(52, 40, 30, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) var(--space-3);
  max-width: var(--max-width);
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--espresso);
}

.nav-logo span {
  color: var(--gold);
}

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

.nav-links a:not(.btn) {
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  color: var(--espresso-soft);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-links a:not(.btn):hover {
  color: var(--espresso);
}

.nav-cta {
  padding: 12px var(--space-3);
  font-size: 0.85rem;
}

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

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--espresso);
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
    background: var(--ivory);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-2) var(--space-3) var(--space-4);
    gap: 2px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(184, 166, 146, 0.25);
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a:not(.btn) {
    padding: 14px 4px;
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(184, 166, 146, 0.15);
  }

  .nav-cta {
    margin-top: var(--space-2);
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .nav-toggle {
    display: flex;
    padding: 10px;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
/* Mobile base: compact, content-hugging hero so the photo sits near the first screen */
.hero {
  display: flex;
  align-items: center;
  padding: 100px 0 var(--space-6);
  background:
    radial-gradient(circle at 85% 12%, rgba(169, 130, 79, 0.10), transparent 45%),
    linear-gradient(160deg, var(--champagne-soft) 0%, var(--ivory) 55%);
  position: relative;
  overflow: hidden;
}

.hero-ring-1 {
  width: 560px;
  height: 560px;
  top: -140px;
  right: -160px;
}

.hero-ring-2 {
  width: 260px;
  height: 260px;
  border-color: rgba(169, 130, 79, 0.14);
  bottom: 8%;
  left: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-2);
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 9vw, 4.4rem);
  line-height: 1.1;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: var(--space-3);
}

.hero p.hero-sub {
  font-size: 1.05rem;
  color: var(--espresso-soft);
  max-width: 540px;
  margin-bottom: var(--space-4);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.hero-ctas .btn {
  flex: 1 1 auto;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--espresso-soft);
  letter-spacing: 0.3px;
  margin-bottom: var(--space-1);
}

.hero-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--taupe-dark);
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--champagne) 0%, var(--taupe) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-badge {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-2);
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(6px);
  padding: 10px var(--space-2);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.hero-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--espresso);
}

.hero-badge span {
  font-size: 0.78rem;
  color: var(--espresso-soft);
}

/* Tablet and up: roomier hero, side-by-side layout */
@media (min-width: 641px) {
  .hero { padding: 140px 0 var(--space-7); }
  .hero-grid { gap: var(--space-6); }

  .hero-eyebrow { font-size: 13px; margin-bottom: var(--space-3); }
  .hero-eyebrow::before { width: 30px; }

  .hero h1 { margin-bottom: var(--space-4); }

  .hero p.hero-sub {
    font-size: 1.1rem;
    margin-bottom: var(--space-5);
    line-height: 1.7;
  }

  .hero-ctas { gap: 16px; margin-bottom: var(--space-6); }
  .hero-ctas .btn { flex: 0 0 auto; }
  .hero-meta { margin-bottom: 0; }

  .hero-visual { max-width: 460px; margin: 0 auto; aspect-ratio: 4/5; }
  .hero-badge { bottom: 32px; left: 32px; padding: var(--space-2) var(--space-3); }
  .hero-badge strong { font-size: 1.1rem; }
  .hero-badge span { font-size: 0.82rem; }
}

/* Desktop: full side-by-side hero with maximum impact */
@media (min-width: 901px) {
  .hero { min-height: 100vh; padding: 160px 0 112px; }

  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
  }

  .hero h1 { font-size: clamp(2.6rem, 5.8vw, 4.4rem); }

  .hero-visual { max-width: none; margin: 0; }
}

/* ==========================================================================
   Trust Strip
   ========================================================================== */
.trust-strip {
  background: var(--espresso);
  padding: var(--space-4) 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
}

.trust-item {
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  padding: 0 28px;
  position: relative;
}

.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: rgba(241, 229, 211, 0.3);
}

@media (max-width: 620px) {
  .trust-item { padding: 0 16px; font-size: 0.72rem; letter-spacing: 1.6px; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about {
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.about-ring {
  width: 340px;
  height: 340px;
  top: -100px;
  left: -120px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(150deg, var(--champagne) 0%, var(--champagne-soft) 60%, var(--ivory) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid rgba(184, 166, 146, 0.3);
  transition: var(--transition-card);
}

.about-visual:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.about-visual-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(6px);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
}

.about-visual-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
}

.about-visual-badge span {
  font-size: 0.8rem;
  color: var(--espresso-soft);
  letter-spacing: 0.3px;
}

.about-copy p {
  color: var(--espresso-soft);
  margin-bottom: var(--space-3);
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-copy p.lead {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  line-height: 1.5;
  margin-bottom: var(--space-4);
}

.about-signoff {
  margin-top: var(--space-4);
}

.about-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--espresso);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-5); }
  .about-visual { max-width: 420px; margin: 0 auto; }
}

/* ==========================================================================
   Why Clients Choose Isabel
   ========================================================================== */
.why-choose {
  background: var(--champagne-soft);
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.trust-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-4);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184, 166, 146, 0.2);
  transition: var(--transition-card);
}

.trust-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(169, 130, 79, 0.35);
}

.card-numeral {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 22px;
  letter-spacing: 1px;
}

.trust-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--espresso);
  margin-bottom: var(--space-2);
}

.trust-card p {
  font-size: 0.95rem;
  color: var(--espresso-soft);
  line-height: 1.65;
}

@media (max-width: 980px) {
  .trust-card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .trust-card-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .trust-card { padding: var(--space-4) var(--space-3); }
  .card-numeral { margin-bottom: var(--space-2); }
}
@media (max-width: 340px) {
  .trust-card-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Benefits
   ========================================================================== */
.benefits {
  background: var(--ivory);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-3);
}

.benefit-item {
  text-align: center;
  padding: var(--space-4) var(--space-2);
  border-radius: var(--radius-md);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}

.benefit-item:hover {
  background: var(--champagne-soft);
  transform: translateY(-6px);
}

.benefit-item h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
  margin-bottom: var(--space-2);
  line-height: 1.3;
}

.benefit-item p {
  font-size: 0.88rem;
  color: var(--espresso-soft);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .benefit-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 340px) {
  .benefit-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Treatments
   ========================================================================== */
.treatments {
  background: var(--champagne-soft);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-card);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(184, 166, 146, 0.2);
  position: relative;
}

.treatment-visual {
  aspect-ratio: 16/10;
  background: linear-gradient(150deg, var(--champagne) 0%, var(--taupe) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.treatment-visual span {
  font-family: var(--font-serif);
  color: rgba(251, 248, 243, 0.9);
  font-size: 0.95rem;
  letter-spacing: 1px;
  border: 1px solid rgba(251, 248, 243, 0.5);
  padding: 9px 20px;
  border-radius: 100px;
}

.treatment-card-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(169, 130, 79, 0.3);
}

.treatment-card.featured {
  border: 1px solid var(--gold);
  position: relative;
}

.treatment-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--gold);
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
}

.treatment-card h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  margin-bottom: var(--space-2);
  color: var(--espresso);
  line-height: 1.25;
}

.treatment-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--espresso-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.treatment-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(184, 166, 146, 0.3);
  margin-bottom: var(--space-3);
}

.treatment-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--espresso);
}

.treatment-topup-note {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.treatment-details-toggle {
  margin-bottom: var(--space-3);
}

.treatment-details-toggle summary {
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--taupe-dark);
  letter-spacing: 0.3px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  min-height: 44px;
  transition: color 0.3s ease;
}

.treatment-details-toggle summary::-webkit-details-marker {
  display: none;
}

.treatment-details-toggle summary::after {
  content: '+';
  font-size: 1rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.treatment-details-toggle[open] summary::after {
  transform: rotate(45deg);
}

.treatment-details-toggle summary:hover {
  color: var(--espresso);
}

.treatment-details {
  border-top: 1px solid rgba(184, 166, 146, 0.3);
  padding-top: 18px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.treatment-details .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--espresso-soft);
}

.treatment-details .row strong {
  color: var(--espresso);
  font-weight: 500;
  text-align: right;
}

.treatment-card .btn {
  margin-top: auto;
}

@media (max-width: 980px) {
  .treatment-grid { grid-template-columns: 1fr; }
  .treatment-card-body { padding: var(--space-4); }
  .treatment-visual { aspect-ratio: 16/9; }
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery {
  background: var(--ivory);
}

.masonry-grid {
  column-count: 3;
  column-gap: 24px;
}

.masonry-item {
  display: block;
  width: 100%;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: var(--space-3);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184, 166, 146, 0.2);
  background: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-card);
}

.masonry-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.masonry-item.size-tall { aspect-ratio: 3/4.4; }
.masonry-item.size-medium { aspect-ratio: 3/3.6; }
.masonry-item.size-square { aspect-ratio: 1/1; }

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.masonry-item:hover img {
  transform: scale(1.06);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2px;
  padding: 24px;
  background: linear-gradient(0deg, rgba(36, 26, 19, 0.72) 0%, rgba(36, 26, 19, 0) 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  text-align: left;
}

.masonry-item:hover .masonry-overlay,
.masonry-item:focus-visible .masonry-overlay {
  opacity: 1;
}

.masonry-overlay strong {
  font-family: var(--font-serif);
  color: var(--ivory);
  font-size: 1.05rem;
}

.masonry-overlay em {
  font-style: normal;
  color: var(--champagne);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-note {
  text-align: center;
  margin-top: 40px;
  color: var(--taupe-dark);
  font-size: 0.92rem;
  font-style: italic;
}

@media (max-width: 900px) {
  .masonry-grid { column-count: 2; }
}
@media (max-width: 560px) {
  .masonry-grid { column-count: 1; max-width: 420px; margin: 0 auto; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(36, 26, 19, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-figure {
  max-width: 720px;
  width: 100%;
  text-align: center;
}

.lightbox-figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  background: var(--champagne-soft);
}

.lightbox-figure figcaption {
  margin-top: 20px;
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  letter-spacing: 0.4px;
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(251, 248, 243, 0.35);
  background: transparent;
  color: var(--ivory);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(251, 248, 243, 0.12);
  transform: rotate(90deg);
}

/* ==========================================================================
   Process
   ========================================================================== */
.process {
  background:
    radial-gradient(circle at 12% 15%, rgba(169, 130, 79, 0.10), transparent 45%),
    radial-gradient(circle at 88% 85%, rgba(169, 130, 79, 0.08), transparent 50%),
    linear-gradient(165deg, var(--espresso-deep) 0%, var(--espresso) 50%, var(--espresso-rich) 100%);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.process-ring {
  width: 400px;
  height: 400px;
  border-color: rgba(169, 130, 79, 0.10);
  bottom: -160px;
  right: -120px;
}

.reviews-ring {
  width: 300px;
  height: 300px;
  border-color: rgba(169, 130, 79, 0.10);
  top: -100px;
  left: -100px;
}

.process .section-label { color: var(--gold); letter-spacing: 3.5px; }
.process .section-heading { color: var(--ivory); }
.process .section-sub { color: rgba(251, 248, 243, 0.72); }
.process .divider-line { opacity: 0.4; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-top: var(--space-2);
  position: relative;
  z-index: 1;
}

.process-step {
  padding: var(--space-5) var(--space-4);
  border: 1px solid rgba(251, 248, 243, 0.14);
  border-radius: var(--radius-md);
  background: rgba(251, 248, 243, 0.03);
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.process-step:hover {
  background: rgba(251, 248, 243, 0.07);
  border-color: rgba(169, 130, 79, 0.4);
  transform: translateY(-6px);
}

.process-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: var(--space-2);
  letter-spacing: 0.2px;
}

.process-step p {
  font-size: 0.93rem;
  color: rgba(251, 248, 243, 0.7);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2); }
  .process-step { padding: var(--space-3) var(--space-2); }
}
@media (max-width: 340px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Pre-care / Aftercare
   ========================================================================== */
.care {
  background: var(--champagne-soft);
}

.care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.care-card {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(184, 166, 146, 0.2);
}

.care-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--espresso);
}

.care-list li {
  border-left: 1px solid rgba(169, 130, 79, 0.4);
  padding: 2px 0 2px var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--espresso-soft);
  font-size: 0.96rem;
  line-height: 1.6;
}

.care-list li:last-child {
  margin-bottom: 0;
}

.care-note {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(184, 166, 146, 0.3);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--taupe-dark);
}

@media (max-width: 900px) {
  .care-grid { grid-template-columns: 1fr; }
  .care-card { padding: var(--space-4); }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(184, 166, 146, 0.3);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--espresso);
  gap: 20px;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  font-family: var(--font-serif);
  color: var(--gold);
}

.faq-icon::before {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.35s ease;
}

.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  color: var(--espresso-soft);
  font-size: 0.98rem;
  padding: 0 4px;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 4px 24px;
}

/* ==========================================================================
   Reviews
   ========================================================================== */
.reviews {
  background:
    radial-gradient(circle at 80% 20%, rgba(169, 130, 79, 0.10), transparent 45%),
    linear-gradient(165deg, var(--espresso-rich) 0%, var(--espresso) 55%, var(--espresso-deep) 100%);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.reviews .section-label { color: var(--gold); letter-spacing: 3.5px; }

.reviews-card {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-5);
  border: 1px solid rgba(251, 248, 243, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(251, 248, 243, 0.03);
  position: relative;
  z-index: 1;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.reviews-card p.reviews-lead {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}

.reviews-card p.reviews-sub {
  color: rgba(251, 248, 243, 0.72);
  margin-bottom: var(--space-4);
}

.reviews-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 6px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
  background: linear-gradient(160deg, var(--champagne) 0%, var(--champagne-soft) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 160px 0 128px;
}

.final-cta-ring-1 {
  width: 480px;
  height: 480px;
  border-color: rgba(169, 130, 79, 0.12);
  bottom: -160px;
  left: -140px;
}

.final-cta-ring-2 {
  width: 220px;
  height: 220px;
  border-color: rgba(169, 130, 79, 0.14);
  top: 10%;
  right: 6%;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  color: var(--espresso);
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

.final-cta-inner > .divider-line {
  margin: 0 auto var(--space-3);
}

.final-cta p {
  color: var(--espresso-soft);
  font-size: 1.1rem;
  margin-bottom: var(--space-6);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
}

.btn-lg {
  padding: 18px var(--space-5);
  font-size: 0.98rem;
}

.contact-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(169, 130, 79, 0.22);
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.contact-label {
  font-size: 0.68rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-size: 0.92rem;
  color: var(--espresso-soft);
  transition: color 0.3s ease;
}

.contact-option:hover {
  opacity: 1;
}

.contact-option:hover .contact-value {
  color: var(--gold);
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: linear-gradient(180deg, var(--espresso) 0%, var(--espresso-deep) 100%);
  color: rgba(251, 248, 243, 0.8);
  padding: 80px 0 32px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid rgba(251, 248, 243, 0.12);
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--ivory);
  margin-bottom: var(--space-2);
}

.footer-brand span { color: var(--gold); }

.footer-col p, .footer-col a {
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(251, 248, 243, 0.72);
  display: block;
}

.footer-col a:hover { color: var(--gold); }

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}

.footer-bottom {
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(251, 248, 243, 0.5);
}

.footer-bottom-left {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-credit {
  color: rgba(251, 248, 243, 0.5);
  transition: color 0.3s ease;
}

.footer-credit:hover {
  color: var(--gold);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Mobile booking bar — thumb-reachable persistent CTA, mobile only
   ========================================================================== */
.mobile-book-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  background: rgba(251, 248, 243, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(184, 166, 146, 0.25);
  padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -8px 24px rgba(52, 40, 30, 0.08);
  transform: translateY(0);
  transition: transform 0.35s var(--ease);
}

.mobile-book-bar.is-hidden {
  transform: translateY(100%);
}

.mobile-book-bar .btn {
  padding-top: 15px;
  padding-bottom: 15px;
}

@media (min-width: 641px) {
  .mobile-book-bar {
    display: none;
  }
}

/* ==========================================================================
   Reveal animation
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--espresso);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 2000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}
