:root {
  --ink: #15130f;
  --muted: #6e675f;
  --paper: #f7f2ea;
  --cream: #fffaf2;
  --line: rgba(21, 19, 15, .12);
  --rose: #b96f64;
  --rose-dark: #7b3e38;
  --sage: #6e8d7b;
  --mint: #dbe9df;
  --charcoal: #171513;
  --gold: #c8a85d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 28px));
  min-height: 70px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(23, 21, 19, .82);
  color: #fff;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .24);
}

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

.brand-logo img {
  width: 158px;
  max-height: 44px;
  object-fit: contain;
  padding: 6px 8px;
  background: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .38);
  background: var(--rose);
  font-family: "Playfair Display", serif;
  font-size: 27px;
  font-weight: 700;
}

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

.brand strong {
  font-size: 16px;
  letter-spacing: .08em;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  opacity: .78;
}

.nav-links a:hover {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 42px);
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, .1);
}

.language-switch button {
  min-height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-switch button.active {
  background: #fff;
  color: var(--charcoal);
}

.book-link,
.button,
.floating-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 900;
}

.book-link {
  background: var(--rose);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  gap: 24px;
  padding: 154px max(28px, calc((100vw - 1180px) / 2)) 62px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 13, 11, .93), rgba(15, 13, 11, .58) 46%, rgba(15, 13, 11, .18)),
    linear-gradient(0deg, rgba(15, 13, 11, .74), rgba(15, 13, 11, .08) 32%),
    url("images/official_home_section_01.webp") center / cover;
  transform: scale(1.02);
}

.hero-copy {
  max-width: 820px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.service-hero h2,
.team-section h2,
.proof-section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: .93;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 20px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, .24);
}

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

.button.secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.hero-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 250, 242, .12);
  backdrop-filter: blur(16px);
}

.hero-card div {
  display: grid;
  gap: 4px;
}

.hero-card strong {
  font-size: 42px;
  line-height: 1;
}

.hero-card span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
}

.hero-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.hero-upgrade {
  min-height: 100vh;
}

.upgrade-card {
  background: rgba(255, 250, 242, .16);
}

.booking-console,
.signature-section,
.brand-lab {
  padding: 100px max(28px, calc((100vw - 1180px) / 2));
}

.booking-console {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 36px;
  background: #fff;
}

.console-intro {
  position: sticky;
  top: 116px;
  align-self: start;
}

.console-intro h2,
.signature-section h2,
.brand-lab h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.03;
}

.console-intro p:not(.section-label),
.brand-lab-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.route-grid article {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.route-grid article:nth-child(2) {
  background: var(--mint);
}

.route-grid article:nth-child(4) {
  background: var(--charcoal);
  color: #fff;
}

.route-grid span,
.signature-grid span {
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.route-grid article:nth-child(4) span,
.route-grid article:nth-child(4) small,
.route-grid article:nth-child(4) p {
  color: rgba(255, 255, 255, .72);
}

.route-grid h3,
.signature-grid h3,
.team-full h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}

.route-grid h3 {
  font-size: 32px;
  line-height: 1.05;
}

.route-grid p,
.signature-grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.route-meta {
  display: grid;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.route-meta strong {
  font-size: 17px;
}

.route-meta small {
  color: var(--muted);
  font-weight: 800;
}

.route-grid a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: var(--rose);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.route-grid article:nth-child(4) a {
  background: #fff;
  color: var(--charcoal);
}

.path-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--charcoal);
  color: #fff;
}

.path-strip a {
  min-height: 155px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, .12);
}

.path-strip a:hover {
  background: rgba(255, 255, 255, .06);
}

.path-strip span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.path-strip strong {
  font-size: 20px;
}

.path-strip small {
  max-width: 250px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
  line-height: 1.45;
}

.section,
.team-section,
.contact-section {
  padding: 100px max(28px, calc((100vw - 1180px) / 2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: 60px;
}

.split h2,
.service-hero h2,
.team-section h2,
.proof-section h2,
.contact-section h2 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
}

.lead-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

.lead-copy p {
  margin: 0 0 18px;
}

.services-section {
  padding: 0 max(28px, calc((100vw - 1180px) / 2)) 108px;
}

.service-hero {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 46px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 18, 17, .9), rgba(18, 18, 17, .25)),
    url("images/official_home_section_02.webp") center / cover;
}

.service-hero h2 {
  max-width: 760px;
}

.service-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: var(--cream);
}

.service-tabs button {
  min-height: 68px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.service-tabs button.active {
  background: var(--rose);
  color: #fff;
}

.service-panels {
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 0;
}

.service-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
  gap: 42px;
  align-items: center;
  padding: 34px;
}

.service-panel.active {
  display: grid;
}

.service-panel img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.service-panel span {
  color: var(--sage);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
}

.service-panel h3 {
  margin: 14px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.02;
}

.service-panel p,
.service-panel li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.service-panel ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-panel li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
}

