:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --cream: #f6f2eb;
  --cream-2: #f1ece4;
  --dark: #0b0907;
  --dark-2: #100c08;
  --gold: #d5a94f;
  --gold-light: #e7be69;
  --gold-dark: #9d742f;
  --text: #171310;
  --muted: #69625b;
  --line: rgba(23, 19, 16, 0.14);
  --gold-line: rgba(213, 169, 79, 0.55);
  --pad: 48px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
}

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

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.section-inner {
  width: min(1320px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold-dark);
}

.button,
.nav-cta,
.outline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.button-primary,
.nav-cta {
  background: var(--gold-light);
  color: #17110a;
}

.button-primary:hover,
.nav-cta:hover {
  background: #f0c977;
}

.button-secondary {
  border: 1px solid var(--gold-line);
  color: #fff8ef;
}

.button-secondary:hover {
  background: rgba(231, 190, 105, 0.12);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  width: 100%;
  min-height: 92px;
  padding: 0 48px;
  color: rgba(255, 255, 255, 0.85);
}

.brand img {
  width: 112px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  font-size: 13px;
  font-weight: 500;
}

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

.main-nav a:hover,
.main-nav .active {
  color: var(--gold-light);
}

.main-nav .active::after {
  position: absolute;
  bottom: 25px;
  left: 50%;
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: translateX(-50%);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.12);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: #fff;
}

.mobile-bottom-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background-image: linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.94) 0%,
      rgba(5, 4, 3, 0.83) 25%,
      rgba(5, 4, 3, 0.38) 48%,
      rgba(5, 4, 3, 0.02) 75%
    ),
    url("assets/header.png");
  background-position: center;
  background-size: cover;
  color: #f8f3eb;
}

.hero-content {
  width: min(1320px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
  padding-top: 196px;
}

.hero .eyebrow {
  font-size: 12px;
  letter-spacing: 0.24em;
}

.hero h1,
.section-heading h2,
.why h2,
.salon-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.hero h1 {
  max-width: 760px;
  color: #f8f3eb;
  font-size: clamp(58px, 5vw, 82px);
  line-height: 0.94;
}

.hero-copy {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.7;
}

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

.hero-features {
  position: absolute;
  bottom: 56px;
  left: max(var(--pad), calc((100vw - 1320px) / 2));
  display: flex;
  color: rgba(255, 255, 255, 0.8);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 190px;
  min-width: 0;
  min-height: 44px;
  padding-right: 22px;
  font-size: 13px;
  line-height: 1.45;
}

.feature-item + .feature-item {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item svg {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
  flex: 0 0 auto;
}

.slider-indicator {
  position: absolute;
  right: 48px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.slider-indicator i,
.slider-indicator b {
  display: block;
  height: 1px;
}

.slider-indicator i {
  width: 52px;
  background: var(--gold-light);
}

.slider-indicator b {
  width: 45px;
  background: rgba(255, 255, 255, 0.3);
}

.services {
  padding: 78px 0 44px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: 48px;
  line-height: 1;
  max-width: 820px;
  overflow-wrap: anywhere;
}

.section-heading p:not(.eyebrow) {
  margin: 15px 0 0;
  color: #6c655f;
  font-size: 15px;
}

.outline-link {
  min-height: 46px;
  border: 1px solid #beb6ac;
  border-radius: 24px;
  color: var(--text);
  white-space: nowrap;
}

.outline-link:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  background: var(--cream-2);
}

.service-card-link {
  display: block;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 450ms ease;
}

.service-card div {
  position: relative;
  min-height: 116px;
  padding: 24px 18px 20px;
}

.service-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 600;
}

.service-card p {
  margin: 0;
  padding-right: 0;
  color: #6f6860;
  font-size: 13px;
  line-height: 1.55;
}

.service-card div > a {
  position: absolute;
  right: 16px;
  top: -18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 16px;
  transition: background 220ms ease, color 220ms ease;
}

.service-card:hover img {
  transform: scale(1.025);
}

.service-card:hover div > a {
  background: var(--gold-dark);
  color: #fff;
}

.campaign-banner {
  padding: 0 0 72px;
  background: var(--cream);
}

.campaign-banner a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(42, 32, 21, 0.1);
}

.campaign-banner picture {
  display: block;
}

