@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Work+Sans:wght@300;400;500;600&family=Space+Mono:wght@400;700&display=swap');

:root {
  --wine: #5E1F28;
  --wine-dark: #481820;
  --taupe-sage: #8B9683;
  --taupe-sage-dark: #6E7969;
  --cream: #F6F2EA;
  --cream-warm: #EEE7D9;
  --charcoal: #1B1A18;
  --ink: #2A2724;
  --brass: #A98953;
  --brass-light: #C7A96E;
  --white: #FCFAF6;
  --hairline: rgba(169,137,83,0.35);

  --display: 'Fraunces', serif;
  --serif: 'Fraunces', serif;
  --body: 'Work Sans', sans-serif;
  --mono: 'Space Mono', monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Refined hairline divider (signature element) ---------- */
.stripe-rule {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}
.stripe-rule::before {
  content: '';
  display: block;
  width: 100%;
  max-width: 1180px;
  height: 1px;
  margin: 0 28px;
  background: linear-gradient(90deg, transparent, var(--brass) 15%, var(--brass) 85%, transparent);
  position: relative;
}
.stripe-rule.thin { height: 24px; }
.stripe-rule.on-dark { background: var(--charcoal); }
.stripe-rule.on-dark::before { background: linear-gradient(90deg, transparent, var(--brass-light) 15%, var(--brass-light) 85%, transparent); }

/* ---------- Header ---------- */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--charcoal);
  color: var(--cream);
  border-bottom: 1px solid rgba(199,169,110,0.25);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--brass-light);
  flex-shrink: 0;
}

.brand-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.3px;
  line-height: 1;
}
.brand-text span {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  color: var(--taupe-sage);
  margin-top: 5px;
  font-weight: 400;
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a {
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.75;
  transition: opacity 0.2s;
}
nav.main-nav a:hover { opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--body);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}
.btn-primary:hover { background: var(--wine-dark); border-color: var(--wine-dark); }

.btn-outline {
  border-color: rgba(246,242,234,0.4);
  color: var(--cream);
  background: transparent;
}
.btn-outline:hover { border-color: var(--brass-light); color: var(--brass-light); }

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--charcoal);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 620px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px 60px 0;
  position: relative;
  z-index: 2;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--taupe-sage);
  font-weight: 400;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--brass-light);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(42px, 5.2vw, 72px);
  line-height: 1.08;
  letter-spacing: 0.2px;
  margin-bottom: 28px;
}
.hero h1 .accent { font-style: italic; font-weight: 400; color: var(--brass-light); }

.hero p.lead {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 19px;
  max-width: 460px;
  color: #D9D3C4;
  margin-bottom: 38px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.hero-meta {
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: #A9A296;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(246,242,234,0.12);
}
.hero-meta strong { color: var(--cream); display: block; font-size: 13px; margin-bottom: 4px; font-family: var(--body); font-weight: 500; }

.hero-photo {
  position: relative;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 620px;
  filter: saturate(0.92) contrast(1.02) brightness(0.97);
}
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--charcoal) 0%, rgba(27,26,24,0.1) 32%, rgba(27,26,24,0) 55%);
}

/* ---------- Section basics ---------- */
section { padding: 110px 0; }
.section-head {
  max-width: 620px;
  margin-bottom: 60px;
}
.section-head .eyebrow { color: var(--wine); }
.section-head .eyebrow::before { background: var(--brass); }
.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.section-head p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17.5px;
  color: #56514A;
}

/* ---------- Story ---------- */
.story {
  background: var(--white);
}
.story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 76px;
  align-items: center;
}
.story-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 40px 70px -20px rgba(27,26,24,0.35);
  border: 1px solid rgba(169,137,83,0.25);
}
.story-body p {
  font-size: 16px;
  color: #423E37;
  margin-bottom: 20px;
  max-width: 520px;
  font-weight: 400;
}
.story-stats {
  display: flex;
  gap: 48px;
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
}
.story-stats .stat strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 32px;
  color: var(--wine);
  line-height: 1;
  margin-bottom: 4px;
}
.story-stats .stat span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #7A7568;
}

/* ---------- Services ---------- */
.services { background: var(--cream-warm); }

.services-table {
  border-top: 1px solid var(--charcoal);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.service-row .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18.5px;
  letter-spacing: 0.2px;
}
.service-row .desc {
  font-family: var(--body);
  font-size: 13px;
  color: #726C5F;
  display: block;
  margin-top: 5px;
  font-weight: 400;
}
.service-row .dots {
  display: none;
}
.service-row .price {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--wine);
  white-space: nowrap;
}
.service-group-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--taupe-sage-dark);
  font-weight: 400;
  margin: 50px 0 8px;
}
.service-group-label:first-child { margin-top: 0; }

.services-note {
  margin-top: 38px;
  padding: 20px 24px;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: 2px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 300;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-left: 2px solid var(--brass-light);
}
.services-note .flag { color: var(--brass-light); font-weight: 500; font-family: var(--mono); text-transform: uppercase; font-size: 11px; letter-spacing: 1px; }

/* ---------- Gallery ---------- */
.gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.gallery-grid figure {
  overflow: hidden;
  position: relative;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1), filter 0.6s ease;
  filter: saturate(0.94);
}
.gallery-grid figure:hover img { transform: scale(1.04); filter: saturate(1); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---------- Hours / Location ---------- */
.visit {
  background: var(--charcoal);
  color: var(--cream);
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 76px;
}
.hours-table {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
}
.hours-table .row {
  display: flex;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid rgba(246,242,234,0.1);
}
.hours-table .row.today {
  color: var(--brass-light);
  font-weight: 500;
}
.hours-table .row span:first-child { font-family: var(--mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: 1.5px; align-self: center; }

.visit-card {
  background: rgba(246,242,234,0.03);
  border: 1px solid rgba(199,169,110,0.25);
  border-radius: 2px;
  padding: 38px;
}
.visit-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 22px;
  letter-spacing: 0.2px;
}
.visit-card .line {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 300;
  color: #D9D3C4;
}
.visit-card .line strong { color: var(--brass-light); display: block; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 5px; font-family: var(--mono); font-weight: 400; }

/* ---------- Booking CTA ---------- */
.book-cta {
  background: var(--wine);
  color: var(--white);
  text-align: center;
}
.book-cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 22px;
}
.book-cta p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 36px;
  color: #EDDAD5;
}
.book-cta .btn-primary { background: var(--charcoal); border-color: var(--charcoal); }
.book-cta .btn-primary:hover { background: #000; border-color: #000; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--charcoal);
  color: #A9A296;
  padding: 58px 0 28px;
  border-top: 1px solid rgba(199,169,110,0.2);
}
.foot-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 34px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(246,242,234,0.08);
}
.foot-brand p { max-width: 280px; font-size: 13.5px; margin-top: 14px; font-weight: 300; }
.foot-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brass-light);
  font-weight: 400;
  margin-bottom: 16px;
}
.foot-col a, .foot-col p {
  display: block;
  font-size: 13.5px;
  margin-bottom: 9px;
  color: #A9A296;
  font-weight: 300;
}
.foot-col a:hover { color: var(--cream); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 300;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 54px 24px 44px; }
  .hero-photo img { min-height: 340px; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-photo { box-shadow: 0 20px 40px -15px rgba(27,26,24,0.35); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-grid .wide { grid-column: span 2; }
  section { padding: 76px 0; }
  .service-row { grid-template-columns: 1fr auto; }
}

@media (max-width: 520px) {
  .hero-meta { gap: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

:focus-visible {
  outline: 2px solid var(--brass-light);
  outline-offset: 2px;
}
