:root {
  --blush: #eec5c8;
  --blush-soft: #fbebec;
  --cream: #fffaf4;
  --warm: #f4eadc;
  --charcoal: #2e2928;
  --muted: #756865;
  --gold: #b89556;
  --gold-dark: #8b682f;
  --rose-deep: #7b4f51;
  --white: #ffffff;
  --line: rgba(184, 149, 86, 0.2);
  --shadow: 0 24px 60px rgba(63, 45, 41, 0.12);
  --shadow-soft: 0 16px 38px rgba(63, 45, 41, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 250, 244, 1)),
    radial-gradient(circle at 12% 8%, rgba(238, 197, 200, 0.24), transparent 30%);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3 {
  margin: 0;
  color: #332b29;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 86px;
  width: 100%;
  max-width: 100vw;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 244, 0.86);
  border-bottom: 1px solid rgba(184, 149, 86, 0.16);
  backdrop-filter: blur(20px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 250, 244, 0.96);
  box-shadow: 0 14px 34px rgba(63, 45, 41, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--gold);
  background: linear-gradient(145deg, #fff8ed, #f9dddd);
  border: 1px solid rgba(184, 149, 86, 0.36);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(184, 149, 86, 0.18);
}

.logo-mark::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(184, 149, 86, 0.24);
  border-radius: var(--radius);
}

.logo-mark svg {
  width: 29px;
  height: 29px;
  fill: currentColor;
}

.logo-text {
  display: grid;
  gap: 4px;
}

.logo strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  line-height: 0.84;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.9vw, 25px);
  flex: 1;
  color: #443b39;
  font-size: 0.9rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--gold);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #c7a66a, var(--gold-dark));
  box-shadow: 0 14px 26px rgba(143, 109, 51, 0.24);
}

.btn-primary:hover {
  box-shadow: 0 18px 36px rgba(143, 109, 51, 0.3);
}

.btn-light {
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn-outline {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.42);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(184, 149, 86, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(90vh - 86px);
  overflow: hidden;
  padding: clamp(92px, 12vw, 154px) clamp(20px, 6vw, 88px);
}

.hero::after {
  position: absolute;
  right: clamp(20px, 6vw, 88px);
  bottom: 28px;
  z-index: 1;
  width: min(230px, 32vw);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.55);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/salon-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(46, 41, 40, 0.74), rgba(46, 41, 40, 0.42) 50%, rgba(255, 250, 244, 0.04)),
    linear-gradient(0deg, rgba(46, 41, 40, 0.38), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  color: #fff;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2d9a6;
}

h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(4.1rem, 10vw, 8.8rem);
  letter-spacing: 0;
}

.slogan {
  margin-top: 10px;
  color: #f7e4bc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1;
}

.hero-copy {
  max-width: 590px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.75vw, 1.24rem);
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof strong {
  color: #f7e4bc;
}

.trust-banner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(184, 149, 86, 0.22);
  border-block: 1px solid rgba(184, 149, 86, 0.2);
}

.trust-banner span {
  display: grid;
  place-items: center;
  min-height: 76px;
  padding: 16px;
  background: #fff7f3;
  color: #5c4f4b;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(78px, 9vw, 126px) clamp(20px, 6vw, 88px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.88fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  max-width: calc(var(--max) + 176px);
  margin: 0 auto;
}

.section-copy,
.section-heading {
  max-width: 820px;
}

.section-heading {
  margin: 0 auto 46px;
  text-align: center;
}

h2 {
  font-size: clamp(2.65rem, 4.8vw, 4.8rem);
}

h3 {
  font-size: 1.74rem;
}

.section-copy > p,
.section-note,
.section-heading p,
.booking-banner p,
.consult-strip p,
.contact-card p,
.review-card p,
.featured-card p,
.service-card p {
  color: var(--muted);
}

.section-copy > p {
  margin-top: 22px;
  font-size: 1.03rem;
}

