/* ============================================================
   AVRIL ROSE ARTISTRY — Main Stylesheet
   Rose Gold Luxury Theme
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --cream:        #FAFAF8;     /* page base */
  --blush-light:  #F2EDE5;     /* beige section bg */
  --blush:        #E4DDD3;     /* medium beige border */
  --rose:         #888480;     /* mid grey — accent/hover */
  --rose-dark:    #555250;     /* dark grey */
  --deep-rose:    #111111;     /* near black — headings */
  --gold:         #888480;     /* warm grey — label/icon */
  --gold-light:   #F2EDE5;     /* beige tint */
  --text:         #181614;     /* body text */
  --text-muted:   #7A7570;     /* secondary text */
  --white:        #FFFFFF;
  --divider:      #E4DDD3;     /* border/divider */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Raleway', 'Helvetica Neue', sans-serif;

  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   20px;
  --radius-full: 100px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 36px rgba(0,0,0,0.11);

  --transition: 0.3s ease;
  --max-w:       1200px;
  --max-w-sm:    780px;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--deep-rose);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem,   4vw,   3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);   }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
p  { color: var(--text-muted); line-height: 1.8; margin-bottom: var(--space-sm); }

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.container--sm {
  max-width: var(--max-w-sm);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.section        { padding: var(--space-2xl) 0; }
.section--alt   { background: var(--cream); border-top: 1px solid var(--divider); border-bottom: 1px solid var(--divider); }
.text-center    { text-align: center; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}
.section-title  { margin-bottom: var(--space-xs); }
.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
}
.divider {
  width: 40px; height: 1px;
  background: var(--deep-rose);
  border: none;
  margin: var(--space-sm) auto var(--space-lg);
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--deep-rose);
  color: var(--white);
  box-shadow: none;
  letter-spacing: 0.1em;
}
.btn--primary:hover { background: #333; transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--deep-rose);
  border: 1.5px solid var(--deep-rose);
}
.btn--outline:hover { background: var(--deep-rose); color: var(--white); }
.btn--gold {
  background: var(--deep-rose);
  color: var(--white);
  box-shadow: none;
}
.btn--gold:hover { background: #333; transform: translateY(-2px); }
.btn--white {
  background: var(--white);
  color: var(--deep-rose);
  border: 1.5px solid var(--divider);
}
.btn--white:hover { border-color: var(--deep-rose); transform: translateY(-2px); }

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.3rem 0;
  transition: all var(--transition);
}
.header.scrolled {
  background: rgba(250,250,248,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--divider);
  padding: 0.85rem 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo { line-height: 1.1; }
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep-rose);
}
.logo-sub {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}
.nav__link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--rose); }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--deep-rose);
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-nav__link {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--deep-rose);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--rose); }
.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  font-size: 2rem;
  color: var(--deep-rose);
  padding: 0.5rem;
}
.mobile-nav__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.mobile-nav__social a {
  font-size: 1.4rem;
  color: var(--rose);
  transition: color var(--transition);
}
.mobile-nav__social a:hover { color: var(--deep-rose); }

/* === HERO SLIDESHOW === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}
.hero::before, .hero::after { display: none; }

.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero__slides-track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.95s cubic-bezier(0.77, 0, 0.18, 1);
}
.hero__slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.42);
  z-index: 1;
}

/* Slide indicator dots */
.hero__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.35s ease;
}
.hero__dot.active { background: var(--white); width: 28px; }

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9rem 0 6rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.hero__badge svg { width: 10px; height: 10px; fill: rgba(255,255,255,0.85); }
.hero__title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--white);
  margin-bottom: var(--space-xs);
  line-height: 1.05;
}
.hero__title em {
  display: block;
  color: rgba(255,255,255,0.78);
  font-style: italic;
}
.hero__desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.68);
  max-width: 520px;
  margin-bottom: var(--space-md);
  line-height: 1.85;
}
.hero__location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
}
.hero__actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero-only button variants (light on dark) */
.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: var(--white);
  color: #111;
  transition: all var(--transition);
}
.btn--hero-primary:hover { background: var(--blush-light); transform: translateY(-2px); }
.btn--hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.btn--hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }


/* === STATS BAR === */
.stats-bar {
  background: var(--cream);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: var(--space-lg) 0;
}
.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
}
.stat__number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--deep-rose);
  line-height: 1;
  font-weight: 500;
}
.stat__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 0.2rem;
}

