:root {
  --ink: #28231f;
  --muted: #73685f;
  --paper: #fffaf5;
  --cream: #f4eadf;
  --mist: #e5eee9;
  --rose: #c98282;
  --moss: #5b7467;
  --line: rgba(40, 35, 31, 0.14);
  --shadow: 0 22px 60px rgba(58, 43, 34, 0.13);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 245, 0.94);
  box-shadow: 0 10px 30px rgba(47, 35, 28, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  font-family: "Playfair Display", "Noto Sans SC", serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow:
    -7px -3px 0 -2px var(--rose),
    -2px -8px 0 -2px var(--rose),
    4px -7px 0 -2px var(--rose),
    0 0 0 2px rgba(255, 250, 245, 0.28);
}

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

.brand strong {
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
  font-family: "Noto Sans SC", system-ui, sans-serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.05;
}

.brand strong::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.brand small {
  margin-top: 5px;
  color: currentColor;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  line-height: 1;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  opacity: 0.7;
  transform: scaleX(1);
}

.nav-cta,
.button {
  border-radius: 999px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid currentColor;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.language-switch button {
  min-width: 52px;
  padding: 7px 10px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--ink);
  background: rgba(255, 250, 245, 0.92);
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(91, 116, 103, 0.08);
}

.site-header.is-scrolled .language-switch button.is-active,
.site-header.is-open .language-switch button.is-active {
  color: #fff;
  background: var(--moss);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

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

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.74) 0%, rgba(31, 26, 23, 0.48) 42%, rgba(31, 26, 23, 0.12) 100%),
    linear-gradient(0deg, rgba(32, 26, 21, 0.18), rgba(32, 26, 21, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 36px));
  margin-left: clamp(18px, 8vw, 108px);
  padding-top: 68px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--moss);
  font-family: "Noto Sans SC", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.58;
}

.hero .eyebrow {
  color: #f4ded5;
}

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

h1,
h2 {
  font-family: "Playfair Display", "Noto Sans SC", serif;
  line-height: 1.16;
  letter-spacing: 0;
}

h1 {
  max-width: 580px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.6vw, 76px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.4vw, 52px);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.35;
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 2vw, 19px);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-badges span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions,
.footer-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--moss);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.section,
.section-band {
  padding: clamp(72px, 9vw, 120px) 0;
}

.section-band {
  background: var(--cream);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.intro-grid,
.split,
.salon-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.menu .split {
  display: block;
}

.menu .sticky-heading {
  position: static;
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 76px);
}

.intro p,
.menu p,
.salon p,
.contact p {
  color: var(--muted);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 34px;
}

.section-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--moss);
  color: var(--moss);
  background: rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-weight: 700;
}

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

.service-card,
.flow-step,
.booking-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 374px;
  padding: 32px;
}

.service-card.accent {
  background: var(--mist);
}

.service-number {
  margin-bottom: 28px;
  color: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 38px;
  font-weight: 700;
}

.service-card p,
.flow-step p {
  color: var(--muted);
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--moss);
  font-size: 13px;
  background: rgba(255, 255, 255, 0.58);
}

.sticky-heading {
  position: sticky;
  top: 120px;
  margin-bottom: 0;
}

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

.price-group {
  padding: 20px;
  border: 1px solid rgba(40, 35, 31, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.66);
}

.price-group.featured {
  border-color: rgba(91, 116, 103, 0.36);
  background: #fffaf5;
  box-shadow: var(--shadow);
}

.price-group-heading {
  margin-bottom: 10px;
}

.price-group-heading h3 {
  margin: 0;
  font-size: 21px;
}

.price-group-heading p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 58px 84px;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid rgba(40, 35, 31, 0.13);
}

.price-item.compact {
  grid-template-columns: minmax(0, 1fr) 122px;
}

.price-item strong,
.price-item span {
  display: block;
}

.price-item strong {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.price-item span,
.price-item em {
  color: var(--muted);
  font-style: normal;
}

.price-item em {
  white-space: nowrap;
  text-align: right;
  font-size: 13px;
}

.price-item b {
  color: var(--moss);
  text-align: right;
  white-space: nowrap;
  font-size: 18px;
}

.price-note {
  margin: 8px 0 0;
  color: var(--moss);
  font-size: 13px;
  font-weight: 700;
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 7vw, 88px);
  align-items: start;
}

.result-card {
  margin: 0;
}

