:root {
  --ink: #17100d;
  --ink-soft: #251813;
  --rust: #a94e2d;
  --rust-deep: #74321f;
  --gold: #c9a35d;
  --sand: #eadcc8;
  --paper: #f7f1e7;
  --white: #fffdf8;
  --line: rgba(234, 220, 200, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 6rem;
  padding: 0 5vw;
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  color: var(--gold);
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 600 0.78rem/1 Georgia, serif;
  letter-spacing: 0.05em;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  letter-spacing: 0.025em;
}

nav { display: flex; gap: 2rem; }

nav a {
  color: rgba(255, 253, 248, 0.74);
  font-size: 0.86rem;
  text-decoration: none;
}

nav a:hover, nav a:focus-visible { color: var(--white); }

.site-header > .button { justify-self: end; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.55rem;
  padding: 0.9rem 1.4rem;
  color: var(--white);
  background: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover, .button:focus-visible {
  background: var(--rust-deep);
  border-color: var(--rust-deep);
}

.button-small { min-height: 2.7rem; padding: 0.65rem 1.1rem; }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  min-height: 48rem;
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9.5rem 7vw 5rem 8vw;
  background:
    radial-gradient(circle at 75% 24%, rgba(169, 78, 45, 0.2), transparent 30%),
    linear-gradient(135deg, var(--ink), #20130f 68%, #2c1710);
}

.eyebrow {
  margin: 0 0 1.3rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 { margin-bottom: 1.8rem; font-size: clamp(3.45rem, 6.2vw, 6.9rem); }

h1 em { color: var(--sand); font-weight: 400; }

.hero-intro {
  max-width: 37rem;
  margin-bottom: 2.1rem;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.08rem;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; }

.text-link {
  color: var(--sand);
  font-size: 0.92rem;
  font-weight: 650;
  text-underline-offset: 0.35rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 4.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.trust-strip div { display: flex; flex-direction: column; padding-right: 1rem; }
.trust-strip strong { color: var(--gold); font: 400 1.45rem/1 Georgia, serif; }
.trust-strip span { margin-top: 0.35rem; color: rgba(255,255,255,0.58); font-size: 0.73rem; }

.hero-visual { position: relative; overflow: hidden; background: #2a1a13; }

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,16,13,0.27), transparent 35%), linear-gradient(0deg, rgba(23,16,13,0.55), transparent 35%);
  pointer-events: none;
}

.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 62% center; filter: saturate(0.88) contrast(1.04); }

.image-note {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  color: var(--white);
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.image-note span { color: var(--gold); }

.marquee {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.3rem;
  padding: 1.15rem 5vw;
  color: var(--sand);
  background: var(--rust-deep);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee i { width: 0.25rem; height: 0.25rem; background: var(--gold); border-radius: 50%; }

.services, .faq { padding: 7.5rem 8vw; }

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  padding-bottom: 4.5rem;
}

.section-heading h2, .experience h2, .contact h2 { margin-bottom: 0; font-size: clamp(2.65rem, 4.4vw, 5rem); }
.section-heading > p:last-child { color: #695a53; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cdbca8; }

.service-grid article { min-height: 19rem; padding: 2rem 2rem 2.5rem 0; border-bottom: 1px solid #cdbca8; }
.service-grid article + article { padding-left: 2rem; border-left: 1px solid #cdbca8; }
.service-number { color: var(--rust); font: 400 0.78rem/1 Georgia, serif; }
.service-grid h3 { margin: 5rem 0 1.2rem; font: 400 1.8rem/1.1 Georgia, serif; }
.service-grid p { max-width: 22rem; color: #6a5d56; }

.lookbook {
  padding: 7.5rem 8vw;
  color: var(--white);
  background: var(--ink);
}

.lookbook-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5vw;
  align-items: end;
  padding-bottom: 3rem;
}

.lookbook-heading h2 { margin: 0; font-size: clamp(2.65rem, 4.4vw, 5rem); }
.lookbook-heading > p { max-width: 35rem; margin: 0; color: rgba(255,255,255,0.63); }

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 23rem 23rem;
  gap: 1rem;
}

.lookbook figure { position: relative; overflow: hidden; margin: 0; background: #2a1a13; }
.lookbook figure.look-feature { grid-row: 1 / 3; }
.lookbook figure.look-wide { grid-column: 2 / 4; }
.lookbook figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,9,7,0.72), transparent 42%);
  pointer-events: none;
}
.lookbook img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.lookbook figure:hover img { transform: scale(1.025); }
.lookbook figure:nth-child(2) img { object-position: 50% 22%; }
.lookbook figure:nth-child(3) img { object-position: 50% 28%; }
.lookbook figure:nth-child(4) img { object-position: 50% 27%; }
.lookbook figcaption {
  position: absolute;
  z-index: 1;
  right: 1.4rem;
  bottom: 1.25rem;
  left: 1.4rem;
  color: var(--white);
  font: 400 1.18rem/1.2 Georgia, serif;
}

.experience {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  color: var(--white);
  background: var(--ink-soft);
}

.experience-stat {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 38rem;
  padding: 4rem 5vw 4rem 8vw;
  background:
    linear-gradient(rgba(23,16,13,0.32), rgba(23,16,13,0.88)),
    radial-gradient(circle at 34% 22%, rgba(201,163,93,0.23), transparent 32%),
    #3b2118;
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.18em; }
.experience-stat strong { margin-top: 0.7rem; font: 400 2rem/1.1 Georgia, serif; }
.experience-stat a { width: fit-content; margin-top: 1.2rem; color: var(--sand); text-underline-offset: 0.35rem; }

.experience-copy { padding: 7rem 8vw 6rem 6vw; }
.experience-copy h2 { max-width: 48rem; margin-bottom: 2rem; }
.experience-copy > p:not(.eyebrow) { max-width: 43rem; color: rgba(255,255,255,0.66); }
.experience-copy ul { margin: 3rem 0 0; padding: 0; list-style: none; }
.experience-copy li { display: grid; grid-template-columns: 2.2rem 1fr; gap: 1rem; padding: 1.15rem 0; border-top: 1px solid var(--line); }
.experience-copy li span { color: var(--gold); font-size: 0.72rem; }

.faq { display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 6vw; }
.section-heading.compact { display: block; padding: 0; }
.faq-list { border-top: 1px solid #bfae9b; }
.faq details { border-bottom: 1px solid #bfae9b; }
.faq summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; font: 400 1.25rem/1.35 Georgia, serif; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--rust); font: 400 1.4rem/1 sans-serif; transition: transform 160ms ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 42rem; padding: 0 2rem 1.5rem 0; color: #6a5d56; }

.contact {
  margin: 0 5vw 5vw;
  padding: 7rem 7vw;
  color: var(--white);
  text-align: center;
  background: var(--rust-deep);
}

.contact .eyebrow { color: var(--sand); }
.contact h2 { margin-bottom: 1.5rem; }
.contact > p:not(.eyebrow):not(.appointment-note) { color: rgba(255,255,255,0.73); }
.contact-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.button-light { color: var(--ink); background: var(--sand); border-color: var(--sand); }
.button-light:hover, .button-light:focus-visible { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-outline { background: transparent; border-color: rgba(255,255,255,0.45); }
.button-outline:hover, .button-outline:focus-visible { background: rgba(255,255,255,0.08); border-color: var(--white); }
.appointment-note { margin: 1.25rem 0 0; color: rgba(255,255,255,0.56); font-size: 0.8rem; }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem 8vw 3.5rem;
  color: var(--sand);
  background: var(--ink);
}

.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { color: var(--white); font-family: Georgia, serif; font-size: 1.15rem; font-weight: 400; }
.footer-brand div span { color: rgba(255,255,255,0.46); font-size: 0.72rem; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: rgba(255,255,255,0.68); font-size: 0.82rem; }
footer > p { grid-column: 1 / -1; margin: 1rem 0 0; padding-top: 1.4rem; color: rgba(255,255,255,0.35); border-top: 1px solid var(--line); font-size: 0.75rem; }
.mobile-actions { display: none; }

@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 43rem; padding-top: 9rem; }
  .hero-visual { min-height: 34rem; }
  .section-heading { grid-template-columns: 0.6fr 1.4fr; }
  .section-heading > p:last-child { grid-column: 2; }
  .lookbook-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 30rem 21rem 24rem; }
  .lookbook figure.look-feature { grid-column: 1 / 3; grid-row: auto; }
  .lookbook figure.look-wide { grid-column: 1 / 3; }
  .experience { grid-template-columns: 1fr; }
  .experience-stat { min-height: 22rem; }
}

