/* Lustre — Marylebone nail atelier (draft) */

:root {
  --ink: #1a1d1b;
  --ink-soft: #3a413c;
  --muted: #6b726e;
  --paper: #f2f0eb;
  --paper-2: #e7e4dd;
  --sage: #4a6356;
  --sage-deep: #2f4339;
  --stone: #c8c4bb;
  --white: #faf9f6;
  --line: rgba(26, 29, 27, 0.12);
  --draft: #2a2e2c;
  --radius: 2px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --header-h: 4.25rem;
  --draft-h: 2.1rem;
  --announce-h: 2rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(120% 80% at 10% -10%, rgba(74, 99, 86, 0.09), transparent 55%),
    radial-gradient(90% 60% at 100% 0%, rgba(200, 196, 187, 0.45), transparent 50%),
    linear-gradient(180deg, #ebe8e1 0%, var(--paper) 28%, #eceae4 100%);
  background-attachment: fixed;
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

.draft-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  min-height: var(--draft-h);
  padding: 0.45rem 1rem;
  background: var(--draft);
  color: #f0efe9;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.announce {
  display: grid;
  place-items: center;
  min-height: var(--announce-h);
  padding: 0.35rem 1rem;
  background: var(--sage-deep);
  color: #e8efe9;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-align: center;
}

.announce p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: var(--draft-h);
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(242, 240, 235, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  text-decoration: none;
  justify-self: start;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.site-nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--sage);
}

.header-cta {
  justify-self: end;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
}

.nav-toggle span {
  display: block;
  height: 1.5px;
  width: 1.25rem;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.btn:active {
  transform: translateY(1px);
}

.btn-solid {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-solid:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(250, 249, 246, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(250, 249, 246, 0.12);
}

/* Hero — full-bleed composition */
.hero {
  position: relative;
  min-height: calc(100svh - var(--draft-h) - var(--announce-h) - var(--header-h));
  min-height: max(36rem, calc(100svh - var(--draft-h) - var(--announce-h) - var(--header-h)));
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroDrift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 22, 20, 0.25) 0%, rgba(18, 22, 20, 0.15) 40%, rgba(18, 22, 20, 0.72) 100%),
    linear-gradient(90deg, rgba(18, 22, 20, 0.35) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 3.25rem 1.25rem 2.75rem;
}

.brand-signal {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 9vw, 5.75rem);
  line-height: 0.9;
  margin-bottom: 0.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.1s forwards;
}

.hero h1 {
  max-width: 16ch;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  font-style: italic;
  margin-bottom: 0.7rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.22s forwards;
}

.hero-lede {
  max-width: 36ch;
  font-size: 0.98rem;
  color: rgba(250, 249, 246, 0.88);
  margin-bottom: 1.35rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.34s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0;
  animation: rise 0.9s var(--ease) 0.46s forwards;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.85rem);
  margin: 0.35rem 0 0.75rem;
}

.section-head p:not(.eyebrow) {
  color: var(--ink-soft);
}

.section-head.light {
  color: var(--white);
}

.section-head.light p:not(.eyebrow) {
  color: rgba(250, 249, 246, 0.78);
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage);
}

.section-head.light .eyebrow {
  color: #b7cfc2;
}

.meet,
.services,
.reviews,
.visit,
.book {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5.5rem 1.25rem;
}

.meet-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.meet-copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin: 0.4rem 0 1.1rem;
  max-width: 18ch;
}

.meet-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  max-width: 38ch;
}

.meet-figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.meet-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 60%, rgba(47, 67, 57, 0.2));
  pointer-events: none;
}

.meet-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.menu-list {
  border-top: 1px solid var(--line);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-row h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.menu-row p {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42ch;
}

.menu-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  white-space: nowrap;
}

.menu-meta span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.menu-meta strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
}

.menu-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.looks {
  max-width: none;
  padding: 5.5rem 0;
  background:
    linear-gradient(180deg, rgba(26, 29, 27, 0.92), rgba(47, 67, 57, 0.95)),
    url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1800&q=60") center / cover;
  color: var(--white);
}

.looks .section-head {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.look-grid {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.look-card {
  margin: 0;
  overflow: hidden;
  position: relative;
}

.look-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s var(--ease);
}

.look-card:hover img {
  transform: scale(1.05);
}

.look-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(12, 14, 13, 0.78));
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.look-card span {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.look-card em {
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 249, 246, 0.72);
}

.rating-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
  margin-top: 1rem;
}

.rating-bar p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.stars span {
  width: 0.85rem;
  height: 0.85rem;
  background: var(--sage);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.stars.small span {
  width: 0.7rem;
  height: 0.7rem;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.review-card {
  margin: 0;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
}

.review-card cite {
  font-style: normal;
  font-weight: 650;
  font-size: 0.95rem;
}

.review-meta {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-card > p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.reviews-footnote {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.visit-copy h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.35rem 0 1rem;
}

.address {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}

.transit {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.hours {
  margin: 0 0 1.75rem;
  display: grid;
  gap: 0.55rem;
  max-width: 22rem;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

.hours dt {
  font-weight: 600;
}

.hours dd {
  margin: 0;
  color: var(--ink-soft);
}

.contact-line a {
  color: var(--sage-deep);
  font-weight: 550;
}

.visit-map {
  position: relative;
  min-height: 22rem;
  border: 1px solid var(--line);
  background: #d9d5cc;
  overflow: hidden;
}

.visit-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 22rem;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.map-open {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  padding: 0.55rem 0.85rem;
  background: rgba(250, 249, 246, 0.95);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s var(--ease);
}

.map-open:hover {
  background: var(--white);
}

.book {
  padding-top: 2rem;
}

.book-panel {
  padding: clamp(1.75rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(231, 228, 221, 0.75));
  border: 1px solid var(--line);
}

.book-panel h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0.35rem 0 0.75rem;
}

.book-panel > p {
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 42ch;
}

.book-form {
  display: grid;
  gap: 1rem;
  max-width: 42rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(250, 249, 246, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  padding: 0.8rem 0.9rem;
  border-radius: var(--radius);
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 1px;
}

.book-form .btn {
  justify-self: start;
  margin-top: 0.35rem;
}

.form-status {
  color: var(--sage-deep);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.25rem 3rem;
  background: rgba(26, 29, 27, 0.04);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
}

.footer-brand .logo-mark {
  font-size: 1.6rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.2rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
}

.site-footer nav a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-soft);
}

.footer-note {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 48ch;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .meet-grid,
  .visit-grid,
  .review-grid,
  .look-grid {
    grid-template-columns: 1fr;
  }

  .look-grid {
    grid-template-columns: 1fr 1fr;
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
    order: -1;
  }

  body.nav-open .site-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 0 1rem;
    background: rgba(242, 240, 235, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav a {
    padding: 0.9rem 1.25rem;
  }

  .header-cta {
    font-size: 0;
    padding: 0.65rem 0.85rem;
    min-width: 2.75rem;
  }

  .header-cta::after {
    content: "Book";
    font-size: 0.72rem;
  }
}

@media (max-width: 640px) {
  .look-grid,
  .field-row,
  .menu-row {
    grid-template-columns: 1fr;
  }

  .menu-meta {
    align-items: flex-start;
    flex-direction: row;
    gap: 0.85rem;
  }

  .hero-content {
    padding-bottom: 2.5rem;
  }

  .header-cta {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .brand-signal,
  .hero h1,
  .hero-lede,
  .hero-actions {
    animation: none !important;
  }

  .brand-signal,
  .hero h1,
  .hero-lede,
  .hero-actions,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .look-card img {
    transition: none;
  }
}