.result-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.result-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.result-label {
  position: absolute;
  top: 16px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #fff;
  background: rgba(48, 42, 37, 0.74);
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.result-label.before {
  left: 16px;
}

.result-label.after {
  right: 16px;
}

.result-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.result-disclaimer {
  margin: 6px 0 0;
  color: rgba(115, 104, 95, 0.86);
  font-size: 12px;
  line-height: 1.6;
}

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

.flow-step {
  min-height: 230px;
  padding: 26px;
  box-shadow: none;
}

.flow-step span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.info-list {
  margin: 0;
  border-top: 1px solid rgba(40, 35, 31, 0.16);
}

.info-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(40, 35, 31, 0.16);
}

.info-list dt {
  color: var(--moss);
  font-weight: 700;
}

.info-list dd {
  margin: 0;
  color: var(--muted);
}

.info-list dd small {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
}

.contact-info-list {
  max-width: 620px;
  margin-top: 28px;
}

.contact-info-list div {
  padding: 12px 0;
}

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

.qr-card {
  display: grid;
  gap: 12px;
  align-items: center;
  justify-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.qr-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 156px);
  aspect-ratio: 1;
  border: 1px solid rgba(40, 35, 31, 0.18);
  border-radius: 6px;
  background:
    linear-gradient(45deg, rgba(91, 116, 103, 0.12) 25%, transparent 25% 50%, rgba(91, 116, 103, 0.12) 50% 75%, transparent 75%),
    #fff;
  background-size: 16px 16px;
}

.qr-placeholder span {
  padding: 4px 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--moss);
  font-size: 12px;
  font-weight: 700;
}

.qr-image {
  display: block;
  width: min(100%, 156px);
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid rgba(40, 35, 31, 0.18);
  border-radius: 6px;
  background: #fff;
}

.qr-card strong {
  color: var(--ink);
  font-size: 17px;
}

.phone-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--moss);
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 700;
}

.contact-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 42px;
}

.contact-summary div {
  min-height: 94px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
}

.contact-summary span,
.contact-summary strong {
  display: block;
}

.contact-summary span {
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
}

.contact-summary strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.booking-card {
  position: relative;
  display: grid;
  justify-self: end;
  width: min(100%, 430px);
  margin-top: 42px;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 44px rgba(58, 43, 34, 0.1);
}

.corner-cat {
  position: absolute;
  top: -70px;
  right: 12px;
  width: 128px;
  transform: rotate(1.5deg);
  pointer-events: none;
}

.corner-cat img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 16px rgba(58, 43, 34, 0.12));
}

.booking-card-heading p {
  margin: 0 0 6px;
  color: var(--moss);
  font-weight: 700;
}

.booking-card-heading h3 {
  margin-bottom: 6px;
}

.booking-card-heading span {
  color: var(--muted);
}

.booking-actions {
  display: grid;
  gap: 10px;
}

.booking-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.feedback-card {
  padding: 16px;
  border: 1px solid rgba(91, 116, 103, 0.18);
  border-radius: 8px;
  background: rgba(229, 238, 233, 0.44);
}

.feedback-card h4 {
  margin: 0 0 6px;
  color: var(--moss);
  font-size: 17px;
  line-height: 1.35;
}

.feedback-card p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feedback-button {
  width: 100%;
  min-height: 44px;
  color: var(--moss);
  border-color: rgba(91, 116, 103, 0.36);
  background: rgba(255, 250, 245, 0.72);
}

.feedback-button:hover {
  background: #fffaf5;
}

.site-footer {
  padding: 34px 0;
  color: #fff;
  background: #302a25;
}

.footer-inner {
  justify-content: space-between;
}

.footer-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 900px) {
  .site-header {
    height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink);
    background: rgba(255, 250, 245, 0.98);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .language-switch {
    align-self: stretch;
    margin: 8px 4px 4px;
    color: var(--ink);
  }

  .language-switch button {
    width: 100%;
    min-height: 42px;
  }

  .nav-cta {
    border-color: var(--line);
  }

  .hero {
    min-height: 760px;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(31, 26, 23, 0.78), rgba(31, 26, 23, 0.38));
  }

  .hero-content {
    margin-left: 18px;
  }

  .intro-grid,
  .split,
  .salon-grid,
  .contact-grid,
  .result-grid,
  .service-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-card {
    justify-self: stretch;
    width: 100%;
    margin-top: 0;
  }

  .sticky-heading {
    position: static;
  }
}

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

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    width: calc(100% - 36px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .flow-step {
    min-height: auto;
    padding: 24px;
  }

  .price-group-heading {
    margin-bottom: 8px;
  }

  .price-item,
  .price-item.compact {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-item em,
  .price-item b {
    text-align: left;
  }

  .contact-summary {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .qr-grid,
  .qr-card {
    grid-template-columns: 1fr;
  }

  .qr-placeholder {
    width: min(100%, 180px);
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