@media (max-width: 700px) {
  body { padding-bottom: 4rem; }
  .site-header { min-height: 5rem; padding: 0 1.25rem; }
  .brand-mark { width: 2.35rem; height: 2.35rem; }
  .brand-name { font-size: 0.98rem; }
  .site-header > .button { display: none; }
  .hero-copy { min-height: auto; padding: 8.4rem 1.35rem 3.5rem; }
  h1 { font-size: clamp(3.15rem, 15vw, 4.6rem); }
  .hero-intro { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { padding: 0.75rem 0; }
  .trust-strip { margin-top: 2.8rem; }
  .trust-strip strong { font-size: 1.22rem; }
  .hero-visual { min-height: 29rem; }
  .image-note { right: 1.25rem; bottom: 1.25rem; }
  .marquee { justify-content: flex-start; gap: 0.75rem; overflow: hidden; flex-wrap: nowrap; white-space: nowrap; }
  .services, .faq { padding: 5rem 1.35rem; }
  .section-heading { display: block; padding-bottom: 3rem; }
  .section-heading h2 { margin-bottom: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article { min-height: auto; padding: 1.7rem 0 2.2rem; }
  .service-grid article + article { padding-left: 0; border-left: 0; }
  .service-grid h3 { margin: 2.5rem 0 0.9rem; }
  .lookbook { padding: 5rem 1.35rem; }
  .lookbook-heading { display: block; padding-bottom: 2.25rem; }
  .lookbook-heading h2 { margin-bottom: 1.5rem; }
  .lookbook-grid { grid-template-columns: 1fr; grid-template-rows: 32rem 25rem 25rem 29rem; }
  .lookbook figure.look-feature, .lookbook figure.look-wide { grid-column: auto; grid-row: auto; }
  .experience-stat { min-height: 20rem; padding: 3rem 1.35rem; }
  .experience-copy { padding: 5rem 1.35rem; }
  .faq { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact { margin: 0; padding: 5rem 1.35rem; }
  .contact-actions { flex-direction: column; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.35rem 6rem; }
  .footer-links { flex-wrap: wrap; }
  .mobile-actions {
    position: fixed;
    z-index: 50;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    min-height: 4rem;
    color: var(--white);
    background: var(--ink);
    box-shadow: 0 -8px 24px rgba(23,16,13,0.22);
  }
  .mobile-actions a { display: grid; place-items: center; padding: 0.7rem; font-size: 0.79rem; font-weight: 750; text-align: center; text-decoration: none; }
  .mobile-actions a + a { background: var(--rust); }
}

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