/* === WHY CHOOSE === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.why-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
  transition: all var(--transition);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.why-card__icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.why-card__title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--deep-rose);
  margin-bottom: 0.4rem;
}
.why-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* === SERVICE CARDS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--blush); }

.service-card__img {
  aspect-ratio: 4/3;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--divider);
}
.service-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card__tag {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--white);
  color: var(--deep-rose);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
}
.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--deep-rose);
  margin-bottom: 0.4rem;
}
.service-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
  flex: 1;
}
.service-card__features {
  margin-bottom: var(--space-sm);
}
.service-card__feat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.2rem 0;
}
.service-card__feat::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.55rem;
  flex-shrink: 0;
}
.service-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--divider);
  margin-top: auto;
}
.service-card__price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--deep-rose);
  line-height: 1;
}
.service-card__price sub {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
  display: block;
  margin-top: 0.15rem;
}
.duration-pill {
  background: var(--cream);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--divider);
  white-space: nowrap;
}
.deposit-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--cream);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--divider);
  margin-top: 0.3rem;
}

/* Addon card */
.addon-card {
  background: var(--cream);
  border: 1.5px dashed var(--blush);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}
.addon-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.addon-card p  { margin: 0; font-size: 0.95rem; }
.addon-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}
.addon-item {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
}
.about-photo__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-photo__ring {
  position: absolute;
  inset: -14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.about-photo__badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-photo__badge .number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--deep-rose);
  line-height: 1;
}
.about-photo__badge .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 700;
}
.about-quote {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  padding-left: var(--space-md);
  border-left: 2px solid var(--deep-rose);
}
.about-info-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: var(--space-md);
}
.chip {
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--divider);
}

/* === POLICIES === */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}
.policy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.policy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--deep-rose);
}
.policy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.policy-card__icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
.policy-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--deep-rose);
  margin-bottom: 0.4rem;
}
.policy-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* === BOOKING PAGE === */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-xl);
  align-items: start;
}
.booking-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
}
.form-step { margin-bottom: var(--space-xl); }
.form-step:last-child { margin-bottom: 0; }
.form-step__head {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--divider);
}

.step-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--deep-rose);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.form-step__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--deep-rose);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.form-group { margin-bottom: var(--space-sm); }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-label .req { color: var(--rose); }
.form-control {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--deep-rose);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.form-control::placeholder { color: #B0A89E; }
select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555250' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize: vertical; min-height: 100px; }

/* Service selector cards */
.service-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.service-opt {
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  padding: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  background: var(--white);
}
.service-opt:hover { border-color: var(--rose); background: var(--cream); }
.service-opt.selected {
  border-color: var(--rose);
  background: var(--cream);
}
.service-opt.selected::after {
  content: '✓';
  position: absolute;
  top: 0.6rem; right: 0.7rem;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--deep-rose);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-opt__name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--deep-rose);
  margin-bottom: 0.2rem;
  padding-right: 1.2rem;
}
.service-opt__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.service-opt__price {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--rose);
  font-weight: 500;
  margin-top: 0.3rem;
}

/* Date picker */
.date-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* Time slots */
.time-slots-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}
.time-slots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 0.5rem;
}
.time-slot {
  padding: 0.6rem 0.3rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.82rem;
  font-family: var(--font-sans);
  cursor: pointer;
  background: var(--white);
  color: var(--text);
  transition: all var(--transition);
}
.time-slot:hover { border-color: var(--rose); color: var(--rose); background: var(--cream); }
.time-slot.selected { background: var(--deep-rose); border-color: var(--deep-rose); color: var(--white); font-weight: 700; }
.time-slot.unavailable {
  background: var(--cream);
  color: #B0A89E;
  border-color: var(--divider);
  cursor: not-allowed;
  text-decoration: line-through;
}
.time-slot.unavailable:hover { border-color: var(--divider); color: #B0A89E; background: var(--cream); }

/* Payment step */
.payment-tabs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: var(--space-md);
}
.payment-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--divider);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.payment-tab:hover { border-color: var(--rose); }
.payment-tab.active { background: var(--deep-rose); border-color: var(--deep-rose); color: var(--white); }
.payment-panel { min-height: 40px; }
#payment-element { margin-bottom: var(--space-sm); }
.time-slots-empty {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: var(--space-sm);
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  text-align: center;
}

/* Checkbox */
.checkbox-wrap {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}
.checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--deep-rose);
  cursor: pointer;
}
.checkbox-wrap label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.checkbox-wrap a { color: var(--rose); }

/* Booking sidebar */
.booking-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
  margin-bottom: var(--space-sm);
}
.sidebar-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep-rose);
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-xs);
  border-bottom: 1px solid var(--divider);
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--divider);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-row:last-child { border-bottom: none; }
.contact-row:hover { color: var(--rose); }
.contact-icon { font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.hours-block {
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  padding: var(--space-sm);
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}
.hours-block strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--deep-rose);
  margin-bottom: 0.2rem;
}

