:root {
  --blush: #fde8e7;
  --rose: #deb4ac;
  --wine: #541015;
  --clay: #cf8964;
  --porcelain: #faf3ef;
  --ink: #2f2f2f;
  --paper: #fffaf7;
  --shadow-soft: 0 18px 60px rgba(84, 16, 21, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

body.is-locked {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

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

.announcement-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 38px;
  padding: 0.55rem 1rem;
  background: var(--wine);
  color: var(--porcelain);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
}

.announcement-bar a {
  border-bottom: 1px solid rgba(250, 243, 239, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(250, 243, 239, 0.88);
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-main span {
  font-style: italic;
  font-weight: 600;
}

.brand-sub {
  margin-top: 0.1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 1.8vw, 1.5rem);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 0.55rem 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  content: "";
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.icon-button,
.cart-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(47, 47, 47, 0.12);
  background: rgba(255, 250, 247, 0.76);
  color: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-button:hover,
.cart-button:hover {
  transform: translateY(-1px);
  background: var(--wine);
  color: var(--porcelain);
}

.icon-button svg,
.cart-button svg,
.primary-button svg,
.secondary-button svg {
  width: 18px;
  height: 18px;
}

.cart-count {
  position: absolute;
  top: -0.22rem;
  right: -0.25rem;
  display: grid;
  min-width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--clay);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
}

.mobile-menu-trigger {
  display: none;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background: rgba(47, 47, 47, 0);
  transition: background 180ms ease;
}

.mobile-nav.is-open {
  pointer-events: auto;
  background: rgba(47, 47, 47, 0.28);
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(88vw, 380px);
  min-height: 100%;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--porcelain);
  box-shadow: -20px 0 60px rgba(47, 47, 47, 0.18);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-nav.is-open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel a {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(47, 47, 47, 0.09);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-section {
  position: relative;
  min-height: min(760px, calc(100svh - 120px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background-image: url("assets/hero-spa-room.jpg");
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 47, 47, 0.34);
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 2rem));
  padding: clamp(2rem, 7vw, 5rem) clamp(1rem, 4vw, 4rem);
  color: white;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-content h1,
.section-heading h2,
.about-copy h2,
.shop-intro h2,
.quiz-panel h2,
.booking-section h2,
.search-panel h2,
.cart-header h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
}

.hero-content p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.75;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.primary-button {
  border: 1px solid var(--porcelain);
  background: var(--porcelain);
  color: var(--wine);
}

.primary-button.dark {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--porcelain);
}

.secondary-button {
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: white;
}

.secondary-button.on-porcelain {
  border-color: rgba(84, 16, 21, 0.22);
  color: var(--wine);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(47, 47, 47, 0.08);
  background: var(--paper);
}

.intro-strip div {
  display: flex;
  min-height: 118px;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  border-right: 1px solid rgba(47, 47, 47, 0.08);
}

.intro-strip div:last-child {
  border-right: 0;
}

.intro-strip strong {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
}

.intro-strip span {
  color: rgba(47, 47, 47, 0.68);
  line-height: 1.55;
}

.section-shell {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section-heading.compact {
  margin-bottom: 2rem;
}

.section-heading .eyebrow,
.about-copy .eyebrow,
.shop-intro .eyebrow,
.quiz-panel .eyebrow,
.booking-section .eyebrow,
.cart-header .eyebrow {
  color: var(--clay);
}

.section-heading h2,
.about-copy h2,
.shop-intro h2,
.quiz-panel h2,
.booking-section h2 {
  color: var(--wine);
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.about-copy p,
.shop-intro p,
.quiz-panel p,
.booking-section p {
  margin-top: 1rem;
  color: rgba(47, 47, 47, 0.72);
  line-height: 1.75;
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: stretch;
}

.service-image {
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.service-image img,
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.accordion-list,
.faq-grid {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(84, 16, 21, 0.16);
}

.accordion-item {
  border-bottom: 1px solid rgba(84, 16, 21, 0.16);
}

.accordion-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2.7vw, 2.25rem);
  text-align: left;
}

.accordion-trigger svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.accordion-item.is-open .accordion-trigger svg {
  transform: rotate(180deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.accordion-panel > * {
  overflow: hidden;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel p {
  max-width: 720px;
  padding-bottom: 0.9rem;
  color: rgba(47, 47, 47, 0.72);
  line-height: 1.7;
}

.accordion-panel a {
  display: inline-flex;
  width: max-content;
  margin-bottom: 1.3rem;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  min-height: 720px;
  background: var(--blush);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 6rem);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2rem 0;
}

.about-stats span {
  display: flex;
  min-height: 84px;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  border: 1px solid rgba(84, 16, 21, 0.16);
  border-radius: 8px;
  color: rgba(47, 47, 47, 0.72);
  background: rgba(255, 250, 247, 0.48);
}

.about-stats strong {
  display: block;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.about-image {
  min-height: 480px;
  overflow: hidden;
}

.transformations {
  background: var(--porcelain);
}

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

.transformation-grid article,
.product-card,
.reviews-grid figure {
  border: 1px solid rgba(47, 47, 47, 0.09);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(84, 16, 21, 0.05);
}

.transformation-grid article {
  min-height: 230px;
  padding: 1.5rem;
}

.transformation-grid span {
  color: var(--clay);
  font-family: "Caveat", cursive;
  font-size: 2.6rem;
  font-weight: 700;
}

.transformation-grid h3,
.product-card h3,
.footer h3 {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
}

.transformation-grid p,
.product-card p {
  margin-top: 0.85rem;
  color: rgba(47, 47, 47, 0.72);
  line-height: 1.65;
}

.shop-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--wine);
  color: var(--porcelain);
}

.shop-intro {
  position: sticky;
  top: 7rem;
  align-self: start;
}

.shop-intro h2 {
  color: var(--porcelain);
}

.shop-intro p {
  color: rgba(250, 243, 239, 0.78);
}

.shop-intro .eyebrow {
  color: var(--rose);
}

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

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--blush);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  border-radius: 999px;
  background: var(--wine);
  color: var(--porcelain);
  padding: 0.35rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1.4rem;
}

.price {
  color: var(--wine);
  font-weight: 800;
}

.add-button {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--wine);
  color: var(--porcelain);
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.add-button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.quiz-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--paper);
}

