:root {
  --bg: #f3eee7;
  --bg-soft: #fffaf4;
  --bg-muted: #e7dccd;
  --bg-cream: #f8f1e8;

  --text: #211b17;
  --muted: #6b5f55;

  --dark: #11100d;
  --dark-soft: #1f1b17;

  --accent: #9c6a3a;
  --accent-dark: #7b4f2a;
  --accent-deep: #5f3b20;
  --accent-soft: #ead5bd;

  --border: rgba(33, 27, 23, 0.13);
  --border-light: rgba(255, 255, 255, 0.16);

  --shadow: 0 28px 80px rgba(33, 27, 23, 0.16);
  --shadow-soft: 0 18px 48px rgba(33, 27, 23, 0.09);

  --radius: 24px;
  --container: 1180px;
}

/* BASE */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-main {
  overflow: hidden;
}

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 16, 13, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(156, 106, 58, 0.14);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 42px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo-image {
  width: 220px;
  height: auto;
}

.site-logo-text {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.site-logo-text span {
  display: block;
  color: var(--accent-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.93rem;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: color 0.22s ease;
}

.site-nav a:hover {
  color: #fff;
}

.header-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(33, 27, 23, 0.2);
  transition: transform 0.22s ease, background 0.22s ease;
}

.header-button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.mobile-nav-toggle,
.mobile-nav-overlay,
.mobile-menu-head,
.mobile-menu-phone {
  display: none;
}

/* TYPOGRAPHY */

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--accent-soft);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: 0.93;
  letter-spacing: -0.085em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 25px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 16px 38px rgba(123, 79, 42, 0.25);
}

.btn-primary:hover {
  background: var(--accent-deep);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* HERO */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.04) saturate(0.92);
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 16, 13, 0.88) 0%, rgba(17, 16, 13, 0.62) 46%, rgba(17, 16, 13, 0.28) 100%),
    linear-gradient(0deg, rgba(17, 16, 13, 0.64), rgba(17, 16, 13, 0.08) 52%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 100px;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
/* LAYOUT */

.section {
  position: relative;
  padding: 100px 0;
}

.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(33, 27, 23, 0.06), transparent);
}

.reviews-section::after,
.site-footer::after {
  display: none;
}

.section-light {
  background: var(--bg-soft);
}

.section-cream {
  background: var(--bg-cream);
}

.section-warm {
  background: var(--bg-muted);
}

.prices-grid,
.about-grid,
.shop-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading p {
  max-width: 650px;
}

.about-actions,
.contact-actions {
  margin-top: 28px;
}

/* IMAGES */

.about-image {
  height: 500px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  background: var(--bg-muted);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TREATMENTS */

.treatments-section {
  overflow: hidden;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.treatment-feature {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 250, 244, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.treatment-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent 30%);
  pointer-events: none;
}

.treatment-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.treatment-image {
  height: 250px;
  overflow: hidden;
  background: var(--bg-muted);
}

.treatment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.treatment-feature:hover .treatment-image img {
  transform: scale(1.04);
}

.treatment-content {
  padding: 26px 26px 28px;
}

.treatment-content span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

.treatment-content h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.treatment-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* CARDS */

.price-card,
.contact-card,
.shop-card {
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,250,244,0.92));
  box-shadow: 0 20px 60px rgba(33, 27, 23, 0.08);
}

/* PRICES */

.prices-grid {
  gap: 90px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(33, 27, 23, 0.12);
}

.price-row:first-child {
  padding-top: 0;
}

.price-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-row span {
  color: var(--text);
  font-weight: 750;
}

.price-row strong {
  color: var(--accent-deep);
  font-weight: 950;
}

/* REVIEWS */

.reviews-section {
  padding-top: 110px;
  padding-bottom: 110px;
  background:
    radial-gradient(circle at 78% 12%, rgba(156, 106, 58, 0.18), transparent 34%),
    radial-gradient(circle at 24% 72%, rgba(156, 106, 58, 0.08), transparent 32%),
    linear-gradient(180deg, #11100d 0%, #080706 100%);
  color: #fff;
}

.reviews-section h2 {
  color: #fff;
}

.reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 54px;
}

