:root {
  color-scheme: dark;
  --bg: #000;
  --surface: #0b0b0b;
  --text: #f3f3f3;
  --muted: #858585;
  --line: #5e5e5e;
  --line-soft: #242424;
  --green: #123f2f;
  --green-hover: #195943;
  --green-light: #74aa91;
  --radius: 12px;
  --wide: 1120px;
  --page-pad: clamp(20px, 4vw, 40px);
  --section-gap: clamp(76px, 8vw, 112px);
  --header-height: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; overflow-wrap: anywhere; }
:focus-visible { outline: 2px solid var(--green-light); outline-offset: 4px; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}
.site-header::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(0, 0, 0, .64);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - (2 * var(--page-pad))), var(--wide));
  min-height: 76px;
  margin: 0 auto;
}
.brand { display: inline-flex; width: fit-content; min-height: 44px; align-items: center; }
.brand img {
  width: 140px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}
.main-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.main-nav a { padding: 10px 0; color: var(--muted); font-size: 13px; font-weight: 500; transition: color 180ms ease; }
.main-nav a:hover { color: var(--text); }
.nav-socials { display: flex; align-items: center; gap: 4px; }
.nav-social-heading { display: none; }
.main-nav .nav-social-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(243, 243, 243, .7);
}
.nav-social-link svg { width: 17px; height: 17px; overflow: visible; }
.nav-social-link svg rect,
.nav-social-link svg circle:not(.icon-dot) {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.nav-social-link .icon-dot,
.nav-social-link svg path { fill: currentColor; stroke: none; }
.header-inner > .button { flex: 0 0 auto; }
.menu-backdrop { display: none; }
.mobile-menu-toggle {
  display: none;
  width: 44px;
  min-height: 44px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.hamburger {
  display: flex;
  width: 17px;
  height: 12px;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:first-child { transform: translateY(5.5px) rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle[aria-expanded="true"] .hamburger span:last-child { transform: translateY(-5.5px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--green); }
.button-primary:hover { background: var(--green-hover); }
.button-small { min-height: 44px; padding: 9px 15px; background: var(--green); font-size: 13px; }
.hero {
  position: relative;
  padding: 0 var(--page-pad);
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, .97) 0%, rgba(0, 0, 0, .9) 38%, rgba(0, 0, 0, .56) 66%, rgba(0, 0, 0, .22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .06) 48%, rgba(0, 0, 0, .56) 80%, #000 100%),
    url("./assets/frenchcut-hero-salon-desktop-v7.jpg");
  background-position: center, center, center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-grid {
  width: min(100%, var(--wide));
  margin: 0 auto;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: clamp(640px, 78vh, 760px);
  padding: clamp(28px, 4.8vw, 58px) 0;
}
.hero-message { position: relative; z-index: 1; margin: auto 0; }
h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.25vw, 70px);
  font-weight: 800;
  letter-spacing: -.065em;
  line-height: .97;
}
h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 600;
  letter-spacing: -.045em;
  line-height: 1.1;
}
h3 { margin-bottom: 0; font-size: 16px; font-weight: 600; line-height: 24px; }
.hero-lead {
  max-width: 535px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
.button-hero { min-width: 210px; }
.button-app-hero {
  min-width: 210px;
  border-color: rgba(243, 243, 243, .78);
  background: transparent;
}
.button-app-hero:hover { border-color: var(--text); background: rgba(243, 243, 243, .07); }
.section { padding: var(--section-gap) var(--page-pad) 0; }
.faq-section { padding-bottom: var(--section-gap); }
.content-column { width: min(100%, var(--wide)); margin: 0 auto; }
.section-header { margin-bottom: 36px; }
.section-header h2 { margin-bottom: 16px; font-size: 32px; line-height: 40px; letter-spacing: -.035em; }
.about-layout {
  display: grid;
  grid-template-columns: minmax(180px, .38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 7vw, 96px);
}
.about-header { margin-bottom: 0; }
.about-copy {
  max-width: 760px;
  margin-bottom: 0;
  color: #b5b5b5;
  font-size: clamp(18px, 2.1vw, 25px);
  letter-spacing: -.025em;
  line-height: 1.55;
}
.about-intro {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 500;
}
.service-list { display: flex; flex-direction: column; gap: 16px; }
.service-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: center;
  gap: 18px;
  min-height: 98px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.service-card h3 { margin-bottom: 4px; }
.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 20px;
}
.service-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; white-space: nowrap; }
.service-meta strong { font-size: 16px; font-weight: 500; line-height: 24px; }
.service-meta span { color: var(--muted); font-size: 14px; line-height: 20px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  position: relative;
  display: block;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #171717;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease;
}
.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}
.faq-list summary span::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-list details[open] summary span { background: var(--green); color: var(--text); }
.faq-list details[open] summary span::after { opacity: 0; }
.faq-list details p { width: 100%; margin: 0; padding: 0 20px 22px; color: var(--muted); font-size: 14px; line-height: 22px; }

