/* ============================================================
   XLCR — Design Tokens & Base
   ============================================================ */

:root {
  --bg:       #0D0D0D;
  --text:     #F5F0E8;
  --accent:   #B8975A;
  --muted:    #888888;
  --divider:  #2A2A2A;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --nav-h: 72px;
}

/* ============================================================
   Reset & Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ============================================================
   Typography
   ============================================================ */

.t-display {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.t-heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.t-subheading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.3;
}

.t-body {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.82);
}

.t-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.t-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
}

/* ============================================================
   Navigation
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(13, 13, 13, 0.96);
  border-bottom-color: var(--divider);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__wordmark {
  display: flex;
  align-items: center;
  line-height: 0;
}

.nav__wordmark svg {
  height: 58px;
  width: auto;
  display: block;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after {
  width: 100%;
}

.nav__links a[aria-current="page"] {
  color: var(--accent);
}

.nav__wa {
  display: flex;
  align-items: center;
  color: var(--text);
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.nav__wa:hover {
  opacity: 1;
}

.nav__wa svg {
  width: 20px;
  height: 20px;
}

/* Mobile menu toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile menu drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.98);
  border-bottom: 1px solid var(--divider);
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__mobile.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav__mobile ul a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav__mobile-wa {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--divider);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   Footer
   ============================================================ */

.footer {
  border-top: 1px solid var(--divider);
  padding: 4rem clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer__wordmark {
  margin-bottom: 0.75rem;
  line-height: 0;
}

.footer__wordmark svg {
  height: 56px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col a,
.footer__col span {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.footer__col a:hover {
  color: var(--text);
}

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid var(--divider);
  padding-top: 1.5rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ============================================================
   Shared Layout Utilities
   ============================================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}

.section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
}

.section--narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
}

/* ============================================================
   Video Panel — shared component
   ============================================================ */

.video-panel {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.video-panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.video-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.55);
  pointer-events: none;
}

.video-panel__content {
  position: relative;
  z-index: 2;
}

/* ============================================================
   Scroll Reveal
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.12s; }
.reveal--delay-2 { transition-delay: 0.24s; }
.reveal--delay-3 { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Link Arrow Style
   ============================================================ */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 2px;
}

.link-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.link-arrow:hover::after {
  width: 100%;
}

.link-arrow:hover {
  color: var(--accent);
}

/* ============================================================
   CTA Button
   ============================================================ */

.btn {
  display: inline-block;
  padding: 1rem 2.4rem;
  border: 1px solid var(--accent);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ============================================================
   Hairline / Divider
   ============================================================ */

.rule {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 1.5rem;
}

/* ============================================================
   HOME — Hero
   ============================================================ */

.hero {
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.38);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.1s ease 0.3s forwards;
}

.hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.78);
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.1s ease 0.55s forwards;
}

.hero__cta {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 1.1s ease 0.8s forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__headline,
  .hero__sub,
  .hero__cta {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   HOME — Three Pillars Panels
   ============================================================ */

.pillar-panel {
  height: 85vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.pillar-panel + .pillar-panel {
  border-top: 1px solid var(--divider);
}

.pillar-panel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pillar-panel__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.62);
}

.pillar-panel__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.pillar-panel__label {
  margin-bottom: 1.2rem;
}

.pillar-panel__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pillar-panel__teaser {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(245, 240, 232, 0.75);
  margin-bottom: 1.8rem;
  max-width: 480px;
}

/* ============================================================
   HOME — Lyndsey Statement
   ============================================================ */

.lyndsey-statement {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.lyndsey-statement__image {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
}

.lyndsey-statement__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.lyndsey-statement__placeholder {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lyndsey-statement__placeholder-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--divider);
}

.lyndsey-statement__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
}

.lyndsey-statement__quote {
  margin-bottom: 1.5rem;
}

