:root {
  --ink: #211119;
  --plum: #2b1721;
  --plum-soft: #432534;
  --rose: #a84a5e;
  --rose-deep: #702439;
  --sage: #a97928;
  --sage-light: #fff1dc;
  --gold: #c59b52;
  --paper: #ffffff;
  --cream: #fff8f3;
  --shell: #f7e8e2;
  --line: #ead9cf;
  --muted: #6f6168;
  --shadow: 0 20px 50px rgba(36, 19, 27, 0.12);
  --container: 1160px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(185, 87, 108, 0.45);
  outline-offset: 4px;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--plum);
  border-radius: 6px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--header-height);
  background: rgba(255, 248, 243, 0.88);
  border-bottom: 1px solid rgba(234, 222, 216, 0.82);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(135deg, var(--plum), var(--rose-deep) 58%, var(--gold));
  border-radius: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(142, 48, 72, 0.22);
}

.brand-name,
.brand-subtitle {
  display: block;
  line-height: 1.2;
}

.brand-name {
  font-weight: 800;
  font-size: 15px;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(234, 222, 216, 0.78);
  border-radius: 8px;
}

.site-nav a {
  padding: 9px 12px;
  color: #4f3d47;
  font-weight: 700;
  font-size: 14px;
  border-radius: 6px;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  color: var(--rose-deep);
  background: var(--shell);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  color: var(--paper);
  background: linear-gradient(135deg, var(--plum), var(--rose-deep));
  box-shadow: 0 12px 26px rgba(36, 19, 27, 0.18);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: linear-gradient(135deg, var(--plum), var(--rose-deep));
  box-shadow: 0 16px 34px rgba(112, 36, 57, 0.24);
}

.button-primary:hover {
  background: linear-gradient(135deg, #201018, #5f1e30);
}

.button-quiet {
  color: var(--plum);
  background: var(--paper);
  border: 1px solid var(--line);
}

.button-small {
  min-height: 42px;
  color: var(--plum);
  background: var(--sage-light);
  border: 1px solid rgba(197, 155, 82, 0.36);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
}

.nav-toggle-lines::after {
  top: 7px;
}

.nav-open .nav-toggle-lines {
  transform: rotate(45deg);
}

.nav-open .nav-toggle-lines::before {
  transform: translateY(7px) rotate(90deg);
}

.nav-open .nav-toggle-lines::after {
  opacity: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 46px;
  background:
    radial-gradient(circle at 78% 20%, rgba(197, 155, 82, 0.18), transparent 34%),
    linear-gradient(115deg, rgba(255, 248, 243, 0.98) 0%, rgba(247, 232, 226, 0.94) 52%, rgba(255, 241, 220, 0.92) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(43, 23, 33, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(43, 23, 33, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: 42px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-weight: 800;
  font-size: 14px;
}

.hero h1,
.section-heading h2,
.experience-copy h2,
.location-copy h2,
.proof h2,
.faq h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  font-weight: 700;
  color: var(--plum);
}

.hero h1 {
  max-width: 720px;
  font-size: 60px;
}

.hero-lede {
  max-width: 610px;
  margin: 22px 0 0;
  color: #4f4249;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(234, 222, 216, 0.88);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 44px rgba(36, 19, 27, 0.08);
}

.trust-strip div {
  min-width: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--plum);
  font-size: 23px;
  line-height: 1.1;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  min-width: 0;
}

.hero-media img {
  aspect-ratio: 6 / 5;
  max-height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(300px, calc(100% - 36px));
  padding: 16px;
  color: var(--paper);
  background: rgba(36, 19, 27, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: #f1c9d2;
  font-weight: 800;
  font-size: 13px;
}

.hero-note strong {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.35;
}

.section {
  padding: 86px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading.narrow {
  max-width: 720px;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 34px;
}

.section-heading h2,
.experience-copy h2,
.location-copy h2,
.proof h2,
.faq h2 {
  font-size: 44px;
}

.section-heading p,
.experience-copy > p,
.location-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  max-width: 900px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--plum);
  font-size: 18px;
  font-weight: 800;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
}

.experience {
  color: var(--paper);
  background: var(--plum);
}

.experience .section-kicker {
  color: #f1c9d2;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
}

.experience-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.experience-copy h2 {
  color: var(--paper);
}

.experience-copy > p {
  color: #d9ccd3;
}

.steps {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--plum);
  background: #f1d9aa;
  border-radius: 8px;
  font-weight: 800;
}

.step p {
  margin: 0;
  color: #f2e8ec;
}

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

.lookbook-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 16px;
  align-items: stretch;
}

.look-card {
  position: relative;
  min-height: 380px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--plum);
}

.look-card.tall {
  min-height: 460px;
}

.look-card img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.look-card:hover img {
  transform: scale(1.04);
}

.look-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(36, 19, 27, 0), rgba(36, 19, 27, 0.82));
}

.look-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--paper);
}

.look-card strong,
.look-card span {
  display: block;
}

.look-card strong {
  font-size: 20px;
}

.look-card span {
  color: #f2dce2;
  font-size: 14px;
}

