/*
Theme Name: SS Blush & Beam
Theme URI: https://www.blushandbeam.ca/
Author: SpaSprint
Author URI: https://spasprint.com
Description: Custom theme for Blush & Beam — Salon & Laser Clinic.
Version: 1.0.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: ss-blush-beam
*/

/* ---------------------------------- */
/* Design tokens                      */
/* ---------------------------------- */
:root {
  /* Live site palette */
  --cream: #F9F4EE;
  --cream-deep: #F0E8DE;
  --blush: #F2C4CE;
  --blush-light: #FAEAED;
  --blush-mid: #E8A5B5;
  --blush-dark: #C47A8A;
  --rose-gold: #C9897A;
  --charcoal: #2C2424;
  --warm-gray: #7A6D6A;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --serif2: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;

  /* Aliases mapped onto the live palette (used throughout this theme) */
  --cream-2: var(--cream-deep);
  --ink: var(--charcoal);
  --dark: var(--charcoal);
  --dark-2: var(--charcoal);
  --pink: var(--blush-mid);
  --pink-soft: var(--blush);
  --muted: var(--warm-gray);
  --muted-light: #a99b97;
  --line: rgba(44, 36, 36, .12);
  --line-light: rgba(249, 244, 238, .15);
  --font-serif: var(--serif);
  --font-sans: var(--sans);
  --radius: 18px;
  --wrap: 1240px;
}

/* ---------------------------------- */
/* Base                               */
/* ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .5em;
}

p { margin: 0 0 1.2em; }

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

/* Small caps section label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--pink);
}

/* Centered sections keep the plain label */
.services .eyebrow::before,
.results .eyebrow::before,
.testimonials .eyebrow::before,
.cta .eyebrow::before,
.instagram .eyebrow::before { display: none; }

.accent { color: var(--pink); font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

/* Uppercase underlined text link */
.link-underline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: color .2s, border-color .2s;
}
.link-underline:hover { color: var(--pink); border-color: var(--pink); }

.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark:hover { background: var(--pink); color: var(--ink); }

.btn-outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); }

.btn-light-outline { border-color: var(--cream); color: var(--cream); }
.btn-light-outline:hover { background: var(--cream); color: var(--ink); }

.link-arrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--pink);
}
.link-arrow:hover { color: inherit; }

/* Media placeholders — replace with real images in assets/img/ */
.media {
  background: var(--cream-2) url('assets/img/placeholder.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* ---------------------------------- */
/* Header                             */
/* ---------------------------------- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--ink);
  white-space: nowrap;
}
.site-logo em { font-style: italic; }

.site-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color .2s;
}
.site-nav a:hover,
.site-nav .current-menu-item a,
.site-nav a.is-active { color: var(--pink); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform .25s;
}

/* ---------------------------------- */
/* Hero                               */
/* ---------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.hero-content {
  padding: 120px 70px 100px 56px;
  max-width: 640px;
}

.hero-title {
  font-size: clamp(46px, 4.6vw, 76px);
  line-height: 1.06;
  margin: 0 0 26px;
}

.hero-sub {
  color: var(--muted);
  max-width: 40ch;
  font-size: 15.5px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin: 32px 0 60px;
}

.hero-stats {
  display: flex;
  gap: 44px;
}

.stat b {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.stat span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-media { min-height: 720px; }

/* Background videos inside any .media block */
.media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .media-caption {
  position: absolute;
  right: 8%;
  bottom: 28%;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .45);
  max-width: 420px;
  margin: 0;
  z-index: 2;
}

.hero-badge {
  position: absolute;
  left: 44px;
  bottom: 44px;
  z-index: 2;
  background: var(--dark);
  border-left: 3px solid var(--pink);
  padding: 16px 26px 16px 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hero-badge .badge-icon {
  color: var(--pink);
  font-size: 13px;
  line-height: 1;
}

.hero-badge b,
.hero-badge span {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.5;
}
.hero-badge b { color: var(--cream); }
.hero-badge span { color: var(--pink); }

/* ---------------------------------- */
/* Marquee                            */
/* ---------------------------------- */
.marquee {
  background: var(--dark);
  color: var(--cream);
  overflow: hidden;
  padding: 18px 0;
}

.marquee-track {
  display: flex;
  gap: 110px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--serif2);
  font-style: italic;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: .04em;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 110px;
}
.marquee-track span::after { content: "✦"; color: var(--pink-soft); font-size: 12px; font-style: normal; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------------------------------- */
/* Image strip                        */
/* ---------------------------------- */
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.strip-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.strip-item .media {
  position: absolute;
  inset: 0;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

/* Darkening overlay revealed on hover */
.strip-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 24, 20, .65), rgba(28, 24, 20, .1) 55%);
  opacity: 0;
  transition: opacity .5s ease;
  z-index: 1;
}