.lyndsey-statement__attr {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ============================================================
   HOME — Testimonials
   ============================================================ */

.testimonials {
  padding: clamp(5rem, 9vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  border-top: 1px solid var(--divider);
}

.testimonials__header {
  margin-bottom: 4rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial {
  padding-top: 2rem;
  border-top: 1px solid var(--divider);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.testimonial__quote::before {
  content: '"';
  color: var(--accent);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 0.1em;
}

.testimonial__quote::after {
  content: '"';
  color: var(--accent);
  font-size: 1.5em;
  line-height: 0;
  vertical-align: -0.3em;
  margin-left: 0.1em;
}

.testimonial__attr {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   WHAT WE DO — Page Hero
   ============================================================ */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-bottom: 1px solid var(--divider);
}

.page-hero__eyebrow {
  margin-bottom: 1.5rem;
}

/* ============================================================
   WHAT WE DO — Full Pillar Sections
   ============================================================ */

.pillar-full {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--divider);
}

.pillar-full__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.pillar-full__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.68);
}

.pillar-full__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.pillar-full__label {
  margin-bottom: 1.4rem;
}

.pillar-full__headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.8rem;
}

.pillar-full__copy {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.8);
  max-width: 580px;
}

/* ============================================================
   WHAT WE DO — Page Close
   ============================================================ */

.page-close {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  border-top: 1px solid var(--divider);
}

.page-close__line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 2.5rem;
}

/* ============================================================
   WHO WE ARE — Person Sections
   ============================================================ */

.person {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--divider);
}

.person--reverse {
  direction: rtl;
}

.person--reverse > * {
  direction: ltr;
}

.person__image {
  position: relative;
  background: #161616;
  min-height: 580px;
  overflow: hidden;
}

.person__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.person__placeholder {
  width: 100%;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.person__placeholder-text {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--divider);
}

.person__content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.4rem;
}

.person__title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
}

.person__copy {
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.8);
}

/* WHO WE ARE — Approach */
.approach {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  max-width: 780px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-page {
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(5rem, 10vw, 9rem);
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  max-width: 1200px;
  margin: 0 auto;
}

.contact-page__left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 2rem;
}

.contact-page__heading {
  margin-bottom: 1.5rem;
}

.contact-page__intro {
  font-size: clamp(0.95rem, 1.4vw, 1rem);
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 3rem;
  max-width: 400px;
}

.contact-page__details {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-page__details a,
.contact-page__details span {
  font-size: 0.88rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.contact-page__details a:hover {
  color: var(--text);
}

/* Contact Form */
.contact-form {
  padding-top: 2rem;
}

.form-field {
  margin-bottom: 2.2rem;
}

.form-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--divider);
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  padding: 0.6rem 0 0.8rem;
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #444;
  font-family: var(--font-serif);
}

.form-field textarea {
  resize: none;
  height: 120px;
}

/* Radio group */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.75);
}

.radio-option input[type="radio"] {
  -webkit-appearance: none;
  appearance: none;
  width: 13px;
  height: 13px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
  margin: 0;
  transition: border-color 0.2s ease;
}

.radio-option input[type="radio"]:checked {
  border-color: var(--accent);
  background: var(--accent);
}

.radio-option input[type="radio"]:focus-visible {
  outline: 1px solid var(--accent);
  outline-offset: 3px;
}

.form-submit {
  margin-top: 1rem;
}

/* Form success state */
.form-success {
  display: none;
  padding: 3rem 0;
}

.form-success.visible {
  display: block;
}

.form-success__heading {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.form-success__text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.7);
}

/* ============================================================
   Responsive
   ============================================================ */

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

  .testimonials__grid .testimonial:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__wa {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav__mobile {
    display: block;
  }

  .lyndsey-statement {
    grid-template-columns: 1fr;
  }

  .lyndsey-statement__image {
    min-height: 380px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial:last-child {
    display: block;
  }

  .person {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .person--reverse > * {
    direction: ltr;
  }

  .person__image {
    min-height: 320px;
  }

  .contact-page {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 480px) {
  .pillar-panel {
    height: 70vh;
    min-height: 420px;
  }

  .pillar-full {
    min-height: 80vh;
  }
}