.proof {
  background: var(--sage-light);
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-item {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(197, 155, 82, 0.22);
  border-radius: 8px;
}

.proof-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--gold), var(--rose-deep));
  border-radius: 8px;
  font-weight: 800;
}

.proof-item h3 {
  margin: 52px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.proof-item p {
  margin: 0;
  color: var(--muted);
}

.location {
  background: var(--cream);
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 22px;
  align-items: start;
}

.location-copy {
  padding-right: 16px;
}

.address-block {
  margin: 28px 0 20px;
  padding: 18px;
  color: var(--plum);
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rose);
  border-radius: 8px;
  font-style: normal;
}

.address-block span {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.facts div {
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 222, 216, 0.86);
  border-radius: 8px;
}

.facts dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.facts dd {
  margin: 4px 0 0;
  color: var(--plum);
  font-weight: 800;
  line-height: 1.3;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.copy-status {
  min-height: 26px;
  margin: 12px 0 0;
  color: var(--sage);
  font-weight: 700;
}

.contact-panel,
.map-panel {
  background: var(--paper);
  border: 1px solid rgba(234, 222, 216, 0.94);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(36, 19, 27, 0.08);
}

.contact-panel {
  padding: 24px;
}

.visit-form {
  display: grid;
  gap: 14px;
}

.visit-form h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.2;
}

.visit-form p {
  margin: -4px 0 2px;
  color: var(--muted);
}

.visit-form label {
  display: grid;
  gap: 7px;
  color: var(--plum);
  font-weight: 800;
}

.visit-form select,
.visit-form textarea {
  width: 100%;
  color: var(--ink);
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
}

.visit-form textarea {
  resize: vertical;
  min-height: 96px;
}

.prepared-message {
  display: none;
  padding: 14px;
  color: #493b43;
  background: var(--sage-light);
  border: 1px solid rgba(197, 155, 82, 0.34);
  border-radius: 8px;
}

.prepared-message.is-visible {
  display: block;
}

.map-panel {
  grid-column: 2;
  min-height: 360px;
  overflow: hidden;
}

.map-panel iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 44px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fffdfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--plum);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--rose-deep);
  background: var(--shell);
  border-radius: 8px;
  font-size: 18px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  padding: 48px 0 92px;
  color: #f4e9ee;
  background: var(--plum);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.55fr) minmax(220px, 0.5fr);
  gap: 32px;
}

.footer-brand .brand-mark {
  background: linear-gradient(135deg, var(--plum), var(--rose-deep) 58%, var(--gold));
  box-shadow: none;
}

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

.footer-brand .brand-subtitle {
  color: #d9ccd3;
}

.site-footer p {
  max-width: 520px;
  margin: 18px 0 0;
  color: #d9ccd3;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 16px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: #d9ccd3;
  list-style: none;
}

.site-footer a {
  color: #ffe4ec;
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1020px) {
  .experience-grid,
  .proof-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-media {
    max-width: 620px;
  }

  .proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading.split,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-panel {
    grid-column: auto;
  }

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

  .look-card.tall {
    min-height: 380px;
  }

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

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 16px;
    right: 16px;
    display: none;
    padding: 10px;
    background: var(--paper);
    box-shadow: 0 20px 44px rgba(36, 19, 27, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 42px 0 40px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-media img {
    aspect-ratio: 16 / 9;
    max-height: 270px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-lede {
    font-size: 18px;
  }

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

  .trust-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip div {
    padding: 13px 10px;
  }

  .trust-strip strong {
    font-size: 18px;
  }

  .trust-strip span {
    font-size: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .section-heading h2,
  .experience-copy h2,
  .location-copy h2,
  .proof h2,
  .faq h2 {
    font-size: 36px;
  }

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

  .look-card,
  .look-card.tall {
    min-height: 330px;
  }

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

  .site-footer {
    padding-bottom: 118px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 1001;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 248, 243, 0.9);
    border: 1px solid rgba(234, 222, 216, 0.9);
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(36, 19, 27, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: var(--paper);
    background: var(--plum);
    border-radius: 8px;
    font-weight: 800;
  }

  .mobile-cta a:first-child {
    color: var(--plum);
    background: var(--paper);
    border: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-name {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-subtitle {
    display: none;
  }

  .hero {
    padding: 30px 0 22px;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-lede {
    margin-top: 16px;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .trust-strip {
    margin-top: 22px;
  }

  .hero-media img {
    max-height: 158px;
  }

  .hero-actions,
  .location-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-note {
    display: none;
  }

  .proof-list {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
  }

  .proof-item h3 {
    margin-top: 34px;
  }

  .section-heading h2,
  .experience-copy h2,
  .location-copy h2,
  .proof h2,
  .faq h2 {
    font-size: 32px;
  }
}

@media (max-width: 620px) and (max-height: 700px) {
  .hero {
    padding: 22px 0 18px;
  }

  .hero-grid {
    gap: 12px;
  }

  .hero h1 {
    font-size: 33px;
  }

  .hero-lede {
    margin-top: 12px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .button {
    min-height: 44px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .trust-strip {
    margin-top: 16px;
  }

  .hero-media img {
    max-height: 88px;
  }
}

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
