:root {
  --cream: #fff9e5;
  --cream-soft: #fdf3d4;
  --coffee: #634b3b;
  --coffee-soft: #8a6f5a;
  --taupe: #b1a290;
  --line: rgba(99, 75, 59, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--cream);
  color: var(--coffee);
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body { position: relative; }

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

main { width: 100%; }

/* ---------- Top Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(255, 249, 229, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav-brand img {
  height: 56px;
  width: auto;
}

.site-nav nav {
  display: flex;
  gap: 28px;
}

.site-nav nav a {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coffee);
  position: relative;
  padding: 4px 0;
}

.site-nav nav a.active::after,
.site-nav nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: var(--coffee);
}

@media (max-width: 600px) {
  .site-nav { padding: 14px 20px; }
  .site-nav nav { gap: 18px; }
  .nav-brand img { height: 44px; }
}

/* ---------- Banner ---------- */
.banner {
  position: relative;
  min-height: 100vh;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: transparent;
  z-index: 1;
}

.sketches {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.sketch {
  position: absolute;
  color: var(--coffee);
  opacity: 0.18;
  will-change: transform;
  animation: drift linear infinite;
}

.sketch svg { display: block; }

@keyframes drift {
  0%   { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
  25%  { transform: translate(calc(var(--dx, 12px) * 0.6), calc(var(--dy, -18px) * 0.4)) rotate(calc(var(--rot, 0deg) + 18deg)); }
  50%  { transform: translate(var(--dx, 12px), var(--dy, -18px)) rotate(calc(var(--rot, 0deg) + 32deg)); }
  75%  { transform: translate(calc(var(--dx, 12px) * 0.3), calc(var(--dy, -18px) * 0.7)) rotate(calc(var(--rot, 0deg) + 14deg)); }
  100% { transform: translate(0, 0) rotate(var(--rot, 0deg)); }
}

.banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 20px;
}

.banner-inner {
  max-width: 600px;
  padding-top: 20px;
}

.banner-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-photo-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-top-left-radius: 230px;
  border-top-right-radius: 230px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow:
    0 30px 60px -28px rgba(99, 75, 59, 0.35),
    0 12px 24px -10px rgba(99, 75, 59, 0.18);
}

.banner-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 249, 229, 0.45);
  border-top-left-radius: 230px;
  border-top-right-radius: 230px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  pointer-events: none;
  z-index: 2;
}

.banner-photo-frame img,
.banner-photo-frame .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.banner-photo-frame .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 6s ease;
  z-index: 1;
}

.banner-photo-frame .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.logo {
  width: 78px;
  height: auto;
  margin-bottom: 36px;
  filter: drop-shadow(0 1px 0 rgba(99, 75, 59, 0.06));
}

.title {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(44px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--coffee);
}

.about p {
  margin: 0 0 14px;
  max-width: 540px;
  color: var(--coffee);
  font-size: 16px;
}

.socials {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 32px 0 32px;
}

.socials a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--coffee);
  transition: background 0.2s ease, transform 0.2s ease;
}

.socials a:hover {
  background: rgba(99, 75, 59, 0.08);
  transform: translateY(-1px);
}

.know-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--coffee);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 7px 7px 0 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.know-more:hover {
  transform: translate(-1px, -1px);
  box-shadow: 9px 9px 0 0 rgba(0, 0, 0, 0.1);
}

/* ---------- Divider ---------- */
.divider {
  border: none;
  border-top: 1px solid var(--line);
  width: min(86%, 960px);
  margin: 0 auto;
}

/* ---------- Cards ---------- */
.cards {
  padding: 80px 24px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.cards-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  display: block;
  text-align: center;
  transition: transform 0.25s ease;
}

.card:hover { transform: translateY(-4px); }

.card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  box-shadow: 6px 6px 0 0 rgba(99, 75, 59, 0.1);
  margin-bottom: 18px;
  background-color: var(--cream-soft);
}

.card h3 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  color: var(--coffee);
}

/* ---------- Footer ---------- */
footer {
  padding: 48px 24px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.copy {
  font-size: 14px;
  color: var(--coffee-soft);
  margin: 0;
}

.footer-socials {
  list-style: none;
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--coffee);
}

.footer-socials a:hover { background: rgba(99, 75, 59, 0.08); }