.campaign-banner img {
  width: 100%;
  aspect-ratio: 2172 / 724;
  object-fit: cover;
}

.why {
  position: relative;
  min-height: 410px;
  padding: 72px 0;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(11, 9, 7, 0.94), rgba(11, 9, 7, 0.78), rgba(11, 9, 7, 0.64)),
    url("assets/havlu.png");
  background-position: center;
  background-size: cover;
  color: #f4eee6;
}

.why-inner {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(360px, 520px);
  justify-content: space-between;
  gap: 64px;
}

.why h2 {
  color: #fff;
  font-size: clamp(50px, 4vw, 56px);
  line-height: 1;
}

.why-copy > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.value-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 30px;
  align-content: center;
}

.value-item {
  display: flex;
  gap: 14px;
}

.value-item span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold-light);
  flex: 0 0 auto;
}

.value-item svg {
  width: 22px;
  height: 22px;
}

.value-item h3 {
  margin: 0 0 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.value-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.5;
}

.salon {
  padding: 96px 0;
}

.salon-grid {
  display: grid;
  grid-template-columns: 0.31fr 0.37fr 0.32fr;
  gap: 38px;
  align-items: center;
}

.salon-media {
  position: relative;
}

.salon-media img {
  width: 100%;
  min-height: 430px;
  border-radius: 10px;
  object-fit: cover;
}

.salon-left img {
  aspect-ratio: 4 / 3.6;
}

.salon-copy h2 {
  font-size: clamp(46px, 4vw, 52px);
  line-height: 1;
}

.salon-copy > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 15px;
}

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

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.stats span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.salon-right p {
  position: absolute;
  top: 28px;
  right: 24px;
  margin: 0;
  color: #fff8ef;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: right;
}

.site-footer {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 40px 48px 28px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo img {
  width: 90px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 12px;
  font-weight: 500;
}

.socials {
  display: flex;
  gap: 14px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: border-color 220ms ease, color 220ms ease, background 220ms ease;
}

.socials a:hover {
  border-color: var(--gold-line);
  background: rgba(231, 190, 105, 0.08);
  color: var(--gold-light);
}

.socials svg {
  width: 18px;
  height: 18px;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.legal {
  grid-column: 1 / -1;
  display: flex;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.site-credit {
  margin-left: auto;
}

.site-credit a {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

.license-popup[hidden] {
  display: none;
}

.license-popup {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.license-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.license-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.68);
  backdrop-filter: blur(10px);
}

.license-popup__dialog {
  position: relative;
  width: min(520px, 100%);
  padding: 38px 40px 34px;
  border: 1px solid rgba(213, 169, 79, 0.34);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgba(213, 169, 79, 0.18), transparent 42%),
    linear-gradient(145deg, #fffaf1, #f0ebe3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  color: var(--text);
  text-align: center;
  transform: translateY(14px) scale(0.98);
  transition: transform 220ms ease;
}

.license-popup.is-visible .license-popup__dialog {
  transform: translateY(0) scale(1);
}

.license-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(23, 19, 16, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.54);
  color: var(--text);
  cursor: pointer;
}

.license-popup__close:hover {
  border-color: var(--gold-line);
  color: var(--gold-dark);
}

.license-popup__close svg {
  width: 18px;
  height: 18px;
}

.license-popup__mark {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(213, 169, 79, 0.1);
}

.license-popup__mark svg {
  width: 34px;
  height: 34px;
}

.license-popup .eyebrow {
  margin-bottom: 12px;
}

.license-popup h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.license-popup p:not(.eyebrow) {
  margin: 18px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.license-popup strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #1f170d;
  background: var(--gold-light);
  font-size: 13px;
}

.service-detail-page {
  background: var(--cream);
}

.service-hero {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  background-image: linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.96) 0%,
      rgba(5, 4, 3, 0.88) 28%,
      rgba(5, 4, 3, 0.52) 48%,
      rgba(5, 4, 3, 0.1) 75%
    ),
    var(--hero-image);
  background-position: var(--hero-position);
  background-size: cover;
  color: #f8f3eb;
}

.service-hero-inner {
  padding-top: 128px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.3;
}

.breadcrumb a:hover {
  color: var(--gold-light);
}

.breadcrumb span:last-child {
  color: #fff;
}

