:root {
  --ink: #2d2230;
  --muted: #766a73;
  --line: #eadbe1;
  --paper: #fffafc;
  --cream: #fff0e7;
  --rose: #d94f85;
  --blush: #f7c8d6;
  --coral: #ee8d75;
  --sage: #5d9a89;
  --champagne: #f6dfb8;
  --gold: #c99a4a;
  --wine: #842851;
  --plum: #352436;
  --shadow: 0 24px 80px rgba(82, 38, 61, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 200, 214, 0.45), transparent 31rem),
    radial-gradient(circle at 88% 12%, rgba(246, 223, 184, 0.28), transparent 25rem),
    linear-gradient(180deg, #fffafc 0%, #fff6f1 44%, #fffafc 100%);
  font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 251, 0.9);
  border-bottom: 1px solid rgba(234, 223, 227, 0.85);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background:
    linear-gradient(135deg, var(--wine), var(--rose) 52%, var(--coral));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(128, 40, 77, 0.25);
  font-weight: 800;
  isolation: isolate;
}

.brand-mark::after {
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  content: "";
}

.brand-mark span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--wine);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 73px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(46px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 251, 0.97) 0%, rgba(255, 250, 251, 0.84) 42%, rgba(255, 250, 251, 0.16) 100%),
    linear-gradient(0deg, rgba(46, 37, 50, 0.22), rgba(46, 37, 50, 0.02));
}

.hero-content {
  position: relative;
  width: min(680px, 100%);
  padding-bottom: 42px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 8vw, 8.2rem);
}

h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.6rem);
}

h3 {
  margin: 0;
  line-height: 1.25;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: #4c424e;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(128, 40, 77, 0.18);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose));
}

.btn.secondary {
  color: var(--wine);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(127, 41, 71, 0.25);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(560px, 100%);
  margin: 36px 0 0;
}

.hero-stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 223, 227, 0.86);
  border-radius: 8px;
}

.hero-stats dt {
  color: var(--wine);
  font-size: 1.28rem;
  font-weight: 800;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 5vw, 64px);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 64px);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.visual-story {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 64px) clamp(58px, 8vw, 94px);
  background: #fff;
}

.story-card {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 219, 225, 0.85);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.story-card.large {
  grid-row: span 2;
  min-height: 540px;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 18px;
  color: #fff;
  background: linear-gradient(135deg, rgba(53, 36, 54, 0.88), rgba(132, 40, 81, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.story-card figcaption span {
  display: block;
  color: var(--champagne);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-card figcaption strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.feature-strip div {
  min-height: 130px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.feature-strip strong,
.feature-strip span {
  display: block;
}

.feature-strip strong {
  color: var(--wine);
  font-size: 1.02rem;
}

.feature-strip span {
  margin-top: 8px;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  background: #fff;
}

.intro-text {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-text p:first-child {
  margin-top: 0;
}

.services {
  background: var(--cream);
}

.service-grid,
.product-grid,
.testimonial-grid,
.look-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.service-card,
.product-grid article,
blockquote,
.package-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(78, 42, 55, 0.06);
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card > img {
  width: calc(100% + 52px);
  max-width: none;
  height: 180px;
  margin: -26px -26px 22px;
  object-fit: cover;
}

.service-card::after {
  position: absolute;
  inset: auto 22px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--sage));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #fff;
  background: var(--sage);
  border-radius: 50%;
  font-weight: 800;
}

.service-card > img + .service-icon {
  position: absolute;
  top: 138px;
  right: 18px;
  margin-bottom: 0;
  background: linear-gradient(135deg, var(--wine), var(--rose));
  box-shadow: 0 12px 24px rgba(132, 40, 81, 0.22);
}

.service-card p,
.product-grid p,
blockquote p {
  margin: 12px 0 0;
  color: var(--muted);
}

.pricing-section {
  background: #fff;
}

.price-tools {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 38px;
}

.price-search {
  display: grid;
  gap: 8px;
  color: #4c424e;
  font-size: 0.92rem;
  font-weight: 800;
}

.price-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-btn {
  min-height: 42px;
  padding: 10px 14px;
  color: var(--wine);
  background: #fff4f7;
  border: 1px solid rgba(132, 40, 81, 0.16);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--wine), var(--rose));
}

.price-count {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.price-card {
  display: grid;
  gap: 8px;
  min-height: 166px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 250, 0.96)),
    #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(82, 38, 61, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: rgba(132, 40, 81, 0.28);
  box-shadow: var(--shadow);
}

.price-card.is-hidden {
  display: none;
}

.price-card span {
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.price-card strong {
  align-self: end;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.price-grid::after {
  display: none;
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--muted);
  background: #fff8fa;
  border: 1px dashed var(--line);
  border-radius: 8px;
  text-align: center;
  content: "No services match your search.";
}

.price-grid.has-no-results::after {
  display: block;
}

.products {
  background: #f5fbf8;
}

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

.packages {
  background:
    linear-gradient(135deg, rgba(128, 40, 77, 0.92), rgba(59, 38, 56, 0.96)),
    var(--plum);
  color: #fff;
}

.beauty-note {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 250, 252, 0.98), rgba(255, 240, 231, 0.74)),
    #fff;
}