.section-note {
  padding-left: 18px;
  border-left: 2px solid var(--gold);
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.feature-list span,
.why-grid span {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid rgba(184, 149, 86, 0.22);
  border-radius: var(--radius);
  color: #5b4f4c;
  font-size: 0.88rem;
  font-weight: 800;
}

.about-card {
  position: relative;
}

.about-card img,
.featured-card img,
.gallery-card img {
  object-fit: cover;
  border-radius: var(--radius);
}

.about-card img {
  height: min(640px, 74vh);
  min-height: 440px;
  box-shadow: var(--shadow);
}

.floating-note,
.image-stat {
  position: absolute;
  padding: 20px;
  background: rgba(255, 250, 244, 0.94);
  border: 1px solid rgba(184, 149, 86, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-note {
  right: -24px;
  bottom: 30px;
  max-width: 285px;
}

.image-stat {
  top: 26px;
  left: -26px;
  max-width: 255px;
}

.floating-note strong,
.floating-note span,
.image-stat strong,
.image-stat span {
  display: block;
}

.floating-note strong,
.image-stat strong {
  color: #3e3431;
}

.floating-note span,
.image-stat span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.blush-band {
  background:
    linear-gradient(180deg, rgba(251, 235, 236, 0.92), rgba(255, 248, 245, 0.96)),
    linear-gradient(90deg, rgba(184, 149, 86, 0.08), transparent);
}

.cream-band {
  background: linear-gradient(180deg, var(--warm), #fff8f0);
}

.service-grid,
.featured-grid,
.gallery-grid,
.review-grid,
.why-grid,
.price-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.service-grid,
.featured-grid,
.gallery-grid,
.review-grid,
.why-grid,
.price-grid,
.contact-grid {
  max-width: var(--max);
  margin-inline: auto;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 236px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 149, 86, 0.17);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(63, 45, 41, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::after {
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  content: "";
  background: rgba(238, 197, 200, 0.22);
  border-radius: var(--radius);
}

.service-card:hover,
.gallery-card:hover,
.featured-card:hover,
.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 149, 86, 0.34);
  box-shadow: var(--shadow);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  color: var(--gold-dark);
  background: #fff6ec;
  border: 1px solid rgba(184, 149, 86, 0.22);
  border-radius: var(--radius);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.service-card h3,
.featured-card h3 {
  margin-bottom: 11px;
}

.service-card small {
  display: inline-block;
  margin-top: 20px;
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-grid {
  grid-template-columns: repeat(4, 1fr);
}

.featured-card,
.review-card,
.price-card,
.contact-form,
.contact-card {
  background: #fff;
  border: 1px solid rgba(184, 149, 86, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(63, 45, 41, 0.07);
}

.featured-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.featured-card img {
  height: 238px;
  border-radius: 0;
}

.featured-card div {
  padding: 24px;
}

.featured-card div > span,
.price-card-head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-card a,
.price-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.consult-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(30px, 5vw, 48px);
  background: #332b29;
  border: 1px solid rgba(184, 149, 86, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.consult-strip h2,
.consult-strip p {
  color: #fff;
}

.consult-strip .eyebrow {
  color: #f1d7a1;
}

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

.price-card {
  padding: clamp(28px, 4vw, 40px);
}

.price-card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(184, 149, 86, 0.22);
}

.price-card ul {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(119, 105, 103, 0.24);
}

.price-card li span {
  color: #4f4441;
  font-weight: 700;
}

.price-card strong {
  color: var(--gold-dark);
  white-space: nowrap;
}

.notice {
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 17px 18px;
  color: #655854;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(184, 149, 86, 0.22);
  border-radius: var(--radius);
  text-align: center;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
}

.gallery-card {
  position: relative;
  min-height: 266px;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(184, 149, 86, 0.14);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(63, 45, 41, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  height: 100%;
  min-height: 266px;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.gallery-large img {
  min-height: 556px;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  color: #fff;
  background: rgba(46, 41, 40, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.why-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.why-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: var(--radius);
  text-align: center;
}

.review-grid {
  grid-template-columns: repeat(4, 1fr);
}

.review-card {
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.review-card p {
  margin-bottom: 20px;
  font-size: 1.01rem;
}

.review-card strong {
  color: var(--gold-dark);
}

.booking-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 60px);
  background:
    linear-gradient(120deg, rgba(46, 41, 40, 0.91), rgba(78, 59, 54, 0.82)),
    url("assets/nails-beauty.png") center/cover;
  border: 1px solid rgba(184, 149, 86, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-banner h2,
.booking-banner p {
  color: #fff;
}

.booking-banner .eyebrow {
  color: #f1d7a1;
}

.contact-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

label {
  display: grid;
  gap: 8px;
  color: #4a403e;
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(119, 105, 103, 0.22);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--charcoal);
  background: #fffaf6;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(184, 149, 86, 0.28);
  border-color: var(--gold);
}

.full {
  grid-column: 1 / -1;
}

.contact-card {
  padding: clamp(26px, 4vw, 38px);
}

.contact-card h3 + p,
.contact-card p + p,
.contact-card p + h3 {
  margin-top: 14px;
}

.hours {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(119, 105, 103, 0.16);
}

.hours dt {
  font-weight: 800;
}

.hours dd {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.site-footer {
  padding: 62px clamp(20px, 6vw, 88px) 30px;
  color: #f7eee7;
  background:
    linear-gradient(180deg, #332b29, #292321);
}

.footer-grid {
  grid-template-columns: 1.4fr repeat(3, 1fr);
  max-width: var(--max);
  margin-inline: auto;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-logo strong {
  color: #fff;
}

.footer-logo small,
.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: #fff4df;
  font-size: 1.45rem;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0;
  color: #fff;
  background: rgba(184, 149, 86, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
}

.copyright {
  max-width: var(--max);
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.floating-book {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 18;
  display: none;
  min-height: 50px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, #c7a66a, var(--gold-dark));
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(46, 41, 40, 0.25);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1180px) {
  .service-grid,
  .featured-grid,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .gallery-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-large img {
    min-height: 266px;
  }

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

  .consult-strip .btn {
    width: max-content;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 78px;
  }

  .site-header {
    min-height: 76px;
    position: sticky;
    width: 100vw;
    max-width: 100vw;
  }

  .logo-mark {
    width: 46px;
    height: 46px;
  }

  .menu-toggle {
    display: flex !important;
    flex: 0 0 44px;
    position: fixed;
    top: 16px;
    right: 14px;
    z-index: 30;
    background: #fffaf4;
    box-shadow: 0 10px 24px rgba(63, 45, 41, 0.14);
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    max-width: calc(100vw - 32px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid rgba(184, 149, 86, 0.24);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 12px;
  }

  .hero {
    min-height: calc(90vh - 76px);
  }

  .split-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .image-stat {
    left: 18px;
  }

  .floating-note {
    right: 18px;
  }

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

  .trust-banner span:last-child {
    grid-column: 1 / -1;
  }

  .booking-banner {
    display: block;
    margin-inline: 20px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

  .logo strong {
    font-size: 1.46rem;
  }

  .logo small {
    font-size: 0.58rem;
  }

  h1 {
    font-size: clamp(3.15rem, 18vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.5rem);
  }

  h3 {
    font-size: 1.58rem;
  }

  .hero {
    min-height: calc(92vh - 76px);
    padding-top: 86px;
    align-items: end;
  }

  .hero::after {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(46, 41, 40, 0.86), rgba(46, 41, 40, 0.4) 74%, rgba(46, 41, 40, 0.2)),
      linear-gradient(90deg, rgba(46, 41, 40, 0.5), transparent);
  }

  .hero-actions,
  .booking-banner .hero-actions {
    flex-direction: column;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-block: 70px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .service-grid,
  .featured-grid,
  .gallery-grid,
  .review-grid,
  .price-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .about-card img {
    min-height: 360px;
  }

  .floating-note,
  .image-stat {
    position: static;
    max-width: none;
    margin-inline: 12px;
  }

  .floating-note {
    margin-top: -50px;
  }

  .image-stat {
    margin-top: 12px;
  }

  .consult-strip {
    margin-inline: 20px;
  }

  .consult-strip .btn {
    width: 100%;
  }

  .price-card-head {
    display: block;
  }

  .price-card li {
    align-items: flex-start;
  }

  .trust-banner span {
    min-height: 64px;
  }

  .floating-book {
    display: inline-flex;
    right: 16px;
    left: 16px;
    width: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Portfolio demo cleanup: keep the salon concept polished without pill/circle markers. */
.logo-mark,
.header-action,
.menu-toggle,
.hero-proof span,
.feature-list span,
.btn,
.gallery-card,
.price-card,
.team-card,
.testimonial-card,
.contact-card,
.booking-panel,
.consult-strip,
.floating-book,
.floating-note,
.image-stat,
input,
select,
textarea {
  border-radius: var(--radius);
}

.service-card {
  border-radius: var(--radius);
  padding-top: 30px;
}

.service-card span {
  display: none;
}
