:root {
  --ink: #181512;
  --muted: #70665d;
  --paper: #fffaf3;
  --soft: #f4eadc;
  --line: rgba(92, 70, 43, 0.18);
  --gold: #c79843;
  --gold-dark: #8c6424;
  --rose: #8d5f57;
  --deep: #211713;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(33, 23, 19, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(
    180deg,
    rgba(24, 17, 13, 0.72) 0%,
    rgba(24, 17, 13, 0.48) 100%
  );
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease,
    padding 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.94);
  box-shadow: 0 12px 36px rgba(33, 23, 19, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-monogram {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid #cfa457;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 2px 8px rgba(24, 17, 13, 0.08);
}

.brand-monogram img {
  width: 100%;
  height: 100%;
  padding: 4px;
  object-fit: contain;
  object-position: center;
}

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

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-owner {
  display: block;
  margin-bottom: 3px;
  color: #d4a74f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.42);
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.brand small {
  color: currentColor;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.1;
  opacity: 0.76;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding-block: 7px;
  color: currentColor;
  opacity: 1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.38);
  transition: color 0.25s ease, opacity 0.25s ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav a:hover {
  color: #f1d38a;
  opacity: 1;
}

.site-header.is-scrolled .brand strong,
.site-header.is-scrolled .brand-owner,
.site-header.is-scrolled .main-nav a,
.site-header.is-open .brand strong,
.site-header.is-open .brand-owner,
.site-header.is-open .main-nav a {
  text-shadow: none;
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-open .main-nav a:hover {
  color: var(--gold-dark);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #f1d38a;
  font-weight: 800;
}

.nav-phone-icon {
  font-size: 18px;
  line-height: 1;
}

.site-header.is-scrolled .main-nav .nav-phone,
.site-header.is-open .main-nav .nav-phone {
  color: var(--gold-dark);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  justify-content: flex-end;
  gap: 30px;
  overflow: hidden;
  padding: 150px clamp(20px, 6vw, 78px) 30px;
  background: #1d130f;
  color: var(--white);
}

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

.hero-media {
  top: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #1d130f;
  background-image: url("hero-balayage-salon-bg-shifted.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.02);
  animation: hero-drift 16s ease-out both;
}

.hero-media::before,
.hero-media::after {
  display: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 13, 10, 0.84), rgba(20, 13, 10, 0.44) 47%, rgba(20, 13, 10, 0.03) 82%),
    linear-gradient(0deg, rgba(20, 13, 10, 0.78), rgba(20, 13, 10, 0.03) 57%);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  margin-bottom: 118px;
  margin-top: 0;
  margin-left: clamp(-43px, -3.3vw, -11px);
}

.hero-values {
  position: absolute;
  bottom: 18px;
  left: clamp(20px, 6vw, 78px);
  z-index: 1;
  display: grid;
  width: min(680px, 52vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(207, 164, 87, 0.32);
  padding-top: 8px;
}

.hero-values > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.hero-values > div + div {
  border-left: 1px solid rgba(207, 164, 87, 0.32);
}

.hero-values svg {
  width: 27px;
  height: 27px;
  color: #d0a455;
}

.hero-values span {
  color: #ddbc7f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-signature {
  position: absolute;
  right: 20px;
  bottom: 9px;
  left: 20px;
  z-index: 1;
  display: none;
  align-items: center;
  gap: 15px;
  color: #cfa457;
}

.hero-signature span {
  height: 1px;
  flex: 1;
  background: rgba(207, 164, 87, 0.62);
}

.hero-signature em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 18px;
  white-space: nowrap;
}

.hero-enter {
  animation: hero-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-enter-delayed {
  animation-delay: 0.35s;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-content h1 {
  max-width: 650px;
  color: #fff0dc;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(52px, 5.8vw, 78px);
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.58);
}

.mobile-break { display: none; }

.hero-brand-logo {
  position: absolute;
  right: 50px;
  bottom: 50px;
  z-index: 1;
  width: min(220px, 25vw);
  height: auto;
  filter: brightness(0.96) saturate(1.05) contrast(1.04)
    drop-shadow(0 4px 5px rgba(0, 0, 0, 0.5))
    drop-shadow(0 12px 26px rgba(0, 0, 0, 0.3));
  animation: hero-reveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both,
    logo-float 5.5s ease-in-out 1.1s infinite;
}

@keyframes logo-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
}

.hero-content p {
  max-width: 620px;
  color: #f1e3d0;
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 500;
  line-height: 1.55;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.5);
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease,
    transform 0.25s ease;
}

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

.button-arrow {
  margin-left: 12px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.button.primary {
  border-color: var(--gold);
  color: var(--deep);
  background: linear-gradient(135deg, #f1d38a, var(--gold));
}

.button.ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.phone-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(218, 179, 104, 0.55);
  border-radius: 50%;
  color: #f1d38a;
  font-size: 20px;
  line-height: 1;
  transition: color 0.25s ease, background 0.25s ease;
}

.specialist-contact:hover .phone-icon {
  color: var(--deep);
  background: var(--gold);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-band div {
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--paper);
  transition: background 0.3s ease;
}

.intro-band div:hover {
  background: #fffdf9;
}

.intro-band strong,
.intro-band span {
  display: block;
}

.intro-band strong {
  color: var(--gold-dark);
  font-size: 18px;
}

.intro-band span {
  color: var(--muted);
}

.section {
  padding: clamp(70px, 8vw, 116px) clamp(20px, 6vw, 78px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: center;
}

.section-copy p,
.section-heading p,
.contact-panel p {
  color: var(--muted);
}

.portrait-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.salon-slider {
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--deep);
}

.salon-slides {
  position: absolute;
  inset: 0;
}

.salon-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03) sepia(0.06);
  transform: scale(1.035);
  transition: opacity 1.1s ease, transform 6.5s ease, filter 0.5s ease;
}