.site-footer { padding: 38px var(--page-pad); border-top: 1px solid var(--line-soft); }
.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 34px;
  width: min(100%, var(--wide));
  margin: 0 auto;
}
.footer-brand { display: flex; grid-column: 1 / -1; flex-direction: column; align-items: center; gap: 8px; margin-top: 8px; text-align: center; }
.footer-block { text-align: center; }
.footer-brand > span { display: block; color: var(--muted); font-size: 12px; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 16px; }
.footer-legal-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #aaa;
  font: inherit;
  font-size: 12px;
  line-height: 20px;
  cursor: pointer;
  transition: color 180ms ease;
}
.footer-legal-link:hover { color: var(--green-light); }
.footer-block > span {
  display: block;
  margin: 0 0 10px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}
.footer-block a, .footer-block p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 20px;
}
.footer-block a + a { margin-top: 0; }
.footer-block a:hover { color: var(--green-light); }

.page-main {
  min-height: 72vh;
  padding: calc(var(--header-height) + clamp(64px, 8vw, 104px)) var(--page-pad) var(--section-gap);
}
.page-shell { width: min(100%, 820px); margin: 0 auto; }
.page-kicker {
  margin-bottom: 16px;
  color: var(--green-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  line-height: 20px;
  text-transform: uppercase;
}
.page-title {
  margin-bottom: 24px;
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1;
}
.page-lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #b5b5b5;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}
.legal-meta { margin-top: 20px; color: var(--muted); font-size: 13px; }
.legal-content { margin-top: clamp(52px, 7vw, 76px); }
.legal-section + .legal-section { margin-top: 42px; }
.legal-section h2 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 30px;
}
.legal-section p { margin-bottom: 12px; color: #aaa; font-size: 15px; line-height: 1.75; }
.legal-section a { color: var(--green-light); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-section strong { color: var(--text); font-weight: 600; }

.error-main {
  display: grid;
  min-height: 72vh;
  padding: calc(var(--header-height) + 64px) var(--page-pad) 80px;
  place-items: center;
  text-align: center;
}
.error-content { width: min(100%, 680px); }
.error-code {
  margin-bottom: 12px;
  color: var(--green-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .16em;
}
.error-title {
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: 1.04;
}
.error-copy { margin-bottom: 32px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.button-secondary { border-color: var(--line); background: transparent; }
.button-secondary:hover { border-color: var(--text); background: rgba(243, 243, 243, .06); }

.consent-banner[hidden] { display: none; }
.consent-banner {
  position: fixed;
  z-index: 300;
  right: 0;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 50%;
  display: grid;
  width: min(calc(100% - 32px), 980px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: rgba(8, 8, 8, .94);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .68);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.consent-banner-copy { max-width: 620px; }
.consent-kicker {
  margin-bottom: 6px;
  color: var(--green-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 18px;
  text-transform: uppercase;
}
.consent-banner h2,
.consent-dialog h2 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 30px;
}
.consent-banner-copy > p:last-child,
.consent-dialog-lead {
  margin-bottom: 0;
  color: #a7a7a7;
  font-size: 13px;
  line-height: 20px;
}
.consent-banner-copy a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.consent-banner-actions {
  display: grid;
  min-width: 294px;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.consent-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 20px;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}
.consent-button-primary { background: var(--green); }
.consent-button-primary:hover { background: var(--green-hover); }
.consent-button-secondary { border-color: var(--line); background: transparent; }
.consent-button-secondary:hover { border-color: var(--text); background: rgba(255, 255, 255, .05); }
.consent-button-text {
  min-height: 36px;
  padding-top: 5px;
  padding-bottom: 5px;
  grid-column: 1 / -1;
  background: transparent;
  color: #aaa;
  font-weight: 500;
}
.consent-button-text:hover { color: var(--green-light); }

.consent-dialog {
  width: min(calc(100% - 32px), 620px);
  max-height: min(760px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: #090909;
  color: var(--text);
  box-shadow: 0 32px 100px rgba(0, 0, 0, .78);
}
.consent-dialog::backdrop {
  background: rgba(0, 0, 0, .76);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.consent-dialog-content { padding: 28px; }
.consent-dialog-lead { margin-bottom: 24px; }
.consent-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.consent-option {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--surface);
}
.consent-option > div,
.consent-option > span:first-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}
.consent-option strong { font-size: 14px; font-weight: 600; line-height: 21px; }
.consent-option strong + span { color: var(--muted); font-size: 12px; line-height: 18px; }
.consent-option input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--green-hover);
  cursor: pointer;
}
.consent-required {
  flex: 0 0 auto;
  color: var(--green-light);
  font-size: 11px;
  font-weight: 600;
  line-height: 18px;
  white-space: nowrap;
}
.consent-dialog-actions { display: flex; gap: 10px; margin-top: 22px; }
.consent-dialog-actions .consent-button { min-width: 150px; }

@media (max-width: 900px) {
  :root { --mobile-menu-width: min(320px, 86vw); }
  body.menu-open { overflow: hidden; }
  .header-inner { gap: 10px; }
  .header-inner > .button { margin-left: auto; }
  .mobile-menu-toggle { position: relative; z-index: 3; display: inline-flex; align-items: center; justify-content: center; margin-left: 0; }
  .mobile-menu-toggle[aria-expanded="true"] { border-color: var(--green-light); color: var(--green-light); }
  .menu-backdrop {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: var(--mobile-menu-width);
    bottom: 0;
    left: 0;
    display: block;
    padding: 0;
    border: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, .48);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    transition: opacity 260ms ease, visibility 0s linear 260ms;
  }
  .menu-backdrop.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav {
    position: fixed;
    z-index: 2;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    display: flex;
    width: var(--mobile-menu-width);
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 30px 24px 24px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .64);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: -24px 0 64px rgba(0, 0, 0, .58);
    transform: translateX(calc(100% + 16px));
    visibility: hidden;
    pointer-events: none;
    transition: transform 300ms cubic-bezier(.22, 1, .36, 1), visibility 0s linear 300ms;
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }
  .main-nav > a {
    width: 100%;
    padding: 17px 0;
    border-bottom: 1px solid var(--line-soft);
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
  }
  .nav-socials {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
    padding-top: 32px;
  }
  .nav-social-heading {
    display: block;
    flex: 0 0 100%;
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 20px;
  }
  .main-nav .nav-social-link {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 10px;
    color: var(--text);
    background: rgba(255, 255, 255, .025);
  }
  .main-nav .nav-social-link:hover { border-color: var(--green-light); color: var(--green-light); }
  .hero-copy { min-height: 640px; }
  .footer-block a { padding: 0 8px; }
}

@media (max-width: 640px) {
  :root { --page-pad: 20px; --header-height: 68px; }
  html { scroll-padding-top: 20px; }
  .header-inner { min-height: 68px; gap: 8px; }
  .brand img { width: 120px; height: 42px; }
  .button-small { min-height: 44px; padding: 9px 12px; font-size: 12px; }
  .hero {
    padding-top: 0;
    background-color: #000;
    background-image:
      linear-gradient(90deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, .64) 70%, rgba(0, 0, 0, .48) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, .1) 42%, rgba(0, 0, 0, .6) 76%, #000 100%),
      url("./assets/frenchcut-hero-salon-mobile-v7.jpg");
    background-position: center, center, center 52%;
    background-size: cover;
  }
  .hero::after {
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 3px;
    background: #000;
    content: "";
    pointer-events: none;
  }
  .hero-copy { min-height: 620px; padding: 24px 0; }
  h1 { font-size: clamp(43px, 12.4vw, 56px); }
  .hero-lead { font-size: 16px; line-height: 25px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .section { padding-top: var(--section-gap); padding-bottom: 0; }
  .about-layout { grid-template-columns: 1fr; gap: 20px; }
  .about-copy { font-size: 18px; line-height: 1.55; }
  .faq-section { padding-bottom: var(--section-gap); }
  .service-card { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; min-height: 110px; }
  .footer-block a, .footer-block p { font-size: 13px; line-height: 22px; }
  .footer-block a { min-height: 32px; padding: 5px 8px; }
  .footer-inner { grid-template-columns: 1fr; gap: 22px; }
  .page-main { padding-top: calc(var(--header-height) + 52px); }
  .legal-content { margin-top: 46px; }
  .legal-section + .legal-section { margin-top: 36px; }
  .error-main { padding-top: calc(var(--header-height) + 48px); padding-bottom: 64px; }
  .error-actions { flex-direction: column; }
  .error-actions .button { width: 100%; }
  .consent-banner {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100% - 16px);
    padding: 18px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
  }
  .consent-banner-actions { min-width: 0; }
  .consent-dialog-content { padding: 22px 18px; }
  .consent-option { align-items: flex-start; }
  .consent-required { margin-top: 1px; }
  .consent-dialog-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .consent-dialog-actions .consent-button { min-width: 0; }
}

@media (max-width: 340px) {
  .brand img { width: 108px; height: 40px; }
  .button-small { padding-right: 10px; padding-left: 10px; }
  .consent-banner-actions,
  .consent-dialog-actions { grid-template-columns: 1fr; }
  .consent-button-text { grid-column: auto; }
  .consent-option { flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
