:root {
  --cream: #f8f0eb;
  --soft: #ead6cd;
  --powder: #f3e5de;
  --ink: #130f0e;
  --muted: #766760;
  --copper: #a86945;
  --gold: #c89f62;
  --white: #fffdfb;
  --line: rgba(19, 15, 14, 0.13);
  --shadow: 0 28px 80px rgba(45, 28, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

figure,
.hero-portrait,
.diagnosis-panel,
.look-card,
.main-transform,
.side-transform,
.feed-item,
.salon-side {
  background: linear-gradient(135deg, #ead6cd, #fff7f1 52%, #191211);
}

img.is-broken {
  opacity: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 10vw, 9.6rem);
}

h2 {
  font-size: clamp(2.4rem, 6vw, 6.4rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.kicker {
  margin: 0 0 14px;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 22px clamp(18px, 4vw, 58px);
  color: var(--ink);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  padding-top: 14px;
  padding-bottom: 14px;
  background: rgba(248, 240, 235, 0.94);
  box-shadow: 0 16px 44px rgba(44, 28, 22, 0.08);
  backdrop-filter: blur(18px);
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  white-space: nowrap;
}

.nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--copper);
  transition: width 0.2s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 251, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.menu-active .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-active .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  padding: 118px clamp(18px, 5vw, 72px) 34px;
}

.editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(280px, 0.62fr);
  grid-template-rows: 1fr auto;
  gap: clamp(22px, 4vw, 68px);
  align-items: end;
}

.hero-copy {
  align-self: center;
  max-width: 960px;
  padding-top: 40px;
}

.hero-copy p:not(.kicker) {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.quiet-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: var(--ink);
  font-weight: 900;
}

.quiet-link::after {
  content: "";
  width: 72px;
  height: 1px;
  background: var(--ink);
}

.hero-portrait {
  align-self: stretch;
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 0 0 180px 0;
  box-shadow: var(--shadow);
}

.hero-portrait img {
  height: 100%;
  object-fit: cover;
}

.diagnostic-card {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 94px;
  width: min(340px, calc(100% - 36px));
  padding: 24px;
  background: rgba(19, 15, 14, 0.92);
  color: var(--white);
  box-shadow: var(--shadow);
}

.diagnostic-card span {
  display: block;
  color: #e9bd82;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.diagnostic-card strong {
  display: block;
  margin: 16px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.1;
  font-weight: 500;
}

.diagnostic-card a {
  color: #e9bd82;
  font-weight: 900;
}

.demo-note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.section-space {
  padding: clamp(76px, 11vw, 150px) clamp(18px, 5vw, 72px);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 6vw, 92px);
  background: var(--ink);
  color: var(--white);
}

.manifesto .kicker,
.feed .kicker {
  color: #e9bd82;
}

.manifesto-title {
  position: sticky;
  top: 110px;
  align-self: start;
}

.diagnosis-panels {
  display: grid;
  gap: 38px;
}

.diagnosis-panel {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  align-items: end;
}

.diagnosis-panel.offset {
  margin-left: clamp(0px, 8vw, 92px);
}

.diagnosis-panel img {
  height: 380px;
  object-fit: cover;
}

.diagnosis-panel div {
  padding-bottom: 18px;
}

.diagnosis-panel span {
  color: #e9bd82;
  font-weight: 900;
}

.diagnosis-panel p {
  color: rgba(255, 253, 251, 0.72);
}

.looks {
  background: var(--powder);
}

.looks-intro {
  max-width: 760px;
  margin-bottom: 34px;
}

.look-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
  align-items: stretch;
}

.look-card {
  position: relative;
  grid-column: span 2;
  min-height: 460px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.look-card.tall {
  min-height: 620px;
}

.look-card.wide {
  grid-column: span 3;
}

.look-card img {
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.look-card div {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(19, 15, 14, 0.88), transparent);
}

.look-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.look-card span,
.look-card a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 251, 0.78);
  font-size: 0.92rem;
}

.look-card a {
  color: #e9bd82;
  font-weight: 900;
}

.look-card:hover img {
  transform: scale(1.045);
  opacity: 1;
}

.transforms {
  background: var(--cream);
}

.transforms-lead {
  max-width: 860px;
  margin-left: auto;
  margin-bottom: 38px;
}

.portfolio-board {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.6fr);
  grid-template-rows: 1fr 1fr;
  gap: 14px;
}

.main-transform {
  grid-row: 1 / -1;
  background: var(--white);
}

.duo-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.duo-images img {
  height: clamp(420px, 62vw, 760px);
  object-fit: cover;
}

.main-transform p {
  margin: 0;
  padding: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}

.side-transform {
  position: relative;
  margin: 0;
  min-height: 310px;
  overflow: hidden;
  background: var(--ink);
}

.side-transform img {
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.side-transform span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  background: rgba(255, 253, 251, 0.84);
  font-weight: 900;
}

.feed {
  background: var(--ink);
  color: var(--white);
}

.feed-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 34px;
}

.feed-title h2 {
  max-width: 860px;
}

.feed-title a {
  color: #e9bd82;
  font-weight: 900;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
}

.feed-item {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
}

.feed-item.hero-tile {
  grid-column: span 2;
  grid-row: span 2;
}