.salon-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.salon-slider:hover .salon-slide {
  filter: saturate(0.92) contrast(1.02) sepia(0.02);
}

.salon-slider-dots {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 9px;
  background: rgba(24, 17, 13, 0.52);
  backdrop-filter: blur(8px);
}

.salon-slider-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.3s ease, border-radius 0.3s ease, background 0.3s ease;
}

.salon-slider-dots button.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--gold);
}

.salon-slider-dots button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.services {
  background: var(--deep);
  color: var(--white);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 38px;
}

.services .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.service-tabs-shell {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 40px;
  border: 1px solid rgba(199, 152, 67, 0.34);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
}

.service-tabs {
  display: contents;
}

.service-tab {
  min-height: 44px;
  border: 0;
  border-radius: 5px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font: 700 14px/1 "Manrope", "Segoe UI", Arial, sans-serif;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.service-tab:hover {
  color: var(--white);
}

.service-tab.is-active {
  color: var(--deep);
  background: var(--gold);
}

.service-page-link {
  display: inline-flex;
  align-items: center;
  border-left: 1px solid rgba(199, 152, 67, 0.34);
  color: #f1d38a;
}

.service-page-link:hover {
  color: var(--deep);
  background: #f1d38a;
}

.service-tab:focus-visible {
  outline: 2px solid #f1d38a;
  outline-offset: 2px;
}

.service-panel[hidden] {
  display: none;
}

.service-panel.is-active {
  animation: panel-in 0.45s ease both;
}

.panel-intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.panel-intro h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 34px;
}

.panel-intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

.price-category {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.price-category:hover {
  border-color: rgba(199, 152, 67, 0.55);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.price-category h3 {
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 27px;
}

.price-list {
  display: grid;
  gap: 13px;
  margin: 0;
}

.price-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding-bottom: 10px;
}

.price-list dt {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.45;
}

.price-list dd {
  color: #f1d38a;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.price-category-wide {
  grid-column: 1 / -1;
  border-color: rgba(199, 152, 67, 0.42);
}

.price-list-men {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 34px;
}

.price-note {
  max-width: 820px;
  margin: 30px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-align: center;
}

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

.treatment-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-list li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  padding: 11px 0 11px 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.treatment-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.specialist-contact {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  border: 1px solid rgba(199, 152, 67, 0.42);
  border-radius: 8px;
  padding: 14px 18px;
  background: rgba(199, 152, 67, 0.08);
}

.specialist-contact small,
.specialist-contact strong {
  display: block;
}

.specialist-contact small {
  color: rgba(255, 255, 255, 0.65);
}

.specialist-contact strong {
  color: var(--gold);
  font-size: 19px;
}

.nails-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}

.nails-photo {
  overflow: hidden;
  border: 1px solid rgba(199, 152, 67, 0.32);
  border-radius: 8px;
}

.nails-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.nails-photo:hover img {
  transform: scale(1.025);
}

.nails-prices {
  padding: 28px;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.gallery-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #171512;
}

.gallery-item-portrait {
  aspect-ratio: 3 / 4;
}

.gallery-item-square {
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.45s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.018);
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
  margin-top: 34px;
}

.testimonials {
  background: var(--soft);
}

blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 250, 243, 0.78);
}