.strip-title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 30px;
  text-align: center;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  margin: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
  z-index: 2;
}

.strip-item:hover .media { transform: scale(1.08); }
.strip-item:hover::after { opacity: 1; }
.strip-item:hover .strip-title { opacity: 1; transform: translateY(0); }

/* ---------------------------------- */
/* About                              */
/* ---------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}

.about-media { min-height: 560px; }

.about-media .media-caption {
  position: absolute;
  left: 40px;
  bottom: 48%;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
}

.about-body {
  padding: 90px 28px 90px 70px;
  max-width: 560px;
}

.about-body h2 { font-size: clamp(34px, 3.4vw, 46px); }

.about-body .signoff {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--pink);
}

/* ---------------------------------- */
/* Services (dark)                    */
/* ---------------------------------- */
.services {
  background: var(--dark);
  color: var(--cream);
  padding: 100px 0 90px;
  text-align: center;
}

.services h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 60px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: left;
}

.service-card .media {
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  margin-bottom: 26px;
}

.service-card h3 { font-size: 24px; color: var(--cream); }

.service-card p { color: var(--muted-light); font-size: 15.5px; }

.services-footer { margin-top: 56px; }

/* ---------------------------------- */
/* Results gallery                    */
/* ---------------------------------- */
.results {
  padding: 100px 0;
  text-align: center;
}

.results h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 54px; }

.results-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  grid-auto-rows: 205px;
  gap: 14px;
}

.result-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.result-item .media {
  position: absolute;
  inset: 0;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.result-item:hover .media { transform: scale(1.08); }

.result-lg { grid-row: span 2; }

/* ---------------------------------- */
/* Why choose us (dark)               */
/* ---------------------------------- */
.why {
  background: var(--dark-2);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.why-body {
  padding: 100px 70px 100px 28px;
  max-width: 620px;
  margin-left: auto;
}

.why-body h2 { font-size: clamp(34px, 3.6vw, 48px); color: var(--cream); }

.why .eyebrow::before { display: none; }

.feature {
  display: flex;
  gap: 22px;
  padding: 20px 0;
}

.feature-icon {
  flex: 0 0 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: grid;
  place-items: center;
  color: var(--pink);
  font-size: 18px;
}

.feature h3 { font-size: 20px; color: var(--cream); margin-bottom: 6px; }
.feature p { color: var(--muted-light); font-size: 15px; margin: 0; }

.why-media { min-height: 920px; }

/* Faint brand mark over the video */
.why-logo {
  position: absolute;
  top: 9%;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255, 255, 255, .72);
  font-family: var(--font-serif);
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: .28em;
  text-transform: uppercase;
  line-height: 1.4;
  z-index: 2;
  margin: 0;
}

.why-media .media-caption {
  position: absolute;
  left: 50%;
  bottom: 42%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 90%;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.4;
  text-align: center;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .5);
  z-index: 2;
  margin: 0;
}

/* Featured technology card */
.tech-card {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 44px;
  z-index: 3;
  background: rgba(26, 18, 14, .92);
  border-left: 3px solid var(--pink);
  padding: 38px 44px 42px;
}

.tech-card h3 {
  font-size: clamp(24px, 2vw, 32px);
  color: var(--cream);
  margin: 0 0 14px;
}

.tech-card > p {
  color: var(--muted-light);
  font-size: 15px;
  max-width: 62ch;
  margin-bottom: 24px;
}

