:root {
  --burgundy: #5b0023;
  --burgundy-dark: #3d0018;
  --burgundy-soft: #741033;
  --blush: #ead0d2;
  --blush-light: #f6e8e8;
  --rose-muted: #c9959d;
  --cream: #fff8f3;
  --ivory: #fffdf9;
  --warm-white: #faf6f1;
  --gold: #c99a4a;
  --gold-soft: #e1c88f;
  --gold-light: #f3dfae;
  --text-dark: #2a1820;
  --text-muted: #6f5a61;
  --border-soft: rgba(201, 154, 74, 0.45);
  --shadow-soft: 0 18px 45px rgba(91, 0, 35, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
.serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.75;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(16px);
}

.announcement-bar {
  min-height: 36px;
  padding: 0.45rem 1rem;
  background: var(--burgundy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.announcement-bar a {
  color: var(--cream);
  white-space: nowrap;
}

.main-nav {
  width: min(1240px, calc(100% - 2rem));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(168px, 16vw, 228px);
}

.brand-logo,
.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-logo {
  max-height: 70px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: calc(100% - 0.2rem);
  left: 50%;
  width: 210px;
  transform: translateX(-50%) translateY(8px);
  visibility: hidden;
  opacity: 0;
  list-style: none;
  padding: 0.65rem;
  margin: 0;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
}

.dropdown a {
  width: 100%;
  min-height: 36px;
  padding: 0 0.55rem;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border-soft);
  border-radius: 6px;
  background: var(--ivory);
  color: var(--burgundy);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.85rem 1.4rem;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 12px 28px rgba(91, 0, 35, 0.22);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--gold);
}

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

.hero-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(234, 208, 210, 0.72), transparent 34%),
    radial-gradient(circle at 78% 4%, rgba(243, 223, 174, 0.34), transparent 26%),
    linear-gradient(135deg, #fff8f3 0%, #f9eeee 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -24%;
  width: 58vw;
  height: 110%;
  background: linear-gradient(145deg, rgba(116, 16, 51, 0.14), rgba(234, 208, 210, 0.72));
  border-left: 1px solid rgba(201, 154, 74, 0.22);
  border-bottom-left-radius: 56% 48%;
}

.hero-curve {
  position: absolute;
  color: rgba(201, 154, 74, 0.42);
  pointer-events: none;
}

