@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-500-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin-600-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/outfit-latin-300-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/outfit-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/outfit-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/outfit-latin-600-normal.woff2") format("woff2");
}

:root {
  --bg: #f3eee6;
  --fg: #1a1612;
  --surface: #e8e0d6;
  --muted: #6f6860;
  --accent: #3d4a3e;
  --accent-fg: #f3eee6;
  --border: rgb(26 22 18 / 12%);
  --ring: #3d4a3e;
  --font-sans: "Outfit", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Cormorant Garamond", ui-serif, Georgia, serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --text-kicker: 0.6875rem;
  --text-hero: clamp(3.4rem, 2rem + 8vw, 8.75rem);
  --text-display: clamp(2.25rem, 1.4rem + 3.4vw, 4.5rem);
  --text-title: clamp(1.5rem, 1.15rem + 1.4vw, 2.25rem);
}

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

html {
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.55;
}

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

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

button,
[role="button"] {
  font: inherit;
  color: inherit;
  cursor: pointer;
}

h1, h2, h3, h4 {
  text-wrap: balance;
  margin: 0;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--accent);
  color: var(--accent-fg);
}

:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.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;
}

.wrap {
  width: min(72rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .wrap {
    width: min(72rem, calc(100% - 4rem));
  }
}

.kicker {
  font-size: var(--text-kicker);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.display {
  font-family: var(--font-display);
  font-size: var(--text-display);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.title {
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-weight: 500;
  line-height: 1.15;
}

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

.wordmark {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.wordmark em {
  font-style: italic;
  font-weight: 400;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: var(--fg);
  color: var(--bg);
  transition: background-color 150ms ease, color 150ms ease, border-color 150ms ease, transform 150ms ease;
}
.btn:active { transform: scale(0.96); }
.btn-lg { height: 3rem; padding: 0 1.75rem; }
.btn-sm { height: 2.25rem; padding: 0 0.9rem; font-size: 0.75rem; }
.btn-cream { background: var(--bg); color: var(--fg); }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--surface); }
.btn-ghost-light {
  background: transparent;
  color: var(--bg);
  border-color: rgb(243 238 230 / 30%);
}
.btn-ghost-light:hover { background: rgb(243 238 230 / 10%); }
.btn svg { width: 1rem; height: 1rem; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: rgb(243 238 230 / 90%);
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}
.site-header.is-overlay {
  background: rgb(243 238 230 / 90%);
}
.site-header.is-solid {
  background: rgb(243 238 230 / 95%);
  border-bottom-color: var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: var(--text-kicker);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-desktop a:hover { opacity: 0.7; }
.menu-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 50;
}
.menu-toggle svg { width: 1.25rem; height: 1.25rem; }
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  padding: 6rem 1.25rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a.big {
  font-family: var(--font-display);
  font-size: var(--text-display);
  padding: 0.5rem 0;
}
.mobile-nav .btn { width: 100%; margin-top: auto; }
.phone-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .site-header.is-overlay {
    background: transparent;
  }
  .site-header.is-overlay .wordmark,
  .site-header.is-overlay .nav-desktop a {
    color: var(--bg);
  }
  .header-inner { height: 4.5rem; }
  .nav-desktop { display: flex; }
  .menu-toggle,
  .mobile-nav { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--fg);
  color: var(--bg);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(26 22 18 / 80%) 0%, rgb(26 22 18 / 20%) 48%, rgb(26 22 18 / 30%) 100%);
}
.hero-content {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem 0 2.5rem;
}
.hero .kicker { color: rgb(243 238 230 / 80%); }
.hero h1 {
  margin-top: 1rem;
  max-width: 64rem;
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: -0.035em;
}
.hero h1 em { font-style: italic; font-weight: 400; }
.hero-lead {
  margin-top: 1.25rem;
  max-width: 28rem;
  color: rgb(243 238 230 / 80%);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); filter: blur(4px); }
  to { opacity: 1; transform: none; filter: none; }
}
.rise { animation: rise 700ms var(--ease) both; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 0.75rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  white-space: nowrap;
  padding-inline: 1.25rem;
  animation: marquee 36s linear infinite;
}
.marquee span {
  font-size: var(--text-kicker);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee .dot { margin-left: 2.5rem; color: rgb(26 22 18 / 25%); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rise, .marquee-track { animation: none !important; }
}

/* Sections */
.section { scroll-margin-top: 8rem; }
.section-pad { padding: 5rem 0; }
.section-border { border-top: 1px solid var(--border); }
@media (min-width: 768px) {
  .section-pad { padding: 7rem 0; }
}

.split-12 {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .split-12 {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
  }
  .col-3 { grid-column: span 3; }
  .col-5 { grid-column: span 5; }
  .col-7 { grid-column: span 7; }
  .col-9 { grid-column: span 9; }
}

.intro-copy {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .intro-copy { grid-template-columns: 1fr 1fr; }
}

.photo-grid {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .photo-grid { grid-template-columns: repeat(12, 1fr); }
  .photo-grid .wide { grid-column: span 7; }
  .photo-grid .side { grid-column: span 5; }
}
.photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
}