.reviews-summary {
  min-width: 230px;
  padding: 24px 26px;
  border: 1px solid rgba(156, 106, 58, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  text-align: right;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.reviews-summary strong {
  display: block;
  color: #fff;
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.reviews-summary span {
  display: block;
  margin: 8px 0 5px;
  color: #f2c56b;
  letter-spacing: 0.04em;
}

.reviews-summary p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.review-slider {
  display: grid;
  grid-template-columns: 64px 1fr 64px;
  gap: 24px;
  align-items: center;
}

.review-window {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
}

.review-track {
  position: relative;
  min-height: 300px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 58px;
  border: 1px solid rgba(156, 106, 58, 0.26);
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.review-card.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.review-stars {
  margin-bottom: 18px;
  color: #f2c56b;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.review-card p {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  line-height: 1.5;
}

.review-card h3 {
  margin: 0;
  color: var(--accent-soft);
}

.review-arrow {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(156, 106, 58, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(156, 106, 58, 0.5);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 28px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.review-dots button.is-active {
  width: 28px;
  background: var(--accent);
}

/* SHOP */

.shop-grid {
  gap: 88px;
}

.shop-front-card {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  background: var(--bg-soft);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.shop-front-card > img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.shop-front-card .shop-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.shop-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--accent-deep);
  font-weight: 950;
}

/* CONTACT */

.contact-section {
  padding-top: 92px;
}

.contact-grid {
  gap: 88px;
}

.contact-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* MOBILE CALL BAR */

.mobile-call-bar {
  display: none;
}

/* FOOTER */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 0 34px;
  background: var(--dark);
  color: #fff;
  border-top: 1px solid rgba(156, 106, 58, 0.12);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(156, 106, 58, 0.1), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo {
  width: 250px;
  height: auto;
  margin-bottom: 26px;
}

.footer-logo-text {
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.footer-logo-text span {
  display: block;
  margin-top: 4px;
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-copy {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-contact p,
.footer-contact a {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.footer-contact a {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-contact a:hover {
  color: var(--accent-soft);
}

.footer-credit {
  width: 100%;
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.84rem;
  text-align: center;
}

.footer-credit p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.footer-credit a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-credit a:hover {
  color: var(--accent-soft);
}
/* TABLET */

@media (max-width: 1000px) {

  .prices-grid,
  .about-grid,
  .shop-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 88px;
  }

  .reviews-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .reviews-summary {
    text-align: left;
  }

  .review-card {
    padding: 44px;
  }
}

/* MOBILE */

@media (max-width: 760px) {

  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 78px;
  }

  body.nav-open .mobile-call-bar {
    display: none !important;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .site-logo-image {
    width: 170px;
  }

  .site-logo-text {
    font-size: 1.05rem;
  }

  .site-logo-text span {
    font-size: 0.62rem;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 1004;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(156, 106, 58, 0.38);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    cursor: pointer;
  }

  .mobile-nav-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-soft);
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  body.nav-open .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(8, 7, 5, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  body.nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .header-right {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    padding: 96px 26px 38px;
    border: 0;
    border-radius: 0;
    background: #11100d;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  }

  body.nav-open .header-right {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 58px;
  }

  .mobile-menu-logo {
    width: 218px;
    height: auto;
  }

  .mobile-menu-logo-text {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 950;
    letter-spacing: -0.05em;
    text-align: center;
  }

  .mobile-menu-logo-text span {
    display: block;
    color: var(--accent-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .site-nav {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav a {
    width: 100%;
    padding: 19px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    background: transparent;
    color: #fff;
    font-size: 1.34rem;
    font-weight: 850;
    letter-spacing: -0.035em;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, color 0.22s ease, border-color 0.22s ease;
  }

  body.nav-open .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  body.nav-open .site-nav a:nth-child(1) { transition-delay: 0.04s; }
  body.nav-open .site-nav a:nth-child(2) { transition-delay: 0.08s; }
  body.nav-open .site-nav a:nth-child(3) { transition-delay: 0.12s; }
  body.nav-open .site-nav a:nth-child(4) { transition-delay: 0.16s; }
  body.nav-open .site-nav a:nth-child(5) { transition-delay: 0.2s; }

  .site-nav a:hover {
    color: var(--accent-soft);
    background: transparent;
    border-color: rgba(156, 106, 58, 0.28);
  }

  .header-button {
    width: 100%;
    min-height: 60px;
    margin-top: 44px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 950;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  }

  .mobile-menu-phone {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 0.03em;
    text-align: center;
    transition: color 0.22s ease;
  }

  .mobile-menu-phone:hover {
    color: var(--accent-soft);
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 92px;
    padding-bottom: 68px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .about-grid,
  .prices-grid,
  .shop-grid,
  .contact-grid {
    gap: 34px;
  }

  .about-image {
    transform: none;
  }

  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .treatment-image {
    height: 220px;
  }

  .treatment-feature {
    border-radius: 22px;
  }

  .treatment-content {
    padding: 24px;
  }

  .price-card,
  .contact-card,
  .shop-card {
    padding: 24px;
    border-radius: 22px;
  }

  .reviews-header {
    gap: 24px;
    margin-bottom: 30px;
  }

  .reviews-summary {
    width: 100%;
    min-width: 0;
    padding: 20px;
    text-align: left;
  }

  .review-slider {
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
  }

  .review-track {
    min-height: 360px;
  }

  .review-card {
    padding: 30px 24px;
    border-radius: 24px;
  }

  .review-card p {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .review-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .review-dots {
    flex-wrap: wrap;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }

  .shop-front-card {
    transform: none;
    border-radius: 22px;
  }

  .shop-front-card > img {
    height: 240px;
  }

  .contact-card {
    min-height: auto;
  }

  .mobile-call-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 999px;
    background: var(--accent-dark);
    color: #fff;
    font-weight: 950;
    box-shadow: 0 18px 44px rgba(33, 27, 23, 0.28);
  }

  .site-footer {
    padding: 58px 0 88px;
  }

  .footer-logo {
    width: 210px;
  }
}

/* SMALL MOBILE */

@media (max-width: 420px) {

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-logo-image {
    width: 160px;
  }

  .mobile-menu-logo {
    width: 205px;
  }

  .header-right {
    padding: 92px 24px 34px;
  }

  .hero-inner {
    padding-top: 82px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2rem, 10.5vw, 2.8rem);
  }

  p {
    font-size: 0.98rem;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .review-track {
    min-height: 400px;
  }

  .review-card {
    padding: 26px 20px;
  }

  .review-card p {
    font-size: 1rem;
  }
}