/* ---------- Taste / menu glimpse ---------- */
.taste {
  padding: 90px 24px 100px;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* ---------- Instagram feed ---------- */
.ig-feed {
  padding: 100px 24px 110px;
  position: relative;
  z-index: 1;
  background: transparent;
}

.ig-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.ig-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9534f;
  box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.55);
  animation: ig-pulse 1.6s ease-out infinite;
}

@keyframes ig-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(217, 83, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 83, 79, 0); }
}

.ig-head h2 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 16px;
  color: var(--coffee);
  line-height: 1.15;
}

.ig-grid {
  max-width: 1180px;
  margin: 0 auto 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ig-live {
  max-width: 1180px;
  margin: 0 auto 56px;
  min-height: 220px;
}

.ig-live behold-widget {
  display: block;
  width: 100%;
}

.ig-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 14px;
  background: var(--cream-soft);
  box-shadow: 0 6px 22px rgba(99, 75, 59, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  transform: rotate(0deg);
}

.ig-card:nth-child(6n+1) { transform: rotate(-1.2deg); }
.ig-card:nth-child(6n+2) { transform: rotate(0.8deg); }
.ig-card:nth-child(6n+3) { transform: rotate(-0.6deg); }
.ig-card:nth-child(6n+4) { transform: rotate(1.1deg); }
.ig-card:nth-child(6n+5) { transform: rotate(-0.9deg); }
.ig-card:nth-child(6n)   { transform: rotate(0.7deg); }

.ig-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 18px 38px rgba(99, 75, 59, 0.18);
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.ig-card:hover img { transform: scale(1.06); }

.ig-overlay {
  position: absolute;
  inset: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(99, 75, 59, 0.82) 0%,
    rgba(99, 75, 59, 0.32) 45%,
    rgba(99, 75, 59, 0) 80%
  );
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ig-card:hover .ig-overlay { opacity: 1; }

.ig-stats {
  display: flex;
  gap: 18px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.ig-stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ig-caption {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  font-style: italic;
  font-family: "Fraunces", Georgia, serif;
}

.ig-cta-wrap {
  text-align: center;
}

.ig-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--coffee);
  color: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease;
}

.ig-cta:hover {
  transform: translateY(-2px);
  background: #4f3b2d;
}

@media (max-width: 768px) {
  .ig-feed { padding: 70px 22px 80px; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ig-overlay { opacity: 1; }
}

.taste-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.taste-head h2 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 16px;
  color: var(--coffee);
  line-height: 1.15;
}

.taste-sub {
  margin: 0;
  color: var(--coffee-soft);
  font-size: 16px;
  line-height: 1.7;
}

.taste-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.taste-grid .t {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--cream-soft);
}

.taste-grid .t img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.taste-grid .t:hover img { transform: scale(1.05); }

.taste-grid .t-tall { grid-row: span 2; }
.taste-grid .t-wide { grid-column: span 2; }

@media (max-width: 768px) {
  .taste { padding: 60px 22px 70px; }
  .taste-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    gap: 12px;
  }
  .taste-grid .t-tall { grid-row: auto; }
  .taste-grid .t-wide { grid-column: span 2; }
}

/* ---------- About: hero ---------- */
.about-hero {
  position: relative;
  height: 78vh;
  min-height: 480px;
  overflow: hidden;
}

.about-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: heroBreathe 18s ease-in-out infinite;
}

@keyframes heroBreathe {
  0%, 100% { transform: scale(1.04); }
  50%      { transform: scale(1.1); }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 56px max(32px, calc(50% - 540px));
  background: linear-gradient(180deg, rgba(99,75,59,0) 30%, rgba(99,75,59,0.55) 100%);
  color: var(--cream);
}

.about-hero-overlay .eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin: 0 0 12px;
  opacity: 0.85;
}

.about-hero-overlay h1 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 110px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}

.about-hero-overlay .location {
  margin: 18px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.92;
}

/* ---------- About: intro ---------- */
.about-intro {
  padding: 90px 24px 30px;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.lede {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  color: var(--coffee);
  margin: 0;
}

/* ---------- About: alternating story rows ---------- */
.story {
  padding: 60px 24px 40px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 90px;
}

.story-row {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.story-row.reverse { direction: rtl; }
.story-row.reverse > * { direction: ltr; }

.story-text { padding: 0 8px; }

.kicker {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coffee-soft);
  margin: 0 0 14px;
}

.kicker.centered { text-align: center; }

.story-text h2 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--coffee);
}