/* Services */
.service-list {
  list-style: none;
  margin: 3rem 0 0;
  padding: 0;
  border-block: 1px solid var(--border);
}
.service-list li {
  display: grid;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-list li:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .service-list li {
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    align-items: baseline;
    padding: 1.75rem 0;
  }
  .service-list h3 { grid-column: span 4; }
  .service-list p { grid-column: span 6; }
  .service-list .price { grid-column: span 2; text-align: right; }
}
.price { font-size: 0.875rem; font-variant-numeric: tabular-nums; }

/* Gallery */
.lookbook-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .lookbook-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.filter-btn {
  height: 2.5rem;
  padding: 0 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: transparent;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.filter-btn.is-on {
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}
.looks {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .looks { grid-template-columns: repeat(4, 1fr); }
  .looks li.featured { grid-column: span 2; grid-row: span 2; }
  .looks li.wide { grid-column: span 2; }
}
.look-btn {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.look-btn img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}
.looks li.featured img { aspect-ratio: 1 / 1; }
@media (min-width: 768px) {
  .looks li.featured img { aspect-ratio: 3 / 4; }
}
.look-btn:hover img { transform: scale(1.05); }
.look-btn span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.75rem;
  text-align: left;
  font-size: 0.875rem;
  color: var(--bg);
  background: linear-gradient(to top, rgb(26 22 18 / 55%), transparent);
  opacity: 0;
  transition: opacity 200ms ease;
}
.look-btn:hover span { opacity: 1; }
.looks li.is-hidden { display: none; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.is-open { display: flex; }
.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgb(26 22 18 / 50%);
  border: 0;
}
.lightbox-card {
  position: relative;
  z-index: 1;
  width: min(32rem, 100%);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.lightbox-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.lightbox-meta { padding: 0.5rem 1.25rem 1.25rem; }
.lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: var(--radius-md);
  background: rgb(243 238 230 / 80%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close svg { width: 1rem; height: 1rem; }

/* About */
.about-grid {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}
.about-grid figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: 0;
}
.about-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
}
@media (min-width: 768px) {
  .about-card { padding: 3rem 2.5rem; }
}
.about-card blockquote {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.about-card blockquote p {
  font-family: var(--font-display);
  font-size: var(--text-title);
  font-style: italic;
  line-height: 1.25;
}

/* Visit */
.status {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status.is-open {
  background: var(--accent);
  color: var(--accent-fg);
}
.facts { margin-top: 2rem; }
.facts div { margin-bottom: 0.75rem; font-size: 0.875rem; }
.facts dt { color: var(--muted); }
.visit-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hours {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-block: 1px solid var(--border);
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
.hours li:last-child { border-bottom: 0; }
.hours li.is-today { font-weight: 500; }
.hours .time { font-variant-numeric: tabular-nums; color: var(--muted); }
.tools-fig {
  margin: 1.5rem 0 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.tools-fig img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* Booking */
.booking {
  background: var(--surface);
}
.booking-form {
  display: grid;
  gap: 1.25rem;
  background: var(--bg);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}
@media (min-width: 768px) {
  .booking-form { padding: 2rem; }
}
.field { display: grid; gap: 0.5rem; }
.field-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .field-row { grid-template-columns: 1fr 1fr; }
}
label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.04em; }
input, select, textarea {
  height: 2.75rem;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  color: var(--fg);
  padding: 0 0.9rem;
  font: inherit;
  font-size: 0.875rem;
}
textarea { height: auto; min-height: 7rem; padding: 0.75rem 0.9rem; border-radius: var(--radius-lg); }
.fineprint { font-size: 0.75rem; color: var(--muted); line-height: 1.5; }
.thanks { text-align: center; padding: 7rem 0; }
.thanks h2 { margin-top: 1rem; }
.thanks p { margin: 1rem auto 0; max-width: 28rem; }
.thanks-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--fg);
  color: var(--bg);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3.5rem 0;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    padding: 4rem 0;
  }
}
.site-footer .kicker { color: rgb(243 238 230 / 50%); }
.site-footer .wordmark { font-size: 1.5rem; }
.legal-links {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: rgb(243 238 230 / 55%);
  font-size: 0.875rem;
}
.legal-links a:hover { color: var(--bg); }

/* Legal pages */
.legal-main {
  max-width: 42rem;
  margin: 0 auto;
  padding: 7rem 1.25rem 5rem;
}
.legal-main h1 { margin-top: 0.75rem; }
.legal-body {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
  color: var(--muted);
}
.legal-body a { text-decoration: underline; text-underline-offset: 4px; color: var(--fg); }
.back { margin-top: 3rem; font-size: 0.875rem; }

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  background: var(--fg);
  color: var(--bg);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  opacity: 0;
  pointer-events: none;
  z-index: 80;
  transition: opacity 200ms ease, transform 200ms var(--ease);
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
