/* ==========================================================================
   L & L Tailors — editorial fashion system
   Palette: ivory / champagne / sand / taupe / espresso
   Type: Cormorant Garamond (display) + Inter (text)
   ========================================================================== */

:root {
  --paper: #f2ede4;
  --paper-deep: #e8e0d1;
  --paper-dim: #ded4c2;
  --ink: #292219;
  --ink-soft: #5c5040;
  --ink-faint: #8a7c67;
  --champagne: #b79d76;
  --champagne-deep: #9a8158;
  --walnut: #372c1f;
  --line: rgba(41, 34, 25, 0.16);

  --font-display: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-text: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --measure: 34em;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-text);
  font-weight: 300;
  font-size: clamp(0.95rem, 0.85rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

/* Film-grain wash over everything, very faint */
body::after {
  content: "";
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { display: block; max-width: 100%; }

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

::selection { background: var(--champagne); color: #fff; }

/* ---------- shared type ---------- */

.eyebrow {
  font-family: var(--font-text);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--champagne-deep);
}

.body-copy { max-width: var(--measure); color: var(--ink-soft); }

.rule {
  width: 3.5rem;
  height: 1px;
  background: var(--champagne);
  border: 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.25rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-text);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
  color: var(--ink);
  transition: background-color 0.45s var(--ease-out), color 0.45s var(--ease-out), border-color 0.45s var(--ease-out);
}

.btn:hover, .btn:focus-visible { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.btn--solid { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.btn--solid:hover, .btn--solid:focus-visible { background: var(--champagne-deep); border-color: var(--champagne-deep); color: #fff; }

.btn--ghost { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--ghost:hover, .btn--ghost:focus-visible { background: #fff; border-color: #fff; color: var(--ink); }

.btn--light { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn--light:hover, .btn--light:focus-visible { background: transparent; border-color: var(--paper); color: var(--paper); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  color: #fff;
  transition: background-color 0.5s var(--ease-out), color 0.5s var(--ease-out), padding 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}

.site-header.is-scrolled {
  background: rgba(242, 237, 228, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ink);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  box-shadow: 0 1px 0 var(--line);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.08em;
  line-height: 1;
  white-space: nowrap;
}

.wordmark .amp { font-style: italic; color: var(--champagne); padding: 0 0.1em; }

.wordmark small {
  display: block;
  font-family: var(--font-text);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  opacity: 0.75;
}

.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.5vw, 2.4rem); }

.site-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 0.6rem 0.1rem;
  position: relative;
  opacity: 0.9;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0.3rem;
  height: 1px;
  background: currentColor;
  transition: right 0.4s var(--ease-out);
}

.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }

.header-cta {
  border: 1px solid currentColor;
  padding: 0.85rem 1.5rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out);
  white-space: nowrap;
}

.header-cta:hover, .header-cta:focus-visible { background: var(--champagne-deep); border-color: var(--champagne-deep); color: #fff; }

@media (max-width: 860px) {
  .site-nav { display: none; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}

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

.hero-media video,
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 40%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(24, 19, 13, 0.78) 0%, rgba(24, 19, 13, 0.28) 42%, rgba(24, 19, 13, 0.14) 100%),
    linear-gradient(to right, rgba(24, 19, 13, 0.32), rgba(24, 19, 13, 0) 55%);
}

.hero-inner {
  width: 100%;
  padding: 0 var(--gutter) clamp(4.5rem, 9vh, 7rem);
}

.hero .eyebrow { color: rgba(255, 255, 255, 0.75); }

.hero h1 {
  font-size: clamp(2.9rem, 8.2vw, 7rem);
  max-width: 11.5em;
  margin: 1.4rem 0 1.6rem;
  text-wrap: balance;
}

.hero-sub {
  max-width: 32em;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 2.4rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(4.5rem, 9vh, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.66);
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  content: "";
  width: 1px;
  height: 3.4rem;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), rgba(255,255,255,0));
  animation: cue 2.6s var(--ease-out) infinite;
  transform-origin: top;
}

@keyframes cue {
  0% { transform: scaleY(0); opacity: 0; }
  35% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(1.4rem); opacity: 0; }
}

@media (max-width: 720px) {
  .scroll-cue { display: none; }
  .hero h1 { margin-top: 1.1rem; }
  .hero-actions .btn { flex: 1 1 100%; }
}

/* ---------- section scaffolding ---------- */

.section { padding: clamp(5rem, 12vh, 9.5rem) var(--gutter); }

.section-head { max-width: 72rem; margin: 0 auto clamp(2.5rem, 6vh, 4.5rem); }

.section-head .rule { margin: 1.6rem 0 0; }

/* ---------- house (what it is) ---------- */

.house { background: var(--paper); }

.house-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.house h2 {
  font-size: clamp(2.1rem, 4.6vw, 3.9rem);
  max-width: 13em;
  margin: 1.4rem 0 2rem;
  text-wrap: balance;
}

.house .body-copy + .body-copy { margin-top: 1.2rem; }

.house-figure { position: relative; margin-top: clamp(0rem, 4vh, 3rem); }

.house-figure img { width: 100%; height: auto; }

.house-figure figcaption {
  margin-top: 1rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.house-signature {
  margin-top: 2.4rem;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
}

.house-signature strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--ink);
}