.service-hero .eyebrow {
  margin-bottom: 14px;
  color: #ddb96b;
  font-size: 10px;
  letter-spacing: 0.24em;
}

.service-hero h1,
.service-about-copy h2,
.service-gallery-section h2,
.detail-faq h2,
.detail-final-cta h2,
.not-found-inner h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.service-hero h1 {
  color: #f8f3eb;
  font-size: clamp(64px, 5vw, 72px);
  line-height: 0.96;
}

.service-hero-copy {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.65;
}

.service-hero-features {
  display: flex;
  margin-top: 34px;
}

.service-hero-feature {
  display: grid;
  gap: 8px;
  min-width: 128px;
  padding-right: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  line-height: 1.35;
}

.service-hero-feature + .service-hero-feature {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.service-hero-feature svg {
  width: 42px;
  height: 42px;
  color: var(--gold-light);
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 30px;
}

.service-hero-actions .button svg,
.detail-final-cta .button svg,
.price-card .button svg {
  width: 17px;
  height: 17px;
}

.micro-cta {
  display: grid;
  grid-template-columns: 1fr 42px;
  column-gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
}

.micro-cta strong,
.micro-cta span {
  grid-column: 1;
}

.micro-cta strong {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.micro-cta span {
  font-size: 11px;
}

.micro-cta i {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--gold-light);
  font-style: normal;
}

.service-about {
  padding: 64px 0 36px;
}

.service-about-grid {
  display: grid;
  grid-template-columns: 0.46fr 0.49fr;
  gap: 68px;
  align-items: center;
}

.service-about-image img {
  width: 100%;
  aspect-ratio: 1.48 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.service-about-copy h2 {
  max-width: 620px;
  color: var(--text);
  font-size: clamp(44px, 4vw, 50px);
  line-height: 1.02;
}

.service-about-copy p:not(.eyebrow) {
  max-width: 600px;
  margin: 18px 0 0;
  color: #5f5952;
  font-size: 15px;
  line-height: 1.65;
}

.benefit-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: #5f5952;
  font-size: 14px;
  line-height: 1.5;
}

.benefit-list span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  color: var(--gold-dark);
  font-size: 12px;
  line-height: 1;
}

.service-info-row {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 320px);
  gap: 22px;
  margin-top: 34px;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(var(--info-count), 1fr);
  overflow: hidden;
  border: 1px solid rgba(23, 19, 16, 0.05);
  border-radius: 12px;
  background: #f0ebe3;
}

.info-item {
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 22px;
  text-align: center;
}

.info-item + .info-item {
  border-left: 1px solid rgba(23, 19, 16, 0.12);
}

.info-item svg {
  width: 30px;
  height: 30px;
  color: var(--gold-dark);
}

.info-item strong {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.info-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.price-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border-radius: 12px;
  background: #eee8df;
  text-align: center;
}

.price-card span {
  color: var(--text);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.price-card strong {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
}

.service-gallery-section {
  margin-top: 38px;
}

.gallery-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.service-gallery-section h2 {
  font-size: 34px;
  line-height: 1;
}

.gallery-controls {
  display: flex;
  gap: 8px;
}

.gallery-controls button {
  width: 38px;
  height: 38px;
  border: 1px solid #9e978f;
  border-radius: 50%;
  background: transparent;
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.gallery-controls button:hover {
  background: var(--text);
  color: #fff;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.service-gallery img {
  width: 100%;
  aspect-ratio: 1.65 / 1;
  border-radius: 8px;
  object-fit: cover;
}

.detail-faq {
  padding: 52px 0;
  background: #100d09;
  color: #fff;
}

.detail-faq-grid {
  display: grid;
  grid-template-columns: 0.3fr 0.67fr;
  gap: 50px;
}

.detail-faq h2 {
  color: #fff;
  font-size: 40px;
  line-height: 1.05;
}

.detail-faq-copy .button {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.32);
}

.faq-accordion {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  font: 500 13px/1.4 var(--font-body);
  text-align: left;
  cursor: pointer;
}

.faq-item i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--gold-light);
  font-style: normal;
}

.faq-panel {
  padding: 0 44px 16px 14px;
}

.faq-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.65;
}