blockquote p {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  line-height: 1.4;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes hero-reveal {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

cite {
  color: var(--gold-dark);
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 20px;
}

.contact-panel,
.hours-panel,
.map-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(33, 23, 19, 0.07);
}

.contact-panel,
.hours-panel {
  padding: clamp(24px, 4vw, 38px);
}

.contact-panel {
  grid-row: span 2;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.contact-list span,
dt {
  color: var(--muted);
}

.contact-list strong,
dd {
  margin: 0;
  text-align: right;
}

.hours-panel h3 {
  margin-bottom: 16px;
}

.hours-panel dl {
  display: grid;
  gap: 9px;
  margin: 0;
}

.hours-panel div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.map-panel {
  overflow: hidden;
  min-height: 290px;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 78px);
  color: rgba(255, 255, 255, 0.75);
  background: var(--deep);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.footer-links {
  display: flex;
  gap: 24px;
}

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

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

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

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

  .intro-band,
  .split,
  .price-grid,
  .cosmetology-grid,
  .nails-layout,
  .testimonial-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .price-category-wide {
    grid-column: auto;
  }

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

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

  .gallery-item:nth-child(2),
  .gallery-item:nth-child(5) {
    margin-top: 0;
  }

  .contact-panel {
    grid-row: auto;
  }


  .hero-content {
    margin-top: 0;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 10px;
  }

  .brand-owner {
    font-size: 15px;
  }

  .hero {
    min-height: 100svh;
    gap: 15px;
    justify-content: flex-start;
    background: #1d130f;
    padding: 214px 20px calc(124px + env(safe-area-inset-bottom));
  }

  .hero-media {
    top: 0;
    bottom: 0;
    background-image: url("hero-balayage.jpg");
    background-position: 58% center;
    background-size: cover;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(20, 13, 10, 0.12) 0%, rgba(20, 13, 10, 0.04) 31%, rgba(20, 13, 10, 0.88) 100%),
      linear-gradient(90deg, rgba(20, 13, 10, 0.78), rgba(20, 13, 10, 0.23) 60%, rgba(20, 13, 10, 0.02));
  }

  .hero-content {
    margin-bottom: 0;
    margin-top: 0;
  }

  .hero-content h1 {
    max-width: 195px;
    margin-bottom: 44px;
    color: #fff0dc;
    font-size: 39px;
    line-height: 0.91;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.62);
  }

  .mobile-break { display: inline; }

  .hero-content p {
    max-width: 214px;
    margin-bottom: 0;
    color: #f1e3d0;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.36;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.56);
  }

  .hero-actions {
    width: min(190px, 58vw);
    gap: 9px;
    margin-top: clamp(78px, 15svh, 128px);
  }

  .hero-actions .button {
    min-height: 43px;
    padding: 9px 15px;
    font-size: 12px;
  }

  .button-arrow { margin-left: auto; }

  .hero-values {
    position: absolute;
    right: 0;
    bottom: calc(43px + env(safe-area-inset-bottom));
    left: 0;
    width: auto;
    max-width: none;
    margin-top: 0;
    padding-right: 20px;
    padding-top: 12px;
    padding-left: 20px;
  }

  .hero-values > div {
    padding: 0 5px;
    gap: 5px;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
  }

  .hero-values svg {
    width: 23px;
    height: 23px;
  }

  .hero-values span {
    font-size: 9px;
    line-height: 1.32;
    overflow-wrap: anywhere;
  }

  .hero-signature {
    right: 0;
    left: 0;
    width: auto;
    padding: 0 20px;
    display: flex;
    bottom: calc(4px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .hero-signature em {
    font-size: 15px;
  }

  .hero-brand-logo {
    top: 84px;
    right: auto;
    bottom: auto;
    left: 20px;
    width: min(145px, 42vw);
  }

  .hero-actions,
  .contact-list a,
  .hours-panel div,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .service-tabs-shell {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .service-tab {
    width: 100%;
  }

  .service-page-link {
    justify-content: center;
    border-top: 1px solid rgba(199, 152, 67, 0.34);
    border-left: 0;
  }

  .main-content .button,
  section:not(.hero) .button {
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .gallery-item-portrait,
  .gallery-item-square {
    aspect-ratio: 4 / 5;
  }

  .contact-list strong,
  dd {
    text-align: left;
  }

  .price-category {
    padding: 22px 18px;
  }

  .price-list dd {
    text-align: right;
  }
}

@media (max-width: 620px) and (max-height: 640px) {
  .hero {
    gap: 10px;
    padding-top: 176px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom));
  }

  .hero-brand-logo {
    top: 76px;
    width: 120px;
  }

  .hero-content h1 {
    margin-bottom: 28px;
    font-size: 34px;
  }

  .hero-content p {
    max-width: 205px;
    font-size: 11.5px;
    line-height: 1.34;
  }

  .hero-actions {
    gap: 6px;
    margin-top: clamp(24px, 8svh, 48px);
  }

  .hero-actions .button {
    min-height: 37px;
  }

  .hero-values {
    bottom: calc(41px + env(safe-area-inset-bottom));
    padding-top: 8px;
  }

  .hero-values svg {
    width: 20px;
    height: 20px;
  }

  .hero-values span {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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