.service-panel li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 0;
  width: 10px;
  height: 10px;
  background: var(--rose);
}

.team-section {
  background: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 40px;
  align-items: start;
  margin-bottom: 42px;
}

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

.team-grid article {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 24px;
  background: var(--paper);
}

.team-grid img {
  width: 170px;
  height: 170px;
  margin-bottom: 28px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.team-grid span {
  color: var(--rose-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.team-grid p {
  max-width: 300px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.signature-section {
  background: var(--charcoal);
  color: #fff;
}

.signature-section .section-heading {
  grid-template-columns: 240px minmax(0, 820px);
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.signature-grid article {
  min-height: 255px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
}

.signature-grid span {
  color: var(--gold);
}

.signature-grid h3 {
  font-size: 26px;
  line-height: 1.05;
}

.signature-grid p {
  color: rgba(255, 255, 255, .68);
}

.brand-lab {
  display: grid;
  grid-template-columns: minmax(300px, 480px) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  background: #fff;
}

.brand-lab-copy {
  display: grid;
  gap: 18px;
}

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

.brand-grid img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.k18-banner {
  grid-column: 2;
  display: block;
}

.k18-banner img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
}

.team-upgrade {
  background: var(--paper);
}

.team-full {
  grid-template-columns: repeat(4, 1fr);
}

.team-full article {
  min-height: 390px;
  background: #fff;
}

.team-full img {
  width: 132px;
  height: 132px;
}

.team-full h3 {
  margin-top: 8px;
  font-size: 25px;
}

.team-full p {
  font-size: 15px;
}

.proof-upgrade {
  background: #e6eee6;
}

.proof-section {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  padding: 96px max(28px, calc((100vw - 1180px) / 2));
  background: var(--mint);
}

.proof-section > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  box-shadow: 22px 22px 0 rgba(255, 255, 255, .8);
}

.proof-section p:not(.section-label) {
  max-width: 760px;
  color: #445248;
  font-size: 18px;
  line-height: 1.72;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.proof-stats span {
  display: grid;
  gap: 6px;
  padding: 20px;
  background: rgba(255, 255, 255, .72);
}

.proof-stats strong {
  font-size: 28px;
}

.proof-stats small {
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 480px) minmax(0, 1fr);
  gap: 58px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(20, 17, 14, .95), rgba(20, 17, 14, .76)),
    url("images/official_hair_salon_hero.webp") center / cover;
}

.contact-copy p:not(.section-label) {
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.7;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-grid a {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
}

.contact-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-grid strong {
  overflow-wrap: anywhere;
  font-size: 21px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px max(28px, calc((100vw - 1180px) / 2));
  background: #0f0e0d;
  color: #fff;
}

.site-footer div:first-child {
  display: grid;
  gap: 8px;
}

.site-footer span {
  color: rgba(255, 255, 255, .6);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 8px;
}

.floating-actions a {
  min-width: 104px;
  background: var(--charcoal);
  color: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.floating-actions a:last-child {
  background: var(--rose);
}

.floating-actions.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
    width: calc(100% - 18px);
  }

  .brand {
    min-width: 0;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .header-actions {
    justify-content: space-between;
  }

  .hero {
    min-height: 860px;
    grid-template-columns: 1fr;
    padding-top: 220px;
  }

  .path-strip,
  .service-tabs,
  .team-grid,
  .team-full,
  .proof-stats,
  .route-grid,
  .signature-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .booking-console,
  .service-panel,
  .section-heading,
  .brand-lab,
  .proof-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .console-intro {
    position: static;
  }

  .k18-banner {
    grid-column: 1;
  }

  .service-panel img {
    height: 380px;
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 8px;
    min-height: 0;
    gap: 9px;
    padding: 8px;
  }

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

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

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

  .nav-links {
    gap: 13px;
    font-size: 13px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 46px);
  }

  .language-switch button {
    min-height: 38px;
  }

  .book-link {
    flex: 1;
    min-height: 46px;
  }

  .hero {
    min-height: 780px;
    padding: 200px 18px 118px;
  }

  .hero-bg {
    transform: none;
  }

  .hero h1 {
    font-size: clamp(42px, 15vw, 66px);
  }

  .hero-text {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .path-strip,
  .service-tabs,
  .team-grid,
  .team-full,
  .route-grid,
  .signature-grid,
  .brand-grid,
  .proof-stats,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .team-section,
  .contact-section,
  .proof-section,
  .booking-console,
  .signature-section,
  .brand-lab {
    padding: 72px 18px;
  }

  .services-section {
    padding: 0 18px 76px;
  }

  .service-hero {
    min-height: 360px;
    padding: 28px;
  }

  .service-panel {
    padding: 18px;
  }

  .service-panel img {
    height: 280px;
  }

  .proof-section > img {
    height: 390px;
  }

  .site-footer {
    display: grid;
    padding: 30px 18px 92px;
  }

  .floating-actions {
    left: 10px;
    right: 10px;
  }

  .floating-actions a {
    flex: 1;
  }
}