.detail-final-cta {
  min-height: 190px;
  padding: 38px 0;
  background-image: linear-gradient(90deg, rgba(11, 9, 7, 0.94), rgba(11, 9, 7, 0.72)), url("/assets/header.png");
  background-position: center 62%;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.detail-final-inner {
  display: grid;
  justify-items: center;
}

.detail-final-cta .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.23em;
}

.detail-final-cta h2 {
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(38px, 4vw, 44px);
  line-height: 1;
}

.not-found-page {
  padding: 180px 0 90px;
  background: var(--cream);
}

.not-found-inner h1 {
  font-size: 56px;
  line-height: 1;
}

.not-found-inner p:not(.eyebrow) {
  max-width: 520px;
  color: var(--muted);
}

.page--about .about-hero {
  min-height: 590px;
  background-image: linear-gradient(
      90deg,
      rgba(5, 4, 3, 0.96) 0%,
      rgba(5, 4, 3, 0.9) 24%,
      rgba(5, 4, 3, 0.63) 43%,
      rgba(5, 4, 3, 0.18) 67%,
      rgba(5, 4, 3, 0.02) 100%
    ),
    url("/assets/header.png");
  background-position: 66% center;
  background-size: cover;
  color: #f8f3eb;
}

.page--about .about-hero__inner {
  max-width: 1320px;
  padding-top: 132px;
}

.page--about .about-hero .eyebrow {
  margin-bottom: 16px;
  color: #ddb96b;
  font-size: 10px;
  letter-spacing: 0.24em;
}

.page--about .about-hero h1,
.page--about .about-intro h2,
.page--about .about-why h2,
.page--about .about-atmosphere h2,
.page--about .about-final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.page--about .about-hero h1 {
  max-width: 590px;
  color: #f8f3eb;
  font-size: clamp(54px, 4.6vw, 68px);
  line-height: 0.96;
}

.page--about .about-hero p:not(.eyebrow) {
  max-width: 550px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.66;
}

.page--about .about-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.page--about .about-hero__actions svg,
.page--about .about-final-cta svg {
  width: 17px;
  height: 17px;
}

.page--about .about-intro {
  padding: 36px 0 24px;
  background: var(--cream);
}

.page--about .about-intro__grid {
  display: grid;
  grid-template-columns: 0.49fr 0.43fr;
  gap: 64px;
  align-items: center;
}

.page--about .about-intro__image img {
  width: 100%;
  aspect-ratio: 1.82 / 1;
  border-radius: 10px;
  object-fit: cover;
}

.page--about .about-intro h2 {
  color: var(--text);
  font-size: clamp(46px, 4vw, 52px);
  line-height: 0.98;
}

.page--about .about-intro__copy p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #5e5852;
  font-size: 15px;
  line-height: 1.65;
}

.page--about .about-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 22px;
  overflow: hidden;
  border-radius: 11px;
  background: #f2ede5;
}

.page--about .about-values-strip > div {
  display: grid;
  min-height: 136px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.page--about .about-values-strip > div + div {
  border-left: 1px solid rgba(23, 19, 16, 0.12);
}

.page--about .about-values-strip svg {
  width: 38px;
  height: 38px;
  color: var(--gold-dark);
}

.page--about .about-values-strip h3 {
  margin: 12px 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.page--about .about-values-strip p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.page--about .about-why {
  min-height: 340px;
  padding: 58px 0;
  background-image: linear-gradient(90deg, rgba(11, 9, 7, 0.94), rgba(11, 9, 7, 0.72), rgba(11, 9, 7, 0.86)),
    url("/assets/header.png");
  background-position: center;
  background-size: cover;
  color: #f8f3eb;
}

.page--about .about-why__grid {
  display: grid;
  grid-template-columns: 0.52fr 0.29fr;
  justify-content: space-between;
  gap: 64px;
}

.page--about .about-why h2 {
  color: #f8f3eb;
  font-size: clamp(44px, 4vw, 50px);
  line-height: 1;
}

.page--about .about-why__copy p:not(.eyebrow) {
  max-width: 630px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

.page--about .about-why__copy .button {
  margin-top: 24px;
}

.page--about .about-why__features {
  display: grid;
  gap: 20px;
}

.page--about .about-why__features > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.page--about .about-why__features span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold-light);
  flex: 0 0 auto;
}

.page--about .about-why__features svg {
  width: 22px;
  height: 22px;
}

.page--about .about-why__features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.page--about .about-why__features strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.page--about .about-atmosphere {
  padding: 34px 0;
  background: var(--cream);
}

.page--about .about-atmosphere__grid {
  display: grid;
  grid-template-columns: 0.31fr 0.65fr;
  gap: 42px;
  align-items: center;
}

.page--about .about-atmosphere h2 {
  font-size: 46px;
  line-height: 1;
}

.page--about .about-atmosphere__copy p:not(.eyebrow) {
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.page--about .about-atmosphere__copy .button {
  min-height: 44px;
}

.page--about .about-atmosphere__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page--about .about-atmosphere__gallery img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  border-radius: 9px;
  object-fit: cover;
}

.page--about .about-final-cta {
  min-height: 165px;
  padding: 34px 0;
  background-image: linear-gradient(90deg, rgba(11, 9, 7, 0.94), rgba(11, 9, 7, 0.78), rgba(11, 9, 7, 0.45)),
    url("/assets/havlu.png");
  background-position: center;
  background-size: cover;
  color: #fff;
}

.page--about .about-final-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.page--about .about-final-cta .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
  letter-spacing: 0.23em;
}

