@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/fraunces-italic500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../fonts/nunito-var.woff2') format('woff2');
}

:root {
  --bg: #f7f1e5;
  --bg-alt: #efe4d0;
  --surface: #fffdf7;
  --ink: #3a2420;
  --ink-soft: #83685f;
  --accent: #8f2e2c;
  --accent-strong: #6e2220;
  --gold: #b8863a;
  --clay: #c97b5c;
  --line: rgba(58, 36, 32, 0.16);
  --shadow: 0 18px 40px -22px rgba(58, 36, 32, 0.35);
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #241713;
    --bg-alt: #2e1e19;
    --surface: #33221d;
    --ink: #f5e9de;
    --ink-soft: #d3b9ae;
    --accent: #e0877a;
    --accent-strong: #efa89c;
    --gold: #e3b15b;
    --clay: #e0977a;
    --line: rgba(245, 233, 222, 0.18);
    --shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.55);
    color-scheme: dark;
  }
}
:root[data-theme="dark"] {
  --bg: #241713;
  --bg-alt: #2e1e19;
  --surface: #33221d;
  --ink: #f5e9de;
  --ink-soft: #d3b9ae;
  --accent: #e0877a;
  --accent-strong: #efa89c;
  --gold: #e3b15b;
  --clay: #e0977a;
  --line: rgba(245, 233, 222, 0.18);
  --shadow: 0 18px 44px -20px rgba(0, 0, 0, 0.55);
  color-scheme: dark;
}
:root[data-theme="light"] {
  --bg: #f7f1e5;
  --bg-alt: #efe4d0;
  --surface: #fffdf7;
  --ink: #3a2420;
  --ink-soft: #83685f;
  --accent: #8f2e2c;
  --accent-strong: #6e2220;
  --gold: #b8863a;
  --clay: #c97b5c;
  --line: rgba(58, 36, 32, 0.16);
  --shadow: 0 18px 40px -22px rgba(58, 36, 32, 0.35);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; text-wrap: balance; margin: 0; color: var(--ink); }
em { font-style: italic; color: var(--accent-strong); }

a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* stitched divider */
.stitch {
  border: none;
  margin: 0;
}

/* nav */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img {
  width: 38px; height: 38px;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a { text-decoration: none; opacity: 0.82; }
.nav-links a:hover { opacity: 1; color: var(--accent-strong); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fdf6ee;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}
.nav-cta:hover { background: var(--accent-strong); }
@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
}
.hero-blobs {
  position: absolute;
  inset: -10% -10% auto -10%;
  height: 130%;
  z-index: 0;
  filter: blur(2px);
  opacity: 0.5;
}
.hero-blobs span {
  position: absolute;
  border-radius: 44% 56% 60% 40% / 50% 45% 55% 50%;
  animation: drift 22s ease-in-out infinite alternate;
}
.hero-blobs span:nth-child(1) { width: 340px; height: 300px; top: 0; left: 4%; background: color-mix(in srgb, var(--clay) 50%, transparent); }
.hero-blobs span:nth-child(2) { width: 300px; height: 280px; top: 8%; right: 8%; background: color-mix(in srgb, var(--gold) 42%, transparent); animation-delay: -6s; }
.hero-blobs span:nth-child(3) { width: 260px; height: 240px; bottom: -6%; left: 34%; background: color-mix(in srgb, var(--accent) 35%, transparent); animation-delay: -12s; }
@keyframes drift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(24px, 18px) rotate(8deg); }
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-gallery { order: -1; margin: 0 auto 8px; }
}
.hero-inner { max-width: 560px; }
.hero-gallery {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 300px;
  justify-self: center;
}
.hero-photo {
  position: absolute;
  object-fit: cover;
  border-radius: 14px;
  border: 6px solid var(--surface);
  box-shadow: var(--shadow);
}
.hero-photo-1 { top: 0; left: 0; width: 180px; height: 180px; transform: rotate(-8deg); z-index: 1; }
.hero-photo-2 { top: 64px; right: 0; width: 168px; height: 168px; transform: rotate(7deg); z-index: 2; }
.hero-photo-3 { bottom: 0; left: 64px; width: 156px; height: 156px; transform: rotate(-4deg); z-index: 3; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 18px 0 22px;
  font-weight: 600;
}
.hero p.lead {
  font-size: 1.14rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.98rem;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fdf6ee; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-strong); }