.curve-one {
  left: -5rem;
  bottom: -10rem;
  width: min(44vw, 540px);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: clamp(620px, 72vh, 760px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  align-items: center;
  gap: 4rem;
  padding: 3rem 0;
}

.eyebrow {
  color: var(--burgundy);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero-title {
  max-width: 650px;
  margin-top: 1rem;
  color: var(--burgundy);
  font-size: clamp(4rem, 6vw, 6.5rem);
  line-height: 0.95;
}

.beauty-word {
  display: inline-block;
  color: var(--gold);
  font-family: "Great Vibes", cursive;
  font-size: 1.12em;
  font-weight: 400;
  text-transform: none;
}

.hero-text {
  max-width: 570px;
  margin-top: 1.4rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-media {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border: 1px solid var(--gold);
  border-radius: 38% 10px 38% 10px;
  padding: 0.72rem;
  background: rgba(255, 253, 249, 0.64);
  box-shadow: var(--shadow-soft);
}

.hero-image-frame::before {
  content: "✦";
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  z-index: 1;
  color: var(--gold-light);
  font-size: 1.8rem;
}

.hero-image-frame img {
  width: 100%;
  height: clamp(470px, 58vw, 680px);
  object-fit: cover;
  object-position: center;
  border-radius: 38% 8px 38% 8px;
}

.hero-badge {
  position: absolute;
  left: -3.4rem;
  top: 50%;
  width: 148px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.18rem;
  background: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.hero-badge::after {
  content: "✦";
  color: var(--gold);
  font-size: 1rem;
}

.featured-treatments,
.beauty-journey,
.testimonials,
.social-gallery {
  padding: 5rem 0;
  background: var(--ivory);
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-heading h2,
.results-head h2,
.offer-copy h2,
.contact-booking h2,
.site-footer h2 {
  color: var(--burgundy);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.section-heading h2::before,
.section-heading h2::after {
  content: "";
  width: min(16vw, 150px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-heading > p:not(.ornament) {
  color: var(--text-muted);
}

.ornament {
  color: var(--gold);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(91, 0, 35, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.treatment-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 22px 48px rgba(91, 0, 35, 0.14);
}

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

.card-icon {
  position: absolute;
  top: 150px;
  left: 50%;
  width: 50px;
  aspect-ratio: 1;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 253, 249, 0.98), rgba(246, 232, 232, 0.96) 66%),
    var(--blush-light);
  border: 1px solid rgba(201, 154, 74, 0.82);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.3rem;
  box-shadow:
    0 0 0 4px rgba(255, 253, 249, 0.92),
    0 10px 20px rgba(91, 0, 35, 0.12),
    inset 0 0 0 1px rgba(255, 248, 243, 0.78);
}

.card-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  filter: drop-shadow(0 1px 0 rgba(91, 0, 35, 0.18));
}

.card-body {
  padding: 2.35rem 1rem 1.2rem;
  text-align: center;
}

.card-body h3 {
  color: var(--burgundy);
  font-size: 1.28rem;
  text-transform: uppercase;
}

.card-body p {
  min-height: 100px;
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

.card-body a {
  display: inline-flex;
  margin-top: 0.75rem;
  color: var(--burgundy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-section,
.real-results,
.contact-booking,
.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(201, 154, 74, 0.16), transparent 28%),
    radial-gradient(circle at 90% 70%, rgba(234, 208, 210, 0.12), transparent 26%),
    var(--burgundy);
  color: var(--cream);
}

.about-section::before,
.real-results::before,
.contact-booking::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(201, 154, 74, 0.22);
  pointer-events: none;
}

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
  padding: 5rem 0;
}

.about-image {
  border: 1px solid var(--gold);
  border-radius: 24px 80px 24px 80px;
  padding: 0.6rem;
  background: rgba(255, 248, 243, 0.08);
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 64% center;
  border-radius: 20px 74px 20px 74px;
}

.about-copy h2 {
  margin-top: 0.8rem;
  color: var(--cream);
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  line-height: 0.98;
}

.about-copy p:not(.eyebrow, .script-note) {
  margin-top: 1.3rem;
  color: rgba(255, 248, 243, 0.82);
}

.script-note {
  margin-top: 1.2rem;
  color: var(--gold-light);
  font-family: "Great Vibes", cursive;
  font-size: 2.6rem;
  line-height: 1.1;
}

.about-features {
  display: grid;
  gap: 1.35rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(201, 154, 74, 0.35);
}

.about-features article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
}

.about-features span {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
}

.about-features h3 {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.about-features p {
  color: rgba(255, 248, 243, 0.76);
  font-size: 0.9rem;
  line-height: 1.55;
}

.journey-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
}

.journey-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  border-top: 1px dashed rgba(201, 154, 74, 0.7);
}

.journey-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  padding: 0.5rem;
  text-align: center;
}

.step-number {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(91, 0, 35, 0.08);
  color: var(--burgundy);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.step-icon {
  color: var(--gold);
  font-size: 1.35rem;
}

.journey-step h3 {
  color: var(--burgundy);
  font-size: 1.2rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.journey-step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.real-results {
  padding: 5rem 0;
}

.results-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.results-head h2 {
  color: var(--cream);
}

.carousel-controls {
  display: flex;
  gap: 0.55rem;
}

.carousel-btn,
.social-links a {
  width: 44px;
  aspect-ratio: 1;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: transparent;
  color: var(--gold-light);
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.carousel-btn:hover,
.social-links a:hover {
  background: var(--gold);
  color: var(--burgundy-dark);
  transform: translateY(-2px);
}

.carousel-btn:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.results-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 1rem;
}

.results-track::-webkit-scrollbar {
  height: 0;
}

.result-card {
  scroll-snap-align: start;
  min-width: 0;
}

.before-after {
  overflow: hidden;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: rgba(255, 248, 243, 0.08);
  padding: 0.45rem;
}

.before-after img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  filter: saturate(0.92);
}

.result-card h3 {
  margin-top: 0.9rem;
  color: var(--gold-light);
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
}

.light-btn {
  position: relative;
  z-index: 1;
  display: flex;
  width: max-content;
  margin-top: 1.6rem;
  color: var(--cream);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  position: relative;
  min-height: 260px;
  padding: 2rem;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(91, 0, 35, 0.06);
}

.quote {
  position: absolute;
  top: 0.4rem;
  right: 1.5rem;
  color: rgba(91, 0, 35, 0.12);
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card p {
  color: var(--text-muted);
}

.testimonial-card strong {
  display: block;
  margin-top: 1.4rem;
  color: var(--burgundy);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stars {
  display: block;
  margin-top: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.offer-banner {
  padding: 3rem 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 243, 0.95), rgba(255, 248, 243, 0.92) 20%, rgba(246, 232, 232, 0.8)),
    radial-gradient(circle at 82% 24%, rgba(243, 223, 174, 0.7), transparent 24%),
    linear-gradient(120deg, var(--blush-light), var(--cream) 48%, #ead0d2);
  border-block: 1px solid var(--border-soft);
}

.offer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
  padding-left: clamp(0rem, 16vw, 13rem);
}

.offer-inner img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 1px solid var(--gold);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.offer-copy h2 {
  margin-top: 0.55rem;
}

.offer-copy p:not(.eyebrow) {
  margin-top: 0.75rem;
  color: var(--text-muted);
}

.offer-action {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.offer-action small {
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.gallery-track img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  min-width: 140px;
  object-fit: cover;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(91, 0, 35, 0.08);
  scroll-snap-align: start;
  transition: transform 250ms ease;
}

.gallery-track img:hover {
  transform: scale(1.025);
}

.social-gallery .btn {
  margin-inline: auto;
}

.contact-booking {
  padding: 5rem 0;
}

.contact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.18fr 0.82fr;
  gap: 2rem;
  align-items: start;
}

.contact-details h2,
.clinic-hours h2,
.form-card h2 {
  color: var(--cream);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.contact-details p:not(.eyebrow) {
  margin-top: 1rem;
  color: rgba(255, 248, 243, 0.8);
}

.contact-details ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
  color: var(--gold-light);
}

.form-card {
  background: var(--blush-light);
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.form-card h2 {
  color: var(--burgundy);
  text-align: center;
}

.form-field {
  margin-top: 1rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(91, 0, 35, 0.15);
  background: var(--ivory);
  color: var(--text-dark);
  padding: 0.85rem 1rem;
  border-radius: 6px;
}

textarea {
  resize: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-card .btn {
  width: 100%;
  margin-top: 1.2rem;
}

.error-message {
  min-height: 1.2rem;
  margin-top: 0.25rem;
  color: var(--burgundy-dark);
  font-size: 0.78rem;
  line-height: 1.4;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--burgundy-soft);
}

.success-message {
  min-height: 1.35rem;
  margin-top: 0.9rem;
  color: var(--burgundy);
  font-weight: 700;
  text-align: center;
}

.clinic-hours {
  color: rgba(255, 248, 243, 0.86);
  padding-bottom: 0.85rem;
}

.clinic-hours dl {
  display: grid;
  gap: 0.9rem;
  margin: 1.4rem 0 2rem;
}

.clinic-hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(201, 154, 74, 0.28);
}

.clinic-hours dt {
  color: var(--gold-light);
  font-weight: 700;
}

.clinic-hours dd {
  margin: 0;
}

.clinic-hours h3 {
  color: var(--gold-light);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.instagram-link {
  color: var(--gold-light);
}

.instagram-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
}

.footer-brand {
  max-width: 245px;
  padding: 1rem;
  background: var(--ivory);
  border: 1px solid rgba(201, 154, 74, 0.55);
  border-radius: 10px;
}

.site-footer h2 {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.14em;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 248, 243, 0.76);
  font-size: 0.88rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  border-top: 1px solid rgba(201, 154, 74, 0.32);
  color: rgba(255, 248, 243, 0.72);
  font-size: 0.8rem;
  text-align: center;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* Reference alignment pass: tighter editorial homepage like the supplied mockup. */
.site-header {
  box-shadow: 0 1px 0 rgba(201, 154, 74, 0.22);
}

.main-nav {
  min-height: 86px;
}

.brand {
  width: clamp(120px, 10.5vw, 150px);
}

.brand-logo {
  max-height: 82px;
}

.hero-section {
  border-bottom: 1px solid rgba(201, 154, 74, 0.34);
}

.hero-section::after {
  right: -2%;
  top: -5%;
  width: 58vw;
  height: 108%;
  border-bottom-left-radius: 42% 54%;
}

.hero-inner {
  min-height: clamp(425px, 46vw, 520px);
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  gap: 2.2rem;
  padding: 1.4rem 0 1.6rem;
}

.hero-copy {
  padding-left: clamp(0rem, 2vw, 2.2rem);
}

.hero-title {
  max-width: 590px;
  font-size: clamp(3.15rem, 4.65vw, 4.95rem);
  line-height: 1.02;
}

.hero-text {
  max-width: 485px;
  margin-top: 0.95rem;
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 1.45rem;
}

.hero-image-frame {
  border-radius: 26% 4px 0 0;
  padding: 0.42rem;
}

.hero-image-frame img {
  height: clamp(355px, 42vw, 468px);
  object-position: center;
  border-radius: 26% 4px 0 0;
}

.hero-badge {
  left: -2.4rem;
  width: 122px;
  font-size: 0.68rem;
}

.featured-treatments,
.beauty-journey,
.testimonials,
.social-gallery {
  padding: 1.65rem 0;
}

.section-heading {
  gap: 0.15rem;
  margin-bottom: 1.05rem;
}

.section-heading h2,
.results-head h2,
.offer-copy h2,
.contact-booking h2,
.site-footer h2 {
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
}

.treatment-grid {
  gap: 0.75rem;
}

.treatment-card {
  border-radius: 8px;
}

.treatment-card img {
  height: 142px;
  border: 5px solid var(--ivory);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.card-icon {
  top: 120px;
  width: 42px;
  font-size: 1rem;
}

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

.card-body {
  padding: 2rem 0.8rem 0.85rem;
}

.card-body h3 {
  font-size: 1.05rem;
}

.card-body p {
  min-height: 72px;
  margin-top: 0.35rem;
  font-size: 0.74rem;
  line-height: 1.45;
}

.card-body a {
  margin-top: 0.35rem;
  font-size: 0.62rem;
}

.about-inner {
  grid-template-columns: 0.96fr 1.12fr 0.78fr;
  gap: 1.4rem;
  padding: 1.15rem 0;
}

.about-image {
  border-radius: 8px 72px 8px 8px;
  padding: 0.35rem;
}

.about-image img {
  height: 240px;
  border-radius: 6px 66px 6px 6px;
  object-position: 64% center;
}

.about-copy h2 {
  margin-top: 0.45rem;
  font-size: clamp(1.65rem, 2.55vw, 2.45rem);
  line-height: 1.04;
}

.about-copy p:not(.eyebrow, .script-note) {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  line-height: 1.55;
}

.script-note {
  margin-top: 0.4rem;
  font-size: 1.9rem;
}

.about-features {
  gap: 0.7rem;
  padding-left: 1.15rem;
}

.about-features article {
  grid-template-columns: 42px 1fr;
  gap: 0.65rem;
}

.about-features span {
  width: 42px;
}

.about-features h3 {
  font-size: 1rem;
}

.about-features p {
  font-size: 0.72rem;
  line-height: 1.4;
}

.journey-steps {
  gap: 0.75rem;
}

.journey-steps::before {
  top: 27px;
}

.journey-step {
  gap: 0.35rem;
  padding: 0;
}

.step-number {
  width: 54px;
  font-size: 1.15rem;
}

.step-icon {
  font-size: 1rem;
}

.journey-step h3 {
  font-size: 0.88rem;
}

.journey-step p {
  max-width: 190px;
  font-size: 0.72rem;
  line-height: 1.38;
}

.real-results {
  padding: 1rem 0 1.2rem;
}

.results-head {
  justify-content: center;
  min-height: 3rem;
  margin-bottom: 0.85rem;
}

.results-head h2 {
  color: var(--cream);
}

.carousel-controls {
  position: absolute;
  inset-inline: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  justify-content: space-between;
  pointer-events: none;
}

.carousel-btn {
  width: 36px;
  background: rgba(91, 0, 35, 0.88);
  box-shadow:
    0 0 0 3px rgba(255, 248, 243, 0.08),
    0 8px 18px rgba(0, 0, 0, 0.16);
  pointer-events: auto;
}

.results-track {
  grid-auto-columns: calc((100% - 4.8rem) / 4);
  gap: 1.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 0.05rem 0.35rem;
}

.before-after {
  border-radius: 4px;
  padding: 0.25rem;
}

.before-after img {
  height: 116px;
  border-radius: 3px;
  object-position: center;
}

.result-card h3 {
  margin-top: 0.45rem;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
}

.light-btn {
  min-height: 34px;
  margin: 0.7rem auto 0;
  padding: 0.45rem 1.8rem;
}

.testimonials {
  padding-top: 1rem;
  padding-bottom: 1.25rem;
}

.testimonial-grid {
  gap: 1rem;
}

.testimonial-card {
  min-height: 112px;
  padding: 1rem 1.25rem 0.9rem 3.4rem;
  border-radius: 8px;
}

.quote {
  left: 1.1rem;
  right: auto;
  top: 0.7rem;
  color: var(--burgundy);
  font-size: 2.6rem;
}

.testimonial-card p {
  font-size: 0.74rem;
  line-height: 1.45;
}

.testimonial-card strong {
  margin-top: 0.55rem;
  font-size: 0.65rem;
}

.stars {
  display: inline-block;
  margin-top: 0.35rem;
  margin-left: 0.6rem;
  font-size: 0.7rem;
}

.offer-banner {
  position: relative;
  padding: 0.7rem 0;
  overflow: hidden;
  background-size: auto, auto, auto;
}

.offer-inner {
  grid-template-columns: 1fr 250px;
  gap: 1.5rem;
  padding-left: clamp(9rem, 18vw, 15rem);
}

.offer-copy h2 {
  margin-top: 0.1rem;
  font-size: clamp(1.55rem, 2.45vw, 2.45rem);
}

.offer-copy p:not(.eyebrow) {
  margin-top: 0.2rem;
  font-size: 0.9rem;
}

.offer-action .btn {
  min-width: 230px;
}

.social-gallery {
  padding: 0.75rem 0 0.9rem;
}

.social-gallery .container {
  text-align: center;
}

.social-gallery .section-heading {
  margin-bottom: 0.8rem;
}

.gallery-track {
  grid-template-columns: repeat(5, minmax(135px, 1fr));
  gap: 0.75rem;
  max-width: 920px;
  margin: 0 auto 0.8rem;
}

.gallery-track img {
  min-width: 0;
  height: auto;
  max-height: 188px;
  border-radius: 5px;
}

.social-gallery .btn {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  padding: 0.48rem 1.45rem;
}

.contact-booking {
  padding: 1.1rem 0 0.9rem;
}

.contact-grid {
  grid-template-columns: 0.78fr 1.12fr 0.8fr;
  gap: 1.5rem;
}

.contact-details h2,
.clinic-hours h2,
.form-card h2 {
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
}

.contact-details p:not(.eyebrow) {
  margin-top: 0.32rem;
  font-size: 0.8rem;
  line-height: 1.45;
}

.contact-details ul {
  gap: 0.34rem;
  margin-top: 0.65rem;
  font-size: 0.78rem;
}

.form-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.58rem;
  padding: 0.8rem;
  border-radius: 10px;
}

.form-card h2 {
  grid-column: 1 / -1;
  margin-bottom: 0.1rem;
}

.form-field {
  margin-top: 0;
}

.form-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form-field:nth-of-type(4) {
  grid-row: span 2;
}

input,
select,
textarea {
  padding: 0.52rem 0.68rem;
  font-size: 0.76rem;
}

textarea {
  min-height: 82px;
}

.form-card .btn {
  width: 100%;
  min-height: 38px;
  margin-top: 0;
  padding: 0.58rem 1rem;
}

.error-message {
  min-height: 0;
  margin-top: 0.1rem;
  font-size: 0.68rem;
}

.success-message {
  grid-column: 1 / -1;
  min-height: 0;
  margin-top: 0;
  font-size: 0.75rem;
}

.clinic-hours dl {
  gap: 0.4rem;
  margin: 0.9rem 0 1.05rem;
  font-size: 0.8rem;
}

.clinic-hours dl div {
  padding-bottom: 0.35rem;
}

.clinic-hours h3 {
  font-size: 1.05rem;
}

.social-links a {
  width: 38px;
}

.site-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 154, 74, 0.36);
}

.footer-grid {
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 1.45rem;
  padding-bottom: 1.1rem;
}

.footer-brand {
  max-width: 210px;
  padding: 0.65rem;
  background: var(--ivory);
  border-color: rgba(201, 154, 74, 0.55);
}

.footer-logo {
  filter: none;
}

.site-footer h2 {
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
}

.site-footer a,
.site-footer span {
  margin-top: 0.28rem;
  font-size: 0.72rem;
}

.footer-bottom {
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
}

@media (min-width: 1024px) {
  .results-track {
    grid-auto-columns: calc((100% - 3rem) / 4);
  }
}

@media (max-width: 1120px) {
  .nav-links {
    gap: 0.85rem;
  }

  .nav-cta {
    display: none;
  }

  .treatment-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .card-body p {
    min-height: auto;
  }

  .about-inner,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-features,
  .clinic-hours {
    grid-column: 1 / -1;
  }

  .about-features {
    grid-template-columns: repeat(3, 1fr);
    padding-left: 0;
    padding-top: 2rem;
    border-left: 0;
    border-top: 1px solid rgba(201, 154, 74, 0.35);
  }

  .journey-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .journey-steps::before {
    display: none;
  }
}

@media (max-width: 900px) {
  .announcement-bar a {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-panel {
    position: fixed;
    inset: 120px 0 auto 0;
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--ivory);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    transform: translateY(-130%);
    visibility: hidden;
    transition: transform 260ms ease, visibility 260ms ease;
  }

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

  .nav-links {
    display: grid;
    gap: 0.25rem;
  }

  .nav-links a {
    width: 100%;
    justify-content: center;
  }

  .dropdown {
    position: static;
    width: 100%;
    transform: none;
    visibility: visible;
    opacity: 1;
    display: none;
    margin-top: 0.25rem;
    box-shadow: none;
  }

  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    display: grid;
    transform: none;
  }

  .nav-cta {
    display: inline-flex;
    justify-self: center;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.2rem;
    padding: 3rem 0 4rem;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-media {
    max-width: 620px;
    margin-inline: auto;
  }

  .hero-badge {
    left: 1rem;
    top: auto;
    bottom: 1rem;
    width: 124px;
    transform: none;
  }

  .offer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .offer-inner img {
    max-width: 520px;
    margin-inline: auto;
  }

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

@media (max-width: 720px) {
  .container,
  .main-nav {
    width: min(100% - 1.25rem, 1180px);
  }

  .main-nav {
    min-height: 78px;
  }

  .nav-panel {
    inset: 114px 0 auto 0;
  }

  .brand {
    width: clamp(154px, 46vw, 190px);
  }

  .brand-logo {
    max-height: 58px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-frame img {
    height: 420px;
  }

  .featured-treatments,
  .beauty-journey,
  .testimonials,
  .social-gallery,
  .real-results,
  .contact-booking {
    padding: 3rem 0;
  }

  .section-heading h2::before,
  .section-heading h2::after {
    width: 34px;
  }

  .treatment-grid,
  .about-inner,
  .about-features,
  .journey-steps,
  .testimonial-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-inner {
    padding: 3rem 0;
  }

  .about-features {
    gap: 1rem;
  }

  .journey-steps {
    gap: 1.8rem;
  }

  .journey-step {
    grid-template-columns: 72px 1fr;
    justify-items: start;
    text-align: left;
  }

  .step-number {
    grid-row: span 3;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.25rem;
  }
}

@media (max-width: 460px) {
  .announcement-bar {
    font-size: 0.62rem;
  }

  .hero-title {
    font-size: clamp(2.45rem, 13.4vw, 3.45rem);
  }

  .hero-inner {
    gap: 1.5rem;
    padding-top: 2rem;
  }

  .hero-text {
    margin-top: 1rem;
    font-size: 0.98rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-image-frame img {
    height: 320px;
  }

  .hero-badge {
    width: 104px;
    font-size: 0.62rem;
  }

  .card-body {
    padding-inline: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
