/* ============================================================
   Tangled by Cinthya — Atelier
   ============================================================ */

:root {
  --ink: #0b0907;
  --ink-2: #12100d;
  --ink-3: #1b1713;
  --ink-4: #26211b;
  --ivory: #f4ede0;
  --ivory-2: #e8dcc8;
  --ivory-3: #d4c6ae;
  --gold: #c6a15b;
  --gold-2: #e0c27a;
  --gold-3: #8e7040;
  --gold-soft: rgba(198, 161, 91, 0.12);
  --gold-line: rgba(198, 161, 91, 0.35);
  --taupe: #9a8b76;
  --muted: #7a6d5c;
  --danger: #c47a6a;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 84px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 1280px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --display: "Cinzel", "Times New Roman", serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ivory);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
}

button {
  cursor: pointer;
}

ul {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 4px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 200;
  background: var(--gold);
  color: var(--ink);
  padding: 0.6rem 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.skip:focus {
  top: 1rem;
}

/* Grain + gold wash */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.055;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Custom cursor */
.cursor,
.cursor-dot {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor {
    cursor: none;
  }

  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor input,
  body.has-cursor select,
  body.has-cursor textarea,
  body.has-cursor label,
  body.has-cursor .gallery-item {
    cursor: none;
  }

  .cursor,
  .cursor-dot {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 120;
    border-radius: 50%;
    transform: translate(-50%, -50%);
  }

  .cursor {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(198, 161, 91, 0.55);
    transition: width 0.35s var(--ease), height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
  }

  .cursor.is-hover {
    width: 64px;
    height: 64px;
    background: rgba(198, 161, 91, 0.08);
    border-color: var(--gold);
  }

  .cursor-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
  }
}

/* Typography */
.eyebrow {
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--ivory-2);
  font-style: italic;
}

.muted {
  color: var(--taupe);
}

.gold {
  color: var(--gold);
}

.rule {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border: 0;
}

.rule.center {
  margin-inline: auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 72px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 52px;
  padding: 0 1.7rem;
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(180deg, #e0c27a 0%, #c6a15b 52%, #9c7b3c 100%);
  color: var(--ink);
}

.btn-gold:hover {
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--gold-line);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-line {
  padding: 0;
  min-height: 0;
  letter-spacing: 0.24em;
  color: var(--gold);
  gap: 0.6rem;
}

.btn-line::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}

.btn-line:hover::after {
  width: 44px;
}

/* Layout */
.wrap {
  width: min(var(--max), calc(100% - var(--pad) * 2));
  margin-inline: auto;
}

.section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
}

.section-head {
  display: grid;
  gap: 1.2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head.center {
  text-align: center;
  justify-items: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s;
}

.preloader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
  display: grid;
  gap: 1.4rem;
  justify-items: center;
}

.preloader .mono {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 10vw, 6rem);
  line-height: 0.8;
  color: var(--gold);
}

.preloader .word {
  font-family: var(--display);
  letter-spacing: 0.48em;
  font-size: 0.72rem;
  color: var(--ivory);
  text-transform: uppercase;
  padding-left: 0.48em;
}

.preloader-bar {
  width: 120px;
  height: 1px;
  background: var(--ink-4);
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: load 1.4s var(--ease) forwards;
}

@keyframes load {
  to {
    width: 100%;
  }
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 140;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  pointer-events: auto;
  transition: background 0.45s var(--ease), border-color 0.45s var(--ease), backdrop-filter 0.45s;
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(11, 9, 7, 0.78);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(198, 161, 91, 0.12);
}

.nav-inner {
  width: min(1440px, calc(100% - var(--pad) * 2));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: grid;
  justify-items: center;
  line-height: 1;
}