.quiz-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(240px, 0.8fr) minmax(240px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(84, 16, 21, 0.13);
  border-radius: 8px;
  background: var(--porcelain);
}

.quiz-panel h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.quiz-options {
  display: grid;
  gap: 0.65rem;
}

.quiz-options button {
  min-height: 48px;
  border: 1px solid rgba(84, 16, 21, 0.18);
  border-radius: 999px;
  background: white;
  color: var(--wine);
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: background 180ms ease, color 180ms ease;
}

.quiz-options button.is-active,
.quiz-options button:hover {
  background: var(--wine);
  color: var(--porcelain);
}

.quiz-result {
  min-height: 150px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(84, 16, 21, 0.18);
  padding-left: 1.5rem;
  color: rgba(47, 47, 47, 0.75);
  font-size: 1.1rem;
  line-height: 1.6;
}

.reviews-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--blush);
}

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

.reviews-grid figure {
  padding: 1.4rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
  color: var(--clay);
}

.stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

blockquote {
  margin-top: 1rem;
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.35;
}

figcaption {
  margin-top: 1rem;
  color: rgba(47, 47, 47, 0.64);
  font-size: 0.9rem;
}

.prep-section {
  background: var(--porcelain);
}

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

.booking-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
  background: var(--rose);
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.booking-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--wine);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.search-input input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(47, 47, 47, 0.13);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  padding: 0.85rem 1rem;
  outline: none;
}

.booking-form input:focus,
.booking-form select:focus,
.search-input input:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(84, 16, 21, 0.1);
}

.form-status {
  min-height: 1.5rem;
  color: var(--wine);
  font-weight: 700;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(2, minmax(160px, 0.7fr)) minmax(240px, 1fr);
  gap: 1.5rem;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 5rem);
  background: var(--ink);
  color: var(--porcelain);
}

.footer p,
.footer a {
  display: block;
  margin-top: 0.65rem;
  color: rgba(250, 243, 239, 0.72);
  line-height: 1.6;
}

.footer h3 {
  color: var(--porcelain);
}

.payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-content: start;
}

.payment-row span {
  border: 1px solid rgba(250, 243, 239, 0.18);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  color: rgba(250, 243, 239, 0.78);
  font-size: 0.78rem;
}

.cart-drawer,
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  background: rgba(47, 47, 47, 0);
  transition: background 180ms ease;
}

.cart-drawer.is-open,
.search-modal.is-open {
  pointer-events: auto;
  background: rgba(47, 47, 47, 0.36);
}

.cart-panel,
.search-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(92vw, 440px);
  height: 100%;
  overflow-y: auto;
  background: var(--porcelain);
  box-shadow: -20px 0 70px rgba(47, 47, 47, 0.22);
}