.tech-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.tech-list li {
  color: rgba(247, 241, 231, .85);
  font-size: 14.5px;
  margin-bottom: 10px;
  display: flex;
  gap: 14px;
}
.tech-list li::before { content: "\2014"; color: var(--muted-light); }

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tags span {
  border: 1px solid rgba(247, 241, 231, .3);
  color: var(--pink-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 9px 16px;
}

/* ---------------------------------- */
/* Testimonials (dark)                */
/* ---------------------------------- */
.testimonials {
  background: var(--dark-2);
  color: var(--cream);
  padding: 110px 0 120px;
  text-align: center;
}

.testimonials h2 { font-size: clamp(36px, 4vw, 54px); color: var(--cream); margin-bottom: 64px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.testimonial {
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(247, 241, 231, .14);
  padding: 42px 38px 40px;
}

.testimonial .quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 64px;
  line-height: .6;
  color: var(--pink);
  opacity: .55;
  margin-bottom: 30px;
}

.testimonial .stars {
  color: var(--pink-soft);
  font-size: 15px;
  letter-spacing: 5px;
  margin: 0 0 24px;
}

.testimonial blockquote {
  margin: 0 0 30px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.85;
  color: rgba(247, 241, 231, .92);
}

.testimonial cite {
  font-style: normal;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--pink);
}

/* ---------------------------------- */
/* Ready to radiate CTA               */
/* ---------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-dark) 0%, #A05565 50%, var(--rose-gold) 100%);
  color: #fff;
  text-align: center;
  padding: 100px 56px;
}

.cta-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: clamp(300px, 34vw, 560px);
  line-height: 1;
  color: rgba(255, 255, 255, .07);
  pointer-events: none;
  user-select: none;
}

.cta > :not(.cta-watermark) { position: relative; z-index: 1; }

.cta .eyebrow { color: rgba(255, 255, 255, .9); }

.cta h2 {
  color: #fff;
  font-size: clamp(42px, 4.6vw, 64px);
  margin-bottom: 18px;
}

.cta-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 19px;
  color: rgba(255, 255, 255, .92);
  margin-bottom: 40px;
}

.btn-white { background: #fff; color: #ad5f6b; padding: 19px 42px; }
.btn-white:hover { background: var(--ink); color: var(--cream); }

.cta-meta {
  margin: 44px 0 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .78);
}

/* ---------------------------------- */
/* Instagram                          */
/* ---------------------------------- */
.instagram {
  padding: 110px 0 120px;
  text-align: center;
}

.instagram h2 { font-size: clamp(36px, 4vw, 54px); margin-bottom: 56px; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}

.insta-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.insta-item .media {
  position: absolute;
  inset: 0;
  transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.insta-item:hover .media { transform: scale(1.08); }

/* ---------------------------------- */
/* Footer                             */
/* ---------------------------------- */
.site-footer {
  background: var(--dark-2);
  color: var(--muted-light);
  border-top: 1px solid var(--line-light);
  padding: 80px 0 0;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand .site-logo { color: var(--cream); font-size: 28px; }

.footer-brand p { margin-top: 16px; max-width: 30ch; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--cream);
  transition: all .2s;
}
.footer-social a:hover { background: var(--pink); border-color: var(--pink); color: var(--ink); }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 22px;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding: 24px 0;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------------------------------- */
/* Services page                      */
/* ---------------------------------- */
.services-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background: var(--dark-2);
  color: var(--cream);
  min-height: calc(100vh - 84px);
}

.services-hero-body {
  align-self: center;
  padding: 110px 40px 110px 56px;
}

.services-hero h1 {
  font-size: clamp(42px, 4.6vw, 68px);
  color: var(--cream);
  margin: 0;
}

.services-hero-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
}

.services-hero-media .media { position: relative; }

.services-hero-media .media-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  text-align: center;
  color: #fff;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
  margin: 0;
  z-index: 2;
}

/* Pink anchor strip under the hero */
.anchor-strip {
  background: var(--blush-mid);
  padding: 17px 0;
}

.anchor-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px 26px;
  list-style: none;
  margin: 0;
  padding: 0 40px;
}

.anchor-strip li {
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.anchor-strip li:not(:last-child)::after {
  content: "✦";
  font-size: 10px;
  color: rgba(255, 255, 255, .75);
}

.anchor-strip a {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
}
.anchor-strip a:hover { color: var(--ink); }

/* What we offer intro */
.offer-intro {
  background: var(--cream);
  padding: 120px 0 130px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 90px;
  align-items: start;
  padding: 0 80px;
}

.offer-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(34px, 2.6vw, 46px);
  font-weight: 400;
  color: var(--pink);
  margin: 0;
  line-height: 1.45;
}