.story-text p {
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--coffee);
  margin: 0;
}

.story-img {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 12px 12px 0 0 rgba(99, 75, 59, 0.1);
}

.story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  display: block;
}

/* ---------- About: gallery mosaic ---------- */
.gallery {
  padding: 60px 24px 40px;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery .g {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: var(--cream-soft);
}

.gallery .g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.gallery .g:hover img { transform: scale(1.05); }

.gallery .g-wide   { grid-column: span 2; }
.gallery .g-tall   { grid-row: span 2; }

/* ---------- About: offerings ---------- */
.offerings {
  padding: 90px 24px;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.offerings h2.centered {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 56px;
  color: var(--coffee);
}

.offerings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
}

.offerings-grid.three {
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 900px) {
  .offerings-grid.three { grid-template-columns: 1fr; gap: 22px; }
}

.offer {
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream-soft);
  position: relative;
}

.offer-num {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 300;
  font-style: italic;
  font-size: 28px;
  color: var(--taupe);
  margin-bottom: 14px;
}

.offer h3 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--coffee);
}

.offer p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--coffee);
}

.closing {
  margin: 56px auto 0;
  max-width: 640px;
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--coffee-soft);
}

/* ---------- About: visit CTA ---------- */
.visit {
  padding: 60px 24px 90px;
  text-align: center;
}

.visit-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 32px;
  border-radius: 16px;
  background: var(--coffee);
  color: var(--cream);
  box-shadow: 14px 14px 0 0 rgba(99, 75, 59, 0.18);
}

.visit-inner .kicker { color: var(--taupe); }

.visit-inner h2 {
  font-family: "Fraunces", "Playfair Display", Georgia, serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 0 0 32px;
  color: var(--cream);
}

.visit-inner .know-more {
  background: var(--cream);
  color: var(--coffee);
  box-shadow: none;
}

.visit-inner .know-more:hover {
  transform: translate(-1px, -1px);
}

.visit-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 22px;
  border-radius: 8px;
  border: 1px solid rgba(255, 249, 229, 0.4);
  color: var(--cream);
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.ghost-btn:hover { background: rgba(255, 249, 229, 0.08); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .banner-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 0;
  }
  .banner-photo { order: -1; }
  .banner-photo-frame { max-width: 360px; aspect-ratio: 4 / 4.5; }
}

