:root {
  --paper: #f3eee7;
  --paper-2: #e9ddcf;
  --ink: #241c18;
  --muted: #665b54;
  --accent: #774629;
  --dark: #2a211d;
  --line: #cbbcaf;
  --container: 1340px;
  color-scheme: light dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.shell {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 50;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 18px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  height: 74px;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 10;
}
.nav-shell {
  height: 100%;
  width: min(calc(100% - 64px), var(--container));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand img {
  width: 250px;
  max-height: 50px;
  object-fit: contain;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
}
.site-header nav a {
  text-decoration: none;
}
.book-link {
  border-bottom: 2px solid var(--accent);
  font-weight: 700;
  padding: 9px 0;
}
.menu-button {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  padding: 9px 13px;
  font: inherit;
}
.hero {
  min-height: 84vh;
  display: flex;
  align-items: stretch;
}
.hero-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 360px;
  align-items: stretch;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.vertical-word {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding: 52px 27px;
  border-right: 1px solid var(--line);
  font-size: 0.77rem;
  letter-spacing: 0.3em;
  color: var(--accent);
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(42px, 6vw, 94px);
}
.eyebrow,
.note-label {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7.4vw, 7.3rem);
  font-weight: 400;
  line-height: 0.91;
  letter-spacing: -0.055em;
}
.hero-lead {
  max-width: 610px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.primary,
.light-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  width: max-content;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 22px;
  text-decoration: none;
  font-weight: 700;
}
.booking-note {
  align-self: end;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--paper-2);
}
.booking-note p {
  margin-top: 0;
}
.booking-note a {
  font-size: 1.25rem;
  font-weight: 750;
  text-underline-offset: 5px;
}
.salon-story {
  padding: clamp(100px, 13vw, 180px) 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(70px, 11vw, 170px);
}
.story-title h2,
.products h2,
.contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.045em;
  margin: 0;
}
.story-copy {
  font-size: 1.18rem;
  color: var(--muted);
  padding-top: 40px;
}
.story-copy p {
  margin: 0 0 28px;
}
.craft-band {
  background: var(--dark);
  color: #f7f1e9;
  padding: clamp(90px, 11vw, 150px) 0;
}
.craft-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 90px;
  align-items: end;
}
.craft-quote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.3rem, 6.2vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.craft-actions p {
  color: #d4c7bd;
  max-width: 520px;
}
.craft-actions > div {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
}
.light-button {
  background: #f7f1e9;
  color: #2a211d;
}
.inline-link {
  text-underline-offset: 5px;
}
.products {
  padding: clamp(95px, 12vw, 170px) 0;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}
.product-copy p:last-child {
  max-width: 580px;
  color: var(--muted);
  font-size: 1.1rem;
}
.products figure {
  margin: 0;
}
.products figure img {
  width: 500px;
  height: 500px;
  object-fit: contain;
}
.products figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}
.contact {
  padding: 0 0 clamp(95px, 12vw, 160px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(70px, 10vw, 150px);
}
.contact > div > p:not(.eyebrow) {
  color: var(--muted);
}
.map-card {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  text-decoration: none;
  font-weight: 700;
}
.contact-list {
  border-top: 1px solid var(--line);
}
.contact-list a {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.contact-list span {
  color: var(--muted);
}
.contact-list strong {
  overflow-wrap: anywhere;
}
footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}
.footer-grid p {
  margin: 0;
}
.disclaimer {
  font-size: 0.82rem;
  color: var(--muted);
}
a:focus-visible,
.menu-button:focus-visible {
  outline: 3px solid #c98b59;
  outline-offset: 4px;
}
@media (max-width: 850px) {
  .shell,
  .nav-shell {
    width: min(calc(100% - 36px), var(--container));
  }
  .brand img {
    width: 210px;
  }
  .menu-button {
    display: block;
  }
  html:not(.js) .site-header {
    height: auto;
  }
  html:not(.js) .nav-shell {
    height: auto;
    flex-wrap: wrap;
    padding-block: 10px;
  }
  html:not(.js) .menu-button {
    display: none;
  }
  html:not(.js) .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 4px 10px;
    padding-bottom: 6px;
  }
  .js .site-header nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .js .site-header nav.open {
    display: flex;
  }
  .site-header nav a {
    padding: 10px;
  }
  .hero {
    min-height: 84svh;
  }
  .hero-grid {
    grid-template-columns: 50px 1fr;
    border-right: 0;
  }
  .vertical-word {
    padding: 36px 14px;
  }
  .hero-copy {
    padding: 52px 26px;
  }
  .hero h1 {
    font-size: clamp(3.3rem, 16.3vw, 5.2rem);
  }
  .hero h1 br {
    display: none;
  }
  .booking-note {
    grid-column: 1/-1;
    border-left: 0;
  }
  .salon-story,
  .craft-grid,
  .products,
  .contact {
    grid-template-columns: 1fr;
  }
  .salon-story,
  .craft-grid,
  .products,
  .contact {
    gap: 48px;
  }
  .story-copy {
    padding-top: 0;
  }
  .craft-actions > div {
    align-items: flex-start;
    flex-direction: column;
  }
  .products figure img {
    width: min(100%, 420px);
    height: auto;
  }
  .contact-list a {
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1b1714;
    --paper-2: #2a231f;
    --ink: #f3ede6;
    --muted: #c4b7ad;
    --accent: #d49b6f;
    --dark: #100d0b;
    --line: #4b4038;
  }
  .brand img {
    filter: invert(1);
  }
  .primary {
    background: #f3ede6;
    color: #1b1714;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