.brand .mark {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.brand .name {
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-top: 0.15rem;
  padding-left: 0.42em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ivory-3);
  position: relative;
  pointer-events: auto;
}

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

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-end {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.lang {
  display: inline-flex;
  align-items: stretch;
  padding: 3px;
  border: 1px solid var(--gold-line);
  background: rgba(11, 9, 7, 0.4);
}

.lang button {
  min-height: 32px;
  padding: 0 0.7rem;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-3);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.lang button.is-on {
  background: linear-gradient(180deg, #e0c27a 0%, #c6a15b 52%, #9c7b3c 100%);
  color: var(--ink);
}

@media (max-width: 420px) {
  .lang button {
    min-height: 30px;
    padding: 0 0.5rem;
    letter-spacing: 0.1em;
  }
}

.nav-cta {
  display: none;
}

.menu-btn {
  position: relative;
  z-index: 95;
  width: 44px;
  height: 44px;
}

.menu-btn span {
  position: absolute;
  left: 11px;
  display: block;
  width: 22px;
  height: 1px;
  background: var(--ivory);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}

.menu-btn span:first-child {
  top: 18px;
}

.menu-btn span:last-child {
  top: 25px;
}

body.menu-open .menu-btn span:first-child {
  top: 21.5px;
  transform: rotate(45deg);
}

body.menu-open .menu-btn span:last-child {
  top: 21.5px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: #0b0907;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}

body.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu nav {
  display: grid;
  gap: 1.4rem;
  text-align: center;
}

.mobile-menu a {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 1;
  color: var(--ivory);
}

.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: var(--gold);
}

.mobile-meta {
  margin-top: 2.5rem;
  text-align: center;
  color: var(--taupe);
  font-size: 0.85rem;
}

.mobile-menu .lang {
  justify-content: center;
  margin-top: 1.4rem;
}

@media (min-width: 960px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }

  .menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: end center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: ken 18s ease-out forwards;
}

@keyframes ken {
  to {
    transform: scale(1);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.35) 0%, rgba(11, 9, 7, 0.15) 35%, rgba(11, 9, 7, 0.72) 78%, var(--ink) 100%),
    radial-gradient(80% 60% at 70% 40%, transparent, rgba(11, 9, 7, 0.45));
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--pad) clamp(4.5rem, 10vw, 7rem);
  display: grid;
  gap: 1.1rem;
  justify-items: center;
}

.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4.4rem, 14vw, 10.5rem);
  letter-spacing: 0.02em;
  line-height: 0.78;
}

.hero-copy h1 em {
  display: block;
  font-family: var(--display);
  font-style: normal;
  font-size: 0.16em;
  letter-spacing: 0.58em;
  margin-top: 0.7em;
  padding-left: 0.58em;
  color: var(--gold);
}

.hero-copy p {
  max-width: 34rem;
  color: var(--ivory-2);
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
}

.scroll-hint {
  display: none;
  position: absolute;
  right: var(--pad);
  bottom: 2.4rem;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-3);
}

@media (min-width: 800px) {
  .scroll-hint {
    display: block;
  }
}

.scroll-hint::after {
  content: "";
  display: block;
  width: 1px;
  height: 48px;
  margin: 12px auto 0;
  background: linear-gradient(var(--gold), transparent);
}

/* Marquee */
.marquee {
  border-block: 1px solid rgba(198, 161, 91, 0.16);
  background: var(--ink-2);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: slide 36s linear infinite;
}

.marquee span {
  font-family: var(--display);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

@keyframes slide {
  to {
    transform: translateX(-50%);
  }
}

/* Intro */
.intro {
  display: grid;
  gap: 3rem;
}

.intro-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.96;
  font-weight: 400;
  max-width: 14ch;
}

.intro-copy p + p {
  margin-top: 1.1rem;
}

.intro-copy p {
  color: var(--ivory-3);
  max-width: 42ch;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 2rem;
  padding-top: 0.4rem;
}

.stat dt {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.06em;
}

.stat dd {
  color: var(--taupe);
  font-size: 0.88rem;
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .intro {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    gap: 6rem;
  }
}

/* Services */
.service-grid {
  display: grid;
  gap: 1.2rem;
}

.service-card {
  position: relative;
  display: block;
  min-height: 420px;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-3);
  color: inherit;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 1.1s var(--ease);
}

.service-card:hover img {
  transform: scale(1.06);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 9, 7, 0.05), rgba(11, 9, 7, 0.82));
}

.service-card .body {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.6rem 1.5rem 1.5rem;
  display: grid;
  gap: 0.45rem;
}

.service-card .num {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.service-card p {
  color: var(--ivory-3);
  font-size: 0.92rem;
  max-width: 32ch;
}

@media (min-width: 800px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 340px;
  }

  .service-card {
    min-height: unset;
  }
}

/* About */
.about-split {
  display: grid;
  gap: 2.4rem;
}

.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-cinthya {
  object-position: 50% 18%;
}

.about-photo figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory);
  background: rgba(11, 9, 7, 0.45);
  padding: 0.45rem 0.7rem;
  backdrop-filter: blur(8px);
}

.about-copy {
  display: grid;
  align-content: center;
  gap: 1.2rem;
}

.about-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.96;
  font-weight: 400;
}

.about-copy p {
  color: var(--ivory-3);
  max-width: 48ch;
}

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-top: 0.4rem;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-split.reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .about-split.reverse .about-photo {
    order: 2;
  }
}