@media (max-width: 768px) {
  .banner { padding: 56px 22px 80px; }
  .banner-inner { margin: 0 auto; padding-top: 8px; max-width: 100%; }
  .logo { width: 64px; margin-bottom: 28px; }
  .title { margin-bottom: 22px; }
  .banner-photo-frame {
    max-width: 320px;
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
  }
  .banner-photo-frame::before {
    border-top-left-radius: 160px;
    border-top-right-radius: 160px;
  }
  .cards-inner { grid-template-columns: 1fr; gap: 36px; }
  .cards { padding: 56px 24px; }

  .about-hero { height: 64vh; }
  .about-hero-overlay { padding: 32px 22px; }
  .about-intro { padding: 60px 22px 12px; }
  .story { padding: 40px 22px 24px; gap: 60px; }
  .story-row,
  .story-row.reverse { grid-template-columns: 1fr; gap: 28px; direction: ltr; }
  .story-img img { aspect-ratio: 4 / 3; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
    padding: 40px 22px 20px;
  }
  .gallery .g-wide { grid-column: span 2; }
  .gallery .g-tall { grid-row: auto; }

  .offerings { padding: 60px 22px; }
  .offerings-grid { grid-template-columns: 1fr; gap: 22px; }
  .visit { padding: 30px 22px 70px; }
  .visit-inner { padding: 40px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .sketch { animation: none; }
}

/* ---------- Visit (Find us) block ---------- */
.visit-block {
  padding: 90px 22px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.visit-block-inner { max-width: 1100px; margin: 0 auto; }
.visit-block .centered { margin-bottom: 48px; }

.visit-cards {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: stretch;
}

/* Postcard */
.postcard {
  position: relative;
  background: #fffefa;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 42px 42px 36px 86px;
  box-shadow: 0 30px 60px -36px rgba(99, 75, 59, 0.3);
  transform: rotate(-0.6deg);
  overflow: hidden;
}
.postcard-rail {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 52px;
  background: var(--coffee);
  display: flex;
  align-items: center;
  justify-content: center;
}
.postcard-rail span {
  color: var(--cream);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-90deg);
}
.postcard-stamp {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 70px;
  height: 86px;
  border: 2px dashed var(--coffee);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.7rem;
  color: var(--coffee);
  text-align: center;
  line-height: 1.15;
  opacity: 0.85;
  background: rgba(255, 249, 229, 0.5);
}
.postcard-eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coffee);
  opacity: 0.65;
  margin: 0 0 14px;
}
.postcard h3 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.15;
  margin: 0 0 22px;
  color: var(--coffee);
}
.postcard-address {
  font-family: "DM Sans", sans-serif;
  color: var(--coffee);
  line-height: 1.85;
  font-size: 1rem;
  margin: 0 0 26px;
  max-width: 80%;
}
.postcard-meta {
  border-top: 1px dashed var(--taupe);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  font-size: 0.9rem;
}
.postcard-meta a {
  color: var(--coffee);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.postcard-meta a:hover { border-bottom-color: var(--coffee); }

/* Hours card */
.hours-card {
  position: relative;
  background: var(--coffee);
  color: var(--cream);
  border-radius: 6px;
  padding: 38px 32px 30px;
  display: flex;
  flex-direction: column;
  transform: rotate(0.7deg);
  overflow: hidden;
  box-shadow: 0 30px 60px -36px rgba(99, 75, 59, 0.45);
}
.hours-eyebrow {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin: 0;
}
.hours-big {
  font-family: "Fraunces", serif;
  font-weight: 300;
  font-size: clamp(4.5rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 14px 0 8px;
}
.hours-sub {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-size: 1.1rem;
  margin: 0 0 28px;
  opacity: 0.85;
  line-height: 1.4;
}
.hours-days {
  list-style: none;
  padding: 18px 0 0;
  margin: auto 0 0;
  border-top: 1px dashed rgba(255, 249, 229, 0.3);
  display: flex;
  gap: 6px;
}
.hours-day {
  flex: 1;
  text-align: center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 0;
  border-radius: 999px;
  background: rgba(255, 249, 229, 0.08);
  border: 1px solid rgba(255, 249, 229, 0.18);
}

/* Love-letter prose + actions */
.visit-letter {
  margin: 60px auto 32px;
  max-width: 760px;
  text-align: center;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.65;
  color: var(--coffee);
}
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.visit-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--coffee);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.visit-btn.primary { background: var(--coffee); color: var(--cream); }
.visit-btn.primary:hover { background: #4d3a2c; }
.visit-btn.ghost { background: transparent; color: var(--coffee); }
.visit-btn.ghost:hover { background: var(--coffee); color: var(--cream); }

@media (max-width: 800px) {
  .visit-block { padding: 60px 18px; }
  .visit-cards { grid-template-columns: 1fr; gap: 22px; }
  .postcard { padding: 32px 24px 28px 70px; transform: none; }
  .postcard-rail { width: 44px; }
  .postcard-rail span { font-size: 0.7rem; letter-spacing: 0.32em; }
  .postcard h3 { font-size: 1.45rem; }
  .postcard-address { font-size: 0.95rem; max-width: 100%; }
  .postcard-stamp { width: 54px; height: 66px; font-size: 0.6rem; top: 18px; right: 18px; }
  .hours-card { transform: none; padding: 30px 24px 24px; }
  .hours-day { font-size: 0.62rem; padding: 8px 0; }
  .visit-letter { margin: 40px auto 26px; }
}

/* ---------- FAQ ---------- */
.faq {
  padding: 70px 22px 90px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-inner h2 { margin-bottom: 36px; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 18px 4px;
}
.faq-item:last-of-type { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Fraunces", serif;
  font-size: 1.15rem;
  color: var(--coffee);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-family: "DM Sans", sans-serif;
  color: var(--coffee);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  margin: 12px 0 4px;
  color: var(--coffee);
  opacity: 0.85;
  line-height: 1.7;
}

@media (max-width: 800px) {
  .visit-grid { grid-template-columns: 1fr; }
  .visit-block { padding: 56px 20px; }
  .faq { padding: 50px 20px 70px; }
  .faq-item summary { font-size: 1.02rem; }
}