.feed-item.wide {
  grid-column: span 2;
}

.feed-item.slim {
  grid-row: span 2;
}

.feed-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.feed-item figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  background: rgba(19, 15, 14, 0.68);
  color: var(--white);
  font-weight: 900;
  font-size: 0.82rem;
}

.feed-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.menu-section {
  background: linear-gradient(90deg, var(--soft), var(--cream));
}

.menu-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(30px, 7vw, 110px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 64px);
  background: rgba(255, 253, 251, 0.78);
  box-shadow: var(--shadow);
}

.menu-card p {
  color: var(--muted);
}

.price-menu {
  margin: 0;
}

.price-menu div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.price-menu dt {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.price-menu dd {
  margin: 0;
  color: var(--copper);
  font-weight: 900;
  white-space: nowrap;
}

.experience {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(30px, 6vw, 92px);
}

.timeline {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.timeline-step {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  min-height: 145px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline-step:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-step span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.booking-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  min-height: 100svh;
  background: var(--ink);
  color: var(--white);
}

.salon-side {
  position: relative;
  min-height: 620px;
}

.salon-side img {
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.salon-info {
  position: absolute;
  left: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 5vw, 72px);
  max-width: 540px;
}

.salon-info .kicker,
.form-heading .kicker {
  color: #e9bd82;
}

.salon-info h2,
.form-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
}

.salon-info p {
  color: rgba(255, 253, 251, 0.78);
}

.salon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.salon-actions a,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 253, 251, 0.34);
  border-radius: 999px;
  padding: 12px 20px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: center;
  padding: clamp(28px, 5vw, 72px);
  background: #1d1715;
}

.form-heading,
.reservation-form .full {
  grid-column: 1 / -1;
}

.reservation-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 253, 251, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
}

.reservation-form input,
.reservation-form select,
.reservation-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 253, 251, 0.18);
  border-radius: 0;
  padding: 14px;
  background: rgba(255, 253, 251, 0.08);
  color: var(--white);
  outline: none;
}

.reservation-form select option {
  color: var(--ink);
}

.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: #e9bd82;
  box-shadow: 0 0 0 3px rgba(233, 189, 130, 0.16);
}

.form-status {
  min-height: 1.35em;
  margin: 0;
  color: #e9bd82;
  font-size: 0.9rem;
}

.submit-btn[disabled],
.submit-btn.is-loading {
  cursor: wait;
  opacity: 0.72;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px 28px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: #0c0908;
  color: rgba(255, 253, 251, 0.72);
  font-size: 0.9rem;
}

.footer strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
}

.thanks-page {
  min-height: 100svh;
  background:
    linear-gradient(rgba(19, 15, 14, 0.22), rgba(19, 15, 14, 0.52)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.thanks-main {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(760px, 100%);
  padding: clamp(30px, 7vw, 72px);
  background: rgba(248, 240, 235, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.thanks-card h1 {
  margin-top: 26px;
  font-size: clamp(2.4rem, 8vw, 5.8rem);
}

.thanks-card p {
  color: var(--muted);
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.thanks-card .submit-btn,
.secondary-btn {
  margin-top: 0;
  background: var(--ink);
  color: var(--white);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-ready .hero .reveal,
.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav {
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: rgba(255, 253, 251, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .editorial,
  .manifesto,
  .menu-card,
  .experience,
  .booking-split {
    grid-template-columns: 1fr;
  }

  .hero-portrait {
    min-height: 520px;
    border-radius: 0 0 120px 0;
  }

  .diagnostic-card {
    position: static;
    width: auto;
    grid-column: 1 / -1;
  }

  .manifesto-title {
    position: static;
  }

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

  .look-card,
  .look-card.wide {
    grid-column: span 1;
  }

  .portfolio-board {
    grid-template-columns: 1fr;
  }

  .main-transform {
    grid-row: auto;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
  }

  .hero {
    padding: 96px 18px 28px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.45rem);
  }

  h2 {
    font-size: clamp(2rem, 9.5vw, 3.2rem);
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-portrait {
    min-height: 430px;
    border-radius: 0 0 72px 0;
  }

  .section-space {
    padding: 66px 18px;
  }

  .diagnosis-panel,
  .diagnosis-panel.offset {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .diagnosis-panel img {
    height: 300px;
  }

  .look-strip,
  .feed-grid,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .look-card,
  .look-card.tall {
    min-height: 430px;
  }

  .duo-images {
    grid-template-columns: 1fr;
  }

  .duo-images img {
    height: 330px;
  }

  .feed-title {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .feed-item,
  .feed-item.hero-tile,
  .feed-item.wide,
  .feed-item.slim {
    grid-column: auto;
    grid-row: auto;
    min-height: 310px;
  }

  .price-menu div,
  .timeline-step {
    grid-template-columns: 1fr;
  }

  .price-menu dd {
    white-space: normal;
  }

  .salon-side {
    min-height: 620px;
  }

  .salon-info {
    left: 18px;
    right: 18px;
    bottom: 28px;
  }

  .salon-actions {
    display: grid;
  }

  .salon-actions a,
  .submit-btn,
  .secondary-btn {
    width: 100%;
  }
}