/* value strip */
.values {
  padding: 40px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}
.value-item h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; }
.value-item p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }
@media (max-width: 780px) {
  .values .wrap { grid-template-columns: 1fr; }
}

/* section headers */
.section { padding: 84px 0; }
.section-head { max-width: 640px; margin: 0 auto 46px; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); font-weight: 600; margin-top: 10px; }
.section-head p { color: var(--ink-soft); margin: 14px 0 0; }

#contact .section-head h2 {
  white-space: nowrap;
  font-size: clamp(1.05rem, 5.6vw, 2.3rem);
}

/* pinned photo board */
.board {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px 28px;
  padding-top: 10px;
}
.pin-card {
  position: relative;
  width: 250px;
  background: var(--surface);
  padding: 14px 14px 46px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pin-card:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 24px 48px -20px rgba(58,36,32,0.4); }
.pin-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.pin-tape {
  position: absolute;
  top: -12px;
  left: 50%;
  width: 64px;
  height: 22px;
  margin-left: -32px;
  background: color-mix(in srgb, var(--gold) 60%, transparent);
  opacity: 0.85;
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.12);
}
.pin-caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 0.98rem;
  text-align: center;
}
.board-note {
  text-align: center;
  margin-top: 40px;
}

/* patrons */
.patrons-section {
  background:
    repeating-linear-gradient(0deg, var(--line) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, var(--line) 0 1px, transparent 1px 32px),
    var(--bg-alt);
  background-blend-mode: normal;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.patrons-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 46px;
  align-items: center;
}
@media (max-width: 820px) {
  .patrons-grid { grid-template-columns: 1fr; }
}
.patrons-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
  box-shadow: var(--shadow);
}
.patrons-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.patrons-card li { display: flex; gap: 12px; font-size: 0.95rem; }
.patrons-card svg { flex: none; margin-top: 2px; color: var(--gold); }
.patrons-text h2 { margin-bottom: 16px; }
.patrons-text p { color: var(--ink-soft); margin: 0 0 26px; max-width: 46ch; }

/* reviews */
.reviews-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reviews-score {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.reviews-score .stars { color: var(--gold); letter-spacing: 2px; }
.reviews-score strong { color: var(--ink); font-family: 'Fraunces', Georgia, serif; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
.review-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.review-card .stars { display: block; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-card p { margin: 0 0 16px; font-size: 0.96rem; }
.review-card footer { font-family: 'Fraunces', Georgia, serif; font-style: italic; color: var(--ink-soft); font-size: 0.92rem; }

/* CTA band */
.cta-band {
  background: var(--accent);
  color: #fdf6ee;
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: #fdf6ee; font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin-bottom: 14px; }
.cta-band p { color: #f3d9d2; margin: 0 0 28px; }
.cta-band .btn-primary { background: #fdf6ee; color: var(--accent-strong); }
.cta-band .btn-primary:hover { background: #fff; }

/* contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 320px;
  margin: 0 auto;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
  text-align: center;
}
.contact-card:hover { transform: translateY(-3px); }
.contact-card .kicker { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }
.contact-card .val { font-family: 'Fraunces', Georgia, serif; font-size: 1.15rem; }

footer {
  padding: 26px 0 60px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
}
footer .brand { justify-content: center; margin-bottom: 8px; }
footer .foot-links { margin-top: 16px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
footer .foot-links a { text-decoration: underline; text-underline-offset: 3px; }