.team-grid {
  display: grid;
  gap: 1.2rem;
}

.team-card {
  border: 1px solid rgba(198, 161, 91, 0.16);
  background: var(--ink-2);
  overflow: hidden;
  display: grid;
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.team-card .body {
  padding: 1.4rem 1.3rem 1.6rem;
  display: grid;
  gap: 0.45rem;
}

.team-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.team-card .role {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.team-card p {
  color: var(--ivory-3);
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
  }
}

/* Philosophy */
.philosophy {
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.55), rgba(11, 9, 7, 0.78)),
    url("../images/lounge.jpg") center / cover;
}

@media (min-width: 900px) {
  .philosophy {
    background-attachment: fixed;
  }
}

.pillars {
  display: grid;
  gap: 1px;
  background: var(--gold-line);
  border: 1px solid var(--gold-line);
}

.pillar {
  background: rgba(11, 9, 7, 0.72);
  padding: 2rem 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.pillar p {
  color: var(--ivory-3);
  font-size: 0.95rem;
}

@media (min-width: 800px) {
  .pillars {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--ink-3);
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease), filter 0.6s;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.1rem;
  background: linear-gradient(transparent, rgba(11, 9, 7, 0.78));
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s var(--ease);
}

.gallery-item:hover figcaption,
.gallery-item:focus-visible figcaption {
  opacity: 1;
  transform: none;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

  .gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }

  .gallery-item.tall {
    grid-column: span 2;
    aspect-ratio: 4 / 5;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(11, 9, 7, 0.94);
  display: grid;
  place-items: center;
  padding: 4rem 1.2rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s, visibility 0.4s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 78vh;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox p {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--display);
  letter-spacing: 0.24em;
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--gold);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  top: 1.4rem;
  color: var(--ivory);
  font-family: var(--display);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.68rem;
}

.lightbox-close {
  right: 1.4rem;
}

.lightbox-nav.prev {
  left: 1rem;
  top: 50%;
}

.lightbox-nav.next {
  right: 1rem;
  top: 50%;
}

/* Testimonials */
.quotes {
  display: grid;
  gap: 1.2rem;
}

.quote {
  border: 1px solid rgba(198, 161, 91, 0.18);
  padding: 2rem 1.6rem;
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.04), transparent);
}

.quote blockquote {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.35;
  font-style: italic;
}

.quote footer {
  margin-top: 1.3rem;
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (min-width: 800px) {
  .quotes {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Visit */
.visit {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.16);
}

.visit-photo {
  min-height: 320px;
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visit-panel {
  background: var(--ink-2);
  padding: clamp(2rem, 4vw, 3.4rem);
  display: grid;
  gap: 1.6rem;
  align-content: center;
}

.hours {
  display: grid;
  gap: 0.55rem;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(198, 161, 91, 0.12);
  padding-bottom: 0.5rem;
  font-size: 0.92rem;
  color: var(--ivory-3);
}

.hours li span:last-child {
  color: var(--ivory);
}

@media (min-width: 900px) {
  .visit {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 560px;
  }
}

/* CTA band */
.cta-band {
  text-align: center;
  display: grid;
  gap: 1.3rem;
  justify-items: center;
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.55), rgba(11, 9, 7, 0.82)),
    url("../images/wash-station.jpg") center / cover;
}

.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.94;
  font-weight: 400;
  max-width: 14ch;
}

/* Page hero */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) 0 3.5rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.9;
  font-weight: 400;
}

.page-hero p {
  max-width: 38rem;
  color: var(--ivory-3);
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
}

/* Menu tables */
.menu {
  display: grid;
  gap: 4rem;
}

.menu-block {
  scroll-margin-top: calc(var(--nav-h) + 1.5rem);
}

.menu-block h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0.6rem 0 1.4rem;
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(198, 161, 91, 0.14);
}

.menu-row:last-child {
  border-bottom: 1px solid rgba(198, 161, 91, 0.14);
}

.menu-row h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.menu-row p {
  grid-column: 1;
  color: var(--taupe);
  font-size: 0.92rem;
  max-width: 54ch;
}