.cart-panel {
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.search-panel {
  left: 50%;
  right: auto;
  top: 50%;
  width: min(92vw, 620px);
  height: auto;
  max-height: min(760px, 90vh);
  border-radius: 8px;
  padding: 1.25rem;
  transform: translate(-50%, -46%) scale(0.96);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.search-modal.is-open .search-panel {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.cart-header h2,
.search-panel h2 {
  color: var(--wine);
  font-size: 2rem;
}

.cart-items {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.cart-line {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0.8rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(47, 47, 47, 0.08);
}

.cart-line img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.cart-line h3 {
  color: var(--wine);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.1rem;
}

.cart-line p {
  color: rgba(47, 47, 47, 0.65);
  font-size: 0.85rem;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.quantity-control {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(84, 16, 21, 0.16);
  border-radius: 999px;
}

.quantity-control button {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--wine);
}

.quantity-control span {
  min-width: 30px;
  text-align: center;
  font-weight: 800;
}

.remove-button {
  color: var(--wine);
}

.remove-button svg {
  width: 17px;
  height: 17px;
}

.cart-empty {
  display: none;
  margin: auto;
  padding: 2rem;
  color: rgba(47, 47, 47, 0.62);
  text-align: center;
}

.cart-empty svg {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.8rem;
  color: var(--clay);
}

.cart-empty.is-visible {
  display: block;
}

.cart-footer {
  display: grid;
  gap: 0.75rem;
  margin-top: auto;
  padding: 1.25rem;
  border-top: 1px solid rgba(47, 47, 47, 0.08);
  background: var(--paper);
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--wine);
  font-size: 1rem;
}

.search-input {
  position: relative;
  display: block;
  margin-top: 1.2rem;
}

.search-input svg {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.1rem;
  height: 1.1rem;
  color: rgba(47, 47, 47, 0.52);
  transform: translateY(-50%);
}

.search-input input {
  padding-left: 2.75rem;
}

.search-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.search-result {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem;
  border: 1px solid rgba(47, 47, 47, 0.08);
  border-radius: 8px;
  background: var(--paper);
}

.search-result img {
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.search-result h3 {
  color: var(--wine);
  font-weight: 800;
}

.search-result p {
  color: rgba(47, 47, 47, 0.64);
  font-size: 0.86rem;
}

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 100;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--wine);
  color: var(--porcelain);
  box-shadow: 0 18px 60px rgba(47, 47, 47, 0.18);
  transform: translateY(1rem);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 0.75rem 1rem;
  }

  .desktop-nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-top: 0.2rem;
    scrollbar-width: none;
  }

  .desktop-nav::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .mobile-menu-trigger {
    display: inline-grid;
  }

  .hero-section {
    min-height: min(620px, calc(100svh - 145px));
  }

  .intro-strip,
  .service-layout,
  .about-band,
  .shop-band,
  .quiz-panel,
  .booking-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .intro-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(47, 47, 47, 0.08);
  }

  .intro-strip div:last-child {
    border-bottom: 0;
  }

  .service-image {
    min-height: 420px;
  }

  .about-stats,
  .reviews-grid,
  .transformation-grid {
    grid-template-columns: 1fr;
  }

  .shop-intro {
    position: static;
  }

  .quiz-result {
    min-height: 120px;
    border-left: 0;
    border-top: 1px solid rgba(84, 16, 21, 0.18);
    padding-top: 1.25rem;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .announcement-bar {
    min-height: 46px;
    flex-wrap: wrap;
    gap: 0.25rem 0.5rem;
  }

  .site-header {
    padding: 0.8rem 0.9rem;
  }

  .brand-main {
    font-size: 1.8rem;
  }

  .brand-sub {
    font-size: 0.6rem;
  }

  .header-actions {
    gap: 0.25rem;
  }

  .icon-button,
  .cart-button {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    min-height: min(560px, calc(100svh - 145px));
    background-position: 44% center;
  }

  .hero-content {
    padding: 2rem 1rem 3rem;
  }

  .hero-content h1 {
    font-size: clamp(3.1rem, 17vw, 4.6rem);
  }

  .hero-actions,
  .about-stats {
    display: grid;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .about-copy h2,
  .shop-intro h2,
  .quiz-panel h2,
  .booking-section h2 {
    font-size: clamp(2.2rem, 13vw, 3.4rem);
  }

  .section-shell,
  .shop-band,
  .quiz-section,
  .reviews-section,
  .booking-section {
    padding-inline: 1rem;
  }

  .about-copy {
    padding: 3rem 1rem;
  }

  .search-result {
    grid-template-columns: 58px 1fr;
  }

  .search-result .add-button {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: 999px;
  }
}