.beauty-note-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.beauty-note-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.mini-palette {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.swatch {
  width: 44px;
  height: 44px;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(82, 38, 61, 0.16);
}

.swatch.rose {
  background: var(--rose);
}

.swatch.champagne {
  background: var(--champagne);
}

.swatch.plum {
  background: var(--plum);
}

.swatch.sage {
  background: var(--sage);
}

.packages .eyebrow {
  color: #ffd7c9;
}

.packages .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.package-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.package-card.featured {
  background: #fff;
  color: var(--ink);
  transform: translateY(-10px);
}

.package-card span {
  color: #ffd7c9;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-card.featured span {
  color: var(--rose);
}

.package-card p {
  color: rgba(255, 255, 255, 0.76);
}

.package-card.featured p {
  color: var(--muted);
}

.package-card strong {
  display: block;
  margin-top: 18px;
  color: #ffd7c9;
  font-size: 1.12rem;
}

.package-card.featured strong {
  color: var(--wine);
}

.hygiene {
  background: #fff;
}

.hygiene-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(26px, 5vw, 54px);
  color: #fff;
  background: #314d47;
  border-radius: 8px;
}

.hygiene-panel .eyebrow {
  color: #ffd9c9;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ffd9c9;
  font-weight: 900;
}

.gallery {
  background: var(--paper);
}

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

.look {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow);
}

.look p {
  margin: 8px 0 0;
  color: rgba(46, 37, 50, 0.72);
}

.look.soft {
  background: linear-gradient(135deg, #fff 0%, #f5dce2 100%);
}

.look.coral {
  background: linear-gradient(135deg, #fff0e8 0%, #e98270 100%);
}

.look.mint {
  background: linear-gradient(135deg, #f7fffb 0%, #9fcfc0 100%);
}

.look.berry {
  color: #fff;
  background: linear-gradient(135deg, #c95c7c 0%, #602238 100%);
}

.look.berry p {
  color: rgba(255, 255, 255, 0.78);
}

.testimonials {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 6vw, 72px);
  background: #fff;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

blockquote {
  margin: 0;
}

blockquote cite {
  display: block;
  margin-top: 18px;
  color: var(--wine);
  font-style: normal;
  font-weight: 800;
}

.faq {
  background: var(--cream);
}

.review-section {
  background:
    linear-gradient(135deg, rgba(255, 250, 252, 0.98), rgba(255, 240, 231, 0.86)),
    #fff;
}

.review-form {
  display: grid;
  gap: 18px;
  max-width: 820px;
  margin: 38px auto 0;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.review-form label {
  display: grid;
  gap: 8px;
  color: #4c424e;
  font-size: 0.92rem;
  font-weight: 800;
}

.rating-field,
.recommend-field {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.rating-field legend,
.recommend-field legend {
  margin-bottom: 10px;
  color: #4c424e;
  font-size: 0.92rem;
  font-weight: 800;
}

.star-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  opacity: 0;
}

.star-rating label {
  display: inline-block;
  color: #d7c7cd;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
  color: var(--gold);
}

.star-rating label:hover {
  transform: translateY(-2px);
}

.rating-hint,
.privacy-note,
.review-note {
  margin: 0;
  color: var(--muted);
}

.privacy-note {
  font-size: 0.92rem;
}

.review-note {
  min-height: 24px;
  color: var(--sage);
  font-weight: 800;
}

.recommend-field {
  display: grid;
  gap: 10px;
}

.recommend-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-weight: 700;
}

.recommend-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--wine);
}

.faq-list {
  max-width: 920px;
  margin: 36px auto 0;
}

details {
  padding: 20px 22px;
  margin-bottom: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  background: #fff;
}

.contact-info > p:not(.eyebrow),
address,
.hours,
.contact-note {
  color: var(--muted);
}

address {
  margin-top: 24px;
  font-style: normal;
}

address a {
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

.quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hours {
  margin-top: 30px;
}

.hours h3 {
  color: var(--ink);
}

.hours p {
  margin: 6px 0;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: #4c424e;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #ddced5;
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(201, 92, 124, 0.22);
  border-color: var(--rose);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffd9c9;
  font-weight: 800;
  text-decoration: none;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 8px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.floating-contact a {
  padding: 10px 13px;
  color: #fff;
  background: var(--wine);
  border-radius: 7px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.floating-contact a + a {
  color: var(--wine);
  background: #fff2ed;
}

@media (max-width: 980px) {
  .service-grid,
  .product-grid,
  .testimonial-grid,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-tools {
    grid-template-columns: 1fr;
  }

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

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

  .intro,
  .split,
  .hygiene-panel,
  .testimonials,
  .contact,
  .beauty-note {
    grid-template-columns: 1fr;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .visual-story {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .story-card.large {
    grid-row: auto;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 69px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

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

  .hero {
    min-height: calc(100svh - 69px);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 250, 251, 0.96) 0%, rgba(255, 250, 251, 0.86) 72%, rgba(255, 250, 251, 0.48) 100%),
      linear-gradient(0deg, rgba(46, 37, 50, 0.16), rgba(46, 37, 50, 0.02));
  }

  .visual-story {
    padding-inline: 18px;
  }

  .story-card,
  .story-card.large {
    min-height: 310px;
  }

  h1 {
    max-width: 10ch;
  }

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

  .service-grid,
  .product-grid,
  .testimonial-grid,
  .look-grid,
  .package-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: none;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
  }

  .section-heading.center {
    text-align: left;
  }

  .price-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