.offer-intro p {
  color: #958c82;
  font-size: 19px;
  line-height: 1.95;
  max-width: 46em;
  margin: 0 0 2em;
}

.offer-intro .link-arrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .18em;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--pink);
}

@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: 1fr; gap: 30px; padding: 0 28px; }
}

/* Sticky category nav */
.menu-nav {
  background: var(--dark-2);
  position: sticky;
  top: 84px;
  z-index: 30;
}

.menu-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 24px;
  list-style: none;
  margin: 0;
  padding: 0 40px;
}

.menu-nav a {
  display: inline-block;
  padding: 21px 0 18px;
  border-bottom: 2px solid transparent;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-light);
  transition: color .2s;
}
.menu-nav a:hover { color: var(--cream); }
.menu-nav a.is-active { color: var(--cream); border-bottom-color: var(--pink); }

/* Price list sections */
.menu-section { padding: 80px 0; scroll-margin-top: 140px; }
.menu-section.bg-pink { background: #f6e2e7; }
.menu-section.bg-cream { background: var(--cream); }
.menu-section.bg-dark { background: var(--dark); color: var(--cream); }

.menu-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 26px;
  margin: 0 0 36px;
}
.menu-title::before { content: "✦"; color: var(--pink); font-size: 14px; }
.bg-dark .menu-title { color: var(--cream); }

.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 30px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row:last-child { border-bottom: 0; }
.bg-dark .menu-row { border-color: var(--line-light); }

.menu-item-name { font-weight: 500; font-size: 16px; }

.menu-item-desc {
  font-size: 14px;
  color: var(--muted);
  margin: 5px 0 0;
  max-width: 72ch;
  line-height: 1.6;
}
.bg-dark .menu-item-desc { color: var(--muted-light); }

.menu-price {
  color: var(--blush-dark);
  font-weight: 600;
  white-space: nowrap;
}

/* Packages */
.packages {
  background: var(--cream);
  padding: 110px 0;
  text-align: center;
}

.packages h2 { font-size: clamp(34px, 3.8vw, 50px); margin-bottom: 12px; }

.packages-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 56px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.package-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 14px 14px 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.package-card .media { aspect-ratio: 4 / 3; }

.package-body {
  padding: 24px 14px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.package-card h3 { font-size: 22px; font-weight: 400; margin: 0 0 16px; }

.pkg-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 9px 0;
}

.pkg-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a59c92;
}

.pkg-price {
  color: var(--blush-dark);
  font-weight: 600;
  font-size: 19px;
  white-space: nowrap;
}

.pkg-old {
  color: #a59c92;
  font-weight: 400;
  font-size: 14px;
  text-decoration: line-through;
  margin-left: 12px;
}

.package-card .btn {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 15px 20px;
}

.btn-pink { background: var(--blush-dark); color: var(--white); }
.btn-pink:hover { background: var(--ink); color: var(--cream); }

/* Ready to glow CTA */
.glow-cta {
  background: var(--dark-2);
  color: var(--cream);
  padding: 120px 28px 130px;
  text-align: center;
}

.glow-cta h2 { font-size: clamp(38px, 4.2vw, 58px); color: var(--cream); margin-bottom: 16px; }

.glow-cta .glow-sub {
  font-size: 16px;
  letter-spacing: .04em;
  color: var(--muted-light);
  margin-bottom: 44px;
}

.glow-cta .glow-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1024px) {
  .services-hero { grid-template-columns: 1fr; }
  .services-hero-body { padding: 80px 28px; }
  .offer-grid { grid-template-columns: 1fr; gap: 24px; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .services-hero-media { grid-template-columns: 1fr; }
  .services-hero-media .media { min-height: 320px; }
  .menu-nav { position: static; }
  .packages-grid { grid-template-columns: 1fr; }
  .menu-row { flex-direction: column; gap: 6px; }
}

/* ---------------------------------- */
/* Contact page                       */
/* ---------------------------------- */
.contact-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--cream);
  padding: 110px 0 120px;
}