/* Summary card */
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 0.85rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--divider);
}
.summary-row:last-child { border-bottom: none; }
.summary-val { color: var(--deep-rose); font-weight: 600; text-align: right; }
.summary-placeholder {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: var(--space-sm) 0;
}

/* === INSTAGRAM SECTION === */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.ig-tile {
  aspect-ratio: 1;
  background: var(--cream);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  overflow: hidden;
  position: relative;
  transition: all var(--transition);
}
.ig-tile:hover { border-color: var(--blush); }
.ig-tile:hover { transform: scale(1.03); }
.ig-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* === CTA BANNER === */
.cta-banner {
  background: var(--deep-rose);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before,
.cta-banner::after { display: none; }
.cta-banner h2 { color: var(--white); margin-bottom: var(--space-xs); }
.cta-banner p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: var(--space-lg); }
.cta-banner .btn--gold {
  background: var(--white);
  color: var(--deep-rose);
  border: none;
}
.cta-banner .btn--gold:hover { background: var(--blush-light); transform: translateY(-2px); }

/* === CONNECT === */
.connect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.connect-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--divider);
  transition: all var(--transition);
  display: block;
  text-decoration: none;
}
.connect-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--blush); }
.connect-card__icon { font-size: 2.6rem; margin-bottom: 0.75rem; display: block; }
.connect-card__name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--deep-rose);
  margin-bottom: 0.25rem;
}
.connect-card__val { font-size: 0.85rem; color: var(--text-muted); }

/* === FOOTER === */
.footer {
  background: #111111;
  color: rgba(255,255,255,0.55);
  padding: var(--space-2xl) 0 var(--space-lg);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.footer__brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-top: 0.3rem;
  margin-bottom: var(--space-sm);
  display: block;
}
.footer__desc { font-size: 0.88rem; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: var(--space-md); }
.footer__social { display: flex; gap: 0.6rem; }
.footer__soc-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.footer__soc-link:hover { background: var(--white); border-color: var(--white); color: #111; transform: translateY(-2px); }
.footer__col-head {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-sm);
}
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__link {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__contact-link {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 0.65rem;
  transition: color var(--transition);
}
.footer__contact-link:hover { color: var(--white); }
.footer__bottom {
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* === PAGE HERO === */
.page-hero {
  padding: calc(var(--space-2xl) + 5rem) 0 var(--space-2xl);
  background: var(--white);
  border-bottom: 1px solid var(--divider);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before { display: none; }
.page-hero__wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  overflow: hidden;
}
.page-hero__wave svg { width: 100%; height: 100%; }

/* === MODAL === */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  backdrop-filter: blur(4px);
}
.modal.active { display: flex; }
.modal__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: modalIn 0.35s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.modal__icon { font-size: 4rem; margin-bottom: var(--space-sm); display: block; }
.modal__title { font-family: var(--font-serif); font-size: 2rem; color: var(--deep-rose); margin-bottom: var(--space-xs); }
.modal__text { color: var(--text-muted); line-height: 1.75; margin-bottom: var(--space-lg); }
.modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.6rem;
  color: var(--text-muted);
  padding: 0.25rem;
  line-height: 1;
}

/* === SCROLL ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.visible { opacity: 1; }
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }

/* === FORM VALIDATION STYLES === */
.form-control.error { border-color: #C4596B; }
.form-error {
  font-size: 0.78rem;
  color: #C4596B;
  margin-top: 0.3rem;
  display: none;
}
.form-group.has-error .form-error { display: block; }
.form-group.has-error .form-control { border-color: #C4596B; }

/* === MEDIA QUERIES === */
@media (max-width: 1024px) {
  .hero__content { text-align: center; }
  .hero__actions { justify-content: center; }
  .hero__location { justify-content: center; }
  .hero__desc { margin-left: auto; margin-right: auto; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
  .about-photo { max-width: 460px; margin: 0 auto; }
  .about-photo__badge { bottom: -1rem; right: -1rem; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; order: -1; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid > *:first-child { grid-column: 1 / -1; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-xl: 3rem; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .stats-bar__inner { gap: var(--space-lg); flex-wrap: wrap; justify-content: center; }
  .policies-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero__slide img { object-position: center top; }
  .hero__content { padding: 7rem 0 5rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn--hero-primary,
  .hero__actions .btn--hero-outline { width: 100%; justify-content: center; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
  .connect-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: var(--space-lg) var(--space-sm); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
}