.price {
  font-family: var(--display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  align-self: start;
  padding-top: 0.45rem;
}

.note {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Booking */
.book-layout {
  display: grid;
  gap: 2.4rem;
}

.steps {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.steps li {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.steps li.is-on {
  color: var(--gold);
}

.form {
  display: grid;
  gap: 1.1rem;
}

.form[hidden],
[hidden] {
  display: none !important;
}

fieldset {
  border: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid rgba(198, 161, 91, 0.18);
  padding: 0.95rem 1rem;
  color: var(--ivory);
  transition: border-color 0.3s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field select option {
  background: var(--ink-2);
}

.row-2 {
  display: grid;
  gap: 1.1rem;
}

@media (min-width: 700px) {
  .row-2 {
    grid-template-columns: 1fr 1fr;
  }

  .book-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.book-layout-wide {
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.chip {
  border: 1px solid rgba(198, 161, 91, 0.22);
  padding: 0.45rem 0.75rem;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory-3);
}

.chip.is-on {
  background: linear-gradient(180deg, #e0c27a 0%, #c6a15b 52%, #9c7b3c 100%);
  color: var(--ink);
  border-color: transparent;
}

.catalog-grid {
  display: grid;
  gap: 0.7rem;
  max-height: 28rem;
  overflow: auto;
  padding-right: 0.2rem;
  margin-bottom: 1.4rem;
}

.catalog-card {
  display: grid;
  gap: 0.35rem;
  text-align: left;
  border: 1px solid rgba(198, 161, 91, 0.16);
  background: var(--ink-2);
  padding: 1rem 1.05rem;
  color: inherit;
}

.catalog-card strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.catalog-card p {
  color: var(--taupe);
  font-size: 0.88rem;
}

.catalog-card em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.catalog-card.is-on {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.selected-ticket {
  margin-top: 1.4rem;
  border: 1px solid var(--gold-line);
  padding: 1.1rem 1.15rem;
  display: grid;
  gap: 0.35rem;
}

.selected-ticket h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.stylist-under-date {
  margin-top: 0.2rem;
}

.menu-dur {
  margin-top: 0.35rem;
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-picks {
  display: grid;
  gap: 0.7rem;
}

.pick {
  border: 1px solid rgba(198, 161, 91, 0.18);
  padding: 1rem 1rem 1rem 1.1rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
}

.pick input {
  accent-color: var(--gold);
}

.pick strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
}

.pick span {
  color: var(--taupe);
  font-size: 0.85rem;
}

.pick em {
  font-style: normal;
  color: var(--gold);
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.pick:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.form-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.form-error {
  color: var(--danger);
  font-size: 0.88rem;
  min-height: 1.2em;
}

.success {
  display: none;
  border: 1px solid var(--gold-line);
  padding: 2.2rem 1.6rem;
  text-align: center;
  gap: 0.9rem;
}

.success.is-on {
  display: grid;
}

.success h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.6rem;
}

.faq details {
  border-bottom: 1px solid rgba(198, 161, 91, 0.16);
  padding: 0.4rem 0 0.9rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 300;
}

.faq details[open] summary::after {
  content: "–";
}

.faq p {
  color: var(--ivory-3);
  max-width: 62ch;
  padding-bottom: 0.5rem;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}

.info-card {
  border: 1px solid rgba(198, 161, 91, 0.16);
  padding: 1.6rem;
  display: grid;
  gap: 0.45rem;
}

.info-card h3 {
  font-family: var(--display);
  font-size: 0.64rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.info-card p,
.info-card a {
  font-family: var(--serif);
  font-size: 1.35rem;
}

.map-frame {
  min-height: 360px;
  border: 1px solid rgba(198, 161, 91, 0.16);
  background:
    linear-gradient(180deg, rgba(11, 9, 7, 0.35), rgba(11, 9, 7, 0.72)),
    url("../images/hero-salon.jpg") center / cover;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Footer */
.footer {
  border-top: 1px solid rgba(198, 161, 91, 0.14);
  padding: 3.4rem 0 1.6rem;
}

.footer-top {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.4rem;
}

.footer .brand .name {
  color: var(--ivory-3);
}

.footer-col h4 {
  font-family: var(--display);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.footer-col a,
.footer-col p {
  color: var(--ivory-3);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  border-top: 1px solid rgba(198, 161, 91, 0.1);
  padding-top: 1.2rem;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (min-width: 800px) {
  .footer-top {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-media img,
  .preloader,
  .marquee-track,
  .service-card img {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Page-specific extras */
.story-long {
  display: grid;
  gap: 1.15rem;
}

.story-long p {
  color: var(--ivory-3);
  max-width: 68ch;
  font-size: 1.05rem;
}

.portrait-frame {
  position: relative;
}

.portrait-frame::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}

.journal {
  display: grid;
  gap: 2rem;
}

.journal article {
  display: grid;
  gap: 1rem;
}

.journal img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 800px) {
  .journal {
    grid-template-columns: 1fr 1fr;
  }
}