.page--about .about-final-cta h2 {
  color: #fff;
  font-size: clamp(38px, 4vw, 44px);
  line-height: 1;
}

.page--about .about-final-cta p:not(.eyebrow) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.home-values {
  padding: 0 0 34px;
  background: var(--cream);
}

.home-values-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 11px;
  background: #f2ede5;
}

.home-values-strip > div {
  display: grid;
  min-height: 136px;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.home-values-strip > div + div {
  border-left: 1px solid rgba(23, 19, 16, 0.12);
}

.home-values-strip svg {
  width: 38px;
  height: 38px;
  color: var(--gold-dark);
}

.home-values-strip h3 {
  margin: 12px 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.home-values-strip p {
  max-width: 190px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.home-why {
  min-height: 340px;
  margin-bottom: 72px;
  padding: 58px 0;
  background-image: linear-gradient(90deg, rgba(11, 9, 7, 0.94), rgba(11, 9, 7, 0.72), rgba(11, 9, 7, 0.86)),
    url("/assets/header.png");
  background-position: center;
  background-size: cover;
  color: #f8f3eb;
}

.home-why__grid {
  display: grid;
  grid-template-columns: 0.52fr 0.29fr;
  justify-content: space-between;
  gap: 64px;
}

.home-why h2 {
  margin: 0;
  color: #f8f3eb;
  font-family: var(--font-display);
  font-size: clamp(44px, 4vw, 50px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.home-why__copy p:not(.eyebrow) {
  max-width: 630px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
}

.home-why__copy .button {
  margin-top: 24px;
}

.home-why__features {
  display: grid;
  gap: 20px;
}

.home-why__features > div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.home-why__features span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold-light);
  flex: 0 0 auto;
}

.home-why__features svg {
  width: 22px;
  height: 22px;
}

.home-why__features p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.45;
}

.home-why__features strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 1200px) {
  :root {
    --pad: 32px;
  }

  .site-header {
    grid-template-columns: 130px 1fr 142px;
    padding-inline: 32px;
  }

  .main-nav {
    gap: 20px;
  }

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

  .service-card:nth-child(n + 4) {
    max-width: calc(50% - 8px);
  }

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

  .salon-copy {
    order: -1;
  }

  .salon-right {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  :root {
    --pad: 24px;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 72px;
    padding-inline: 20px;
  }

  .brand {
    justify-self: center;
  }

  .brand img {
    width: 84px;
  }

  .main-nav,
  .nav-cta {
    display: none;
  }

  body {
    padding-bottom: 72px;
  }

  .menu-button {
    display: none;
  }

  .mobile-bottom-nav {
    position: fixed;
    z-index: 50;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: 68px;
    padding: 8px 6px;
    border: 1px solid rgba(213, 169, 79, 0.28);
    border-radius: 12px;
    background: rgba(11, 9, 7, 0.92);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
  }

  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    gap: 5px;
    min-width: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.15;
  }

  .mobile-bottom-nav svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
  }

  .mobile-bottom-nav a.active {
    color: var(--gold-light);
  }

  .mobile-bottom-nav span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 740px;
    background-image: linear-gradient(180deg, rgba(5, 4, 3, 0.5), rgba(5, 4, 3, 0.78) 55%, rgba(5, 4, 3, 0.96)),
      url("assets/header.png");
    background-position: 62% center;
  }

  .hero-content {
    display: grid;
    justify-items: center;
    width: auto;
    margin: 0;
    padding: 145px 20px 0;
    text-align: center;
    transform: none;
  }

  .hero .eyebrow {
    font-size: 10px;
  }

  .hero h1 {
    max-width: 310px;
    font-size: clamp(44px, 11vw, 48px);
    line-height: 0.95;
  }

  .hero-copy {
    max-width: 340px;
    margin-inline: auto;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    width: min(100%, 340px);
    margin-inline: auto;
  }

  .hero-features {
    right: 20px;
    bottom: 34px;
    left: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-item {
    display: grid;
    width: auto;
    min-width: 0;
    justify-items: center;
    gap: 8px;
    padding: 0;
    text-align: center;
    font-size: 15.5px;
    line-height: 1.16;
  }

  .feature-item span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .feature-item + .feature-item {
    padding-left: 0;
    border-left: 0;
  }

  .feature-item svg {
    width: 25px;
    height: 25px;
  }

  .slider-indicator {
    display: none;
  }

  .section-heading {
    display: block;
  }

  .outline-link {
    margin-top: 22px;
  }

  .why-inner,
  .value-list,
  .salon-grid,
  .service-about-grid,
  .detail-faq-grid,
  .home-why__grid,
  .page--about .about-intro__grid,
  .page--about .about-why__grid,
  .page--about .about-atmosphere__grid,
  .page--about .about-final-cta__inner {
    grid-template-columns: 1fr;
  }

  .salon-copy {
    order: -2;
  }

  .service-hero {
    min-height: 720px;
    background-image: linear-gradient(180deg, rgba(5, 4, 3, 0.32), rgba(5, 4, 3, 0.62) 45%, rgba(5, 4, 3, 0.96) 100%),
      var(--hero-image);
    background-position: var(--mobile-position);
  }

  .service-hero-inner {
    width: auto;
    padding: 118px 20px 0;
  }

  .breadcrumb {
    margin-bottom: 24px;
    font-size: 11px;
  }

  .service-hero h1 {
    max-width: 340px;
    font-size: clamp(44px, 12vw, 48px);
  }

  .service-hero-copy {
    max-width: 350px;
    font-size: 14px;
  }

  .service-hero-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 10px;
    margin-top: 28px;
  }

  .service-hero-feature {
    min-width: 0;
    padding: 0;
    text-align: center;
    justify-items: center;
  }

  .service-hero-feature + .service-hero-feature {
    padding-left: 0;
    border-left: 0;
  }

  .service-hero-feature svg {
    width: 34px;
    height: 34px;
  }

  .service-hero-actions {
    display: grid;
    gap: 14px;
    width: min(100%, 350px);
  }

  .service-hero-actions .button {
    width: 100%;
  }

  .micro-cta {
    grid-template-columns: 1fr auto;
    padding: 12px 0;
  }

  .service-about {
    padding: 56px 0 34px;
  }

  .service-about-copy {
    order: -1;
  }

  .service-about-copy h2 {
    font-size: 38px;
  }

  .service-info-row {
    grid-template-columns: 1fr;
  }

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

  .info-item + .info-item {
    border-left: 0;
  }

  .info-item:nth-child(2n) {
    border-left: 1px solid rgba(23, 19, 16, 0.12);
  }

  .info-item:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 19, 16, 0.12);
  }

  .detail-faq {
    padding: 48px 0;
  }

  .page--about .about-hero {
    min-height: 720px;
    background-image: linear-gradient(180deg, rgba(5, 4, 3, 0.36), rgba(5, 4, 3, 0.68) 46%, rgba(5, 4, 3, 0.96) 100%),
      url("/assets/header.png");
    background-position: 66% center;
  }

  .page--about .about-hero__inner {
    width: auto;
    padding: 128px 20px 0;
  }

  .page--about .about-hero h1 {
    max-width: 350px;
    font-size: clamp(43px, 11vw, 48px);
  }

  .page--about .about-hero p:not(.eyebrow) {
    max-width: 350px;
    font-size: 14px;
  }

  .page--about .about-hero__actions {
    display: grid;
    width: min(100%, 350px);
  }

  .page--about .about-intro__copy {
    order: -1;
  }

  .page--about .about-values-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-values-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .page--about .about-values-strip > div + div {
    border-left: 0;
  }

  .home-values-strip > div + div {
    border-left: 0;
  }

  .page--about .about-values-strip > div:nth-child(2n) {
    border-left: 1px solid rgba(23, 19, 16, 0.12);
  }

  .home-values-strip > div:nth-child(2n) {
    border-left: 1px solid rgba(23, 19, 16, 0.12);
  }

  .page--about .about-values-strip > div:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 19, 16, 0.12);
  }

  .home-values-strip > div:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 19, 16, 0.12);
  }

  .home-values-strip h3 {
    font-size: 15px;
  }

  .home-values-strip p {
    font-size: 14px;
    line-height: 1.42;
  }

  .page--about .about-why__grid {
    gap: 36px;
  }

  .home-why__grid {
    gap: 36px;
  }

  .page--about .about-atmosphere__gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  :root {
    --pad: 20px;
  }

  .section-inner {
    width: calc(100% - 40px);
  }

  .services {
    padding: 56px 0 32px;
  }

  .section-heading h2 {
    max-width: 330px;
    font-size: 34px;
    line-height: 1.04;
  }

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

  .service-card:nth-child(n + 4) {
    max-width: none;
  }

  .service-card img {
    aspect-ratio: 1.18 / 1;
  }

  .service-card div {
    min-height: 126px;
    padding: 22px 14px 16px;
  }

  .service-card h3 {
    font-size: 17px;
    font-weight: 800;
  }

  .service-card p {
    padding-right: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.45;
  }

  .service-card div > a {
    right: 12px;
    top: -16px;
    width: 32px;
    height: 32px;
  }

  .campaign-banner {
    padding-bottom: 46px;
  }

  .campaign-banner a {
    border-radius: 8px;
  }

  .campaign-banner img {
    aspect-ratio: 1920 / 821;
  }

  .why {
    padding: 64px 0;
  }

  .why h2 {
    font-size: 40px;
  }

  .value-list {
    margin-top: 32px;
  }

  .salon {
    padding: 64px 0;
  }

  .salon-grid {
    gap: 16px;
  }

  .salon-copy h2 {
    font-size: 40px;
  }

  .salon-media img {
    min-height: 280px;
  }

  .stats {
    gap: 10px;
  }

  .stats strong {
    font-size: 29px;
  }

  .stats span {
    font-size: 10.5px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 34px 20px 26px;
    text-align: center;
  }

  .site-footer nav,
  .socials,
  .legal {
    justify-content: center;
  }

  .site-footer nav {
    gap: 18px;
  }

  .legal {
    flex-wrap: wrap;
    text-align: center;
  }

  .site-credit {
    width: 100%;
    margin-left: 0;
  }

  .service-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 12px;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .service-gallery img {
    min-width: 0;
    aspect-ratio: 1.18 / 1;
    scroll-snap-align: none;
  }

  .gallery-controls {
    display: none;
  }

  .gallery-heading {
    align-items: end;
  }

  .service-gallery-section h2 {
    font-size: 30px;
  }

  .detail-faq h2 {
    font-size: 36px;
  }

  .faq-item button {
    min-height: 56px;
  }

  .detail-final-cta {
    min-height: 210px;
  }

  .page--about .about-intro {
    padding: 56px 0 24px;
  }

  .page--about .about-intro h2,
  .page--about .about-why h2 {
    font-size: 38px;
  }

  .home-why h2 {
    font-size: 38px;
  }

  .page--about .about-values-strip > div {
    min-height: 128px;
    padding: 18px 12px;
  }

  .home-values-strip > div {
    min-height: 128px;
    padding: 18px 12px;
  }

  .page--about .about-why {
    padding: 54px 0;
  }

  .home-why {
    margin-bottom: 46px;
    padding: 54px 0;
  }

  .page--about .about-atmosphere {
    padding: 50px 0 34px;
  }

  .page--about .about-atmosphere h2 {
    font-size: 40px;
  }

  .page--about .about-final-cta {
    min-height: 230px;
    text-align: center;
  }

  .page--about .about-final-cta__inner {
    justify-items: center;
  }
}