@media (max-width: 900px) {
  .house-grid { grid-template-columns: 1fr; }
  .house-figure { max-width: 26rem; }
}

/* ---------- craft (benefits) ---------- */

.craft { background: var(--paper-deep); }

.craft-list { max-width: 72rem; margin: 0 auto; display: grid; gap: clamp(4rem, 10vh, 7.5rem); }

.craft-item {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.craft-item:nth-child(even) .craft-media { order: 2; }

.craft-item:nth-child(even) .craft-text { order: 1; }

.craft-media { overflow: hidden; }

.craft-media img {
  width: 100%;
  height: auto;
  transition: transform 1.4s var(--ease-out);
}

.craft-item:hover .craft-media img { transform: scale(1.03); }

.craft-item:nth-child(odd) .craft-media { margin-top: clamp(0rem, 3vh, 2.5rem); }

.craft-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--champagne-deep);
  letter-spacing: 0.12em;
}

.craft-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  margin: 0.9rem 0 1.2rem;
  max-width: 12em;
}

.craft-text .detail {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 820px) {
  .craft-item,
  .craft-item:nth-child(even) { grid-template-columns: 1fr; }
  .craft-item:nth-child(even) .craft-media { order: 0; }
  .craft-item:nth-child(even) .craft-text { order: 0; }
  .craft-media { max-width: 30rem; }
}

/* ---------- journey ---------- */

.journey { padding: 0; background: var(--walnut); color: var(--paper); }

.journey-hero {
  position: relative;
  height: clamp(20rem, 62vh, 34rem);
  overflow: hidden;
}

.journey-hero img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}

.journey-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(55, 44, 31, 0.05), rgba(55, 44, 31, 0.55) 88%, var(--walnut));
}

.journey-hero .section-head {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: clamp(1.5rem, 5vh, 3rem);
  z-index: 1;
  margin: 0 auto;
  color: #fff;
}

.journey-hero .eyebrow { color: rgba(255,255,255,0.7); }

.journey-hero h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  margin-top: 1.2rem;
  max-width: 14em;
}

.journey-steps {
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(3.5rem, 8vh, 6rem) var(--gutter) clamp(5rem, 11vh, 8rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.journey-step { border-top: 1px solid rgba(242, 237, 228, 0.25); padding-top: 1.6rem; }

.journey-step .craft-num { color: var(--champagne); }

.journey-step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.7rem;
  margin: 0.8rem 0 0.9rem;
}

.journey-step p { color: rgba(242, 237, 228, 0.72); max-width: 24em; }

.journey-step .detail {
  margin-top: 1.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.5);
}

@media (max-width: 820px) {
  .journey-steps { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ---------- voices ---------- */

.voices { background: var(--paper); }

.voices-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem);
}

.voice {
  border-top: 1px solid var(--line);
  padding-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.voice blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  font-weight: 400;
  line-height: 1.35;
  font-style: italic;
  color: var(--ink);
  text-wrap: pretty;
}

.voice cite {
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: auto;
}

.voice cite span { display: block; margin-top: 0.35rem; color: var(--champagne-deep); }

.voices-band {
  max-width: 72rem;
  margin: clamp(3.5rem, 8vh, 5.5rem) auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3.5rem;
  justify-content: space-between;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

@media (max-width: 820px) {
  .voices-grid { grid-template-columns: 1fr; }
}

/* ---------- reserve (CTA) ---------- */

.reserve {
  position: relative;
  min-height: clamp(30rem, 92vh, 46rem);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter);
}

.reserve-media { position: absolute; inset: 0; z-index: -2; }

.reserve-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 50% 30%;
  will-change: transform;
}

.reserve::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(24, 19, 13, 0.66), rgba(24, 19, 13, 0.18) 62%, rgba(24, 19, 13, 0.05));
}

.reserve-inner { max-width: 72rem; margin: 0 auto; width: 100%; }

.reserve .eyebrow { color: rgba(255,255,255,0.72); }

.reserve h2 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  margin: 1.3rem 0 1.5rem;
  max-width: 10.5em;
  text-wrap: balance;
}

.reserve p {
  max-width: 30em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.6rem;
}

.reserve-note {
  margin-top: 1.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--walnut);
  color: rgba(242, 237, 228, 0.8);
  padding: clamp(4rem, 9vh, 6.5rem) var(--gutter) 2.5rem;
}

.footer-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
}

.site-footer .wordmark { color: var(--paper); font-size: 1.7rem; }

.footer-line {
  margin-top: 1.4rem;
  max-width: 20em;
  color: rgba(242, 237, 228, 0.6);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242, 237, 228, 0.5);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; display: grid; gap: 0.7rem; }

.footer-col a, .footer-col li { font-size: 0.9rem; color: rgba(242, 237, 228, 0.82); }

.footer-col a { padding: 0.15rem 0; display: inline-block; transition: color 0.3s var(--ease-out); }

.footer-col a:hover, .footer-col a:focus-visible { color: var(--champagne); }

.footer-base {
  max-width: 72rem;
  margin: clamp(3rem, 7vh, 5rem) auto 0;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(242, 237, 228, 0.16);
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.5rem;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(242, 237, 228, 0.45);
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(2.2rem);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

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

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue::after { animation: none; }
  .craft-media img { transition: none; }
  .journey-hero img, .reserve-media img { height: 100%; transform: none !important; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}