.contact-hero-watermark {
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-size: clamp(140px, 16vw, 260px);
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(249, 244, 238, .05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.contact-hero .wrap { position: relative; z-index: 1; }

.contact-hero h1 {
  font-size: clamp(48px, 5.6vw, 84px);
  color: var(--cream);
  margin: 0 0 22px;
}

.contact-hero h1 .accent { color: var(--blush); }

.contact-hero p {
  color: var(--muted-light);
  font-size: 15.5px;
  max-width: 52ch;
  margin: 0;
  line-height: 1.8;
}

/* Split: info + form */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
}

.contact-info {
  background: var(--cream-deep);
  padding: 90px 56px 90px;
}

.info-block { margin-bottom: 52px; }
.info-block:last-child { margin-bottom: 0; }

.info-block h2 {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--warm-gray);
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin: 0 0 20px;
}

.info-block p { color: var(--warm-gray); font-size: 15.5px; margin: 0 0 4px; line-height: 1.8; }

.info-block .btn { margin: 10px 10px 0 0; padding: 14px 28px; }

.info-social {
  display: flex;
  gap: 22px;
}

.info-social a {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--warm-gray);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--warm-gray);
}
.info-social a:hover { color: var(--blush-dark); border-color: var(--blush-dark); }

/* Form column */
.contact-form-col {
  background: var(--white);
  padding: 90px 70px;
}

.contact-form-col h2 { font-size: clamp(28px, 2.6vw, 38px); margin: 0 0 10px; }

.contact-form-col .form-sub { color: var(--warm-gray); font-size: 15px; margin-bottom: 44px; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form .field { margin-bottom: 26px; }

.contact-form label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.contact-form label .req { color: var(--blush-dark); margin-left: 2px; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 17px 18px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--charcoal);
  outline: none;
  transition: border-color .2s;
}

.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--blush-dark); }

.contact-form ::placeholder { color: #b3a8a0; }

.contact-form textarea { min-height: 150px; resize: vertical; }

.contact-form button {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: 0;
}

/* Video CTA band */
.contact-cta {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 110px 0;
}

.contact-cta video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(44, 36, 36, .72), rgba(44, 36, 36, .15));
}

.contact-cta .wrap { position: relative; z-index: 1; }

.contact-cta h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  color: var(--white);
  margin: 0 0 30px;
}

.contact-cta h2 .accent { color: var(--blush); }

/* Map section */
.contact-map {
  position: relative;
  min-height: 520px;
  background: var(--cream-deep);
}

.contact-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.85);
}

.map-card {
  position: absolute;
  top: 56px;
  left: 56px;
  z-index: 2;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(44, 36, 36, .14);
  padding: 32px 36px;
  max-width: 340px;
}

.map-card .eyebrow { margin-bottom: 12px; }
.map-card .eyebrow::before { display: none; }

.map-card p { color: var(--warm-gray); font-size: 14.5px; margin: 0 0 3px; line-height: 1.7; }

.map-card .link-arrow {
  display: inline-block;
  margin-top: 16px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--blush-dark);
  color: var(--blush-dark);
}

@media (max-width: 1024px) {
  .contact-main { grid-template-columns: 1fr; }
  .contact-form-col { padding: 70px 28px; }
  .contact-info { padding: 70px 28px; }
}

@media (max-width: 720px) {
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .map-card { top: 24px; left: 24px; right: 24px; }
}

/* ---------------------------------- */
/* Generic inner pages                */
/* ---------------------------------- */
.page-hero {
  background: var(--cream-2);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(38px, 4.5vw, 56px); margin: 0; }

.page-content { padding: 70px 0 90px; }

/* ---------------------------------- */
/* Responsive                         */
/* ---------------------------------- */
@media (max-width: 1024px) {
  .hero, .about, .why { grid-template-columns: 1fr; }
  .hero-content, .about-body, .why-body {
    max-width: none;
    margin: 0;
    padding: 70px 28px;
  }
  .hero-media { min-height: 480px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 20px 28px 28px;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 18px; }
  .nav-toggle { display: block; }
  .header-book { display: none; }

  .strip-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .why-media { min-height: 720px; }
  .tech-card { left: 16px; right: 16px; bottom: 16px; padding: 26px 24px 30px; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .cta { padding: 100px 28px; }
}
