/* ============================================
   HOUSE OF J COFFEE CO. — Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

:root {
  /* Color tokens */
  --ivory: #FBF7F1;
  --cream: #F3ECE2;
  --blush-soft: #F0E0DA;
  --blush: #E3A79C;
  --blush-deep: #C97B63;
  --espresso: #3F2E24;
  --espresso-soft: #5C4736;
  --brown-mid: #8B6F5C;
  --brown-line: #D9C9B8;
  --white: #FFFFFF;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-founder-heading: 'Cormorant Garamond', 'Georgia', serif;
  --font-founder-signature: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 9rem;

  --radius-sm: 6px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --max-width: 1240px;
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 48px; }
}

/* ============ Typography ============ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--blush-deep);
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  margin-top: 0.6rem;
}

.section-title.script {
  font-style: italic;
  font-weight: 400;
}

.section-intro {
  max-width: 640px;
}

.lede {
  font-size: 1.15rem;
  color: var(--espresso-soft);
  font-weight: 300;
  line-height: 1.65;
}

/* ============ Botanical divider (signature element) ============ */

.sprig-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  width: fit-content;
}

.sprig-divider .line {
  width: 64px;
  height: 1px;
  background: var(--brown-line);
}

.sprig-divider svg { width: 26px; height: 26px; color: var(--blush-deep); }

.sprig-divider.section-break {
  margin: var(--space-xl) auto;
}
@media (min-width: 900px) {
  .sprig-divider.section-break { margin: var(--space-2xl) auto; }
}
.sprig-divider.section-break .line { width: 90px; }
.sprig-divider.section-break svg { width: 30px; height: 30px; }

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--espresso);
  color: var(--ivory);
}
.btn-primary:hover { background: var(--blush-deep); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-secondary:hover {
  background: var(--espresso);
  color: var(--ivory);
  transform: translateY(-2px);
}

.btn-blush {
  background: var(--blush-deep);
  color: var(--ivory);
}
.btn-blush:hover { background: var(--espresso); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* ============ Header / Nav ============ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--brown-line);
  box-shadow: 0 4px 24px rgba(63, 46, 36, 0.05);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}

@media (min-width: 768px) {
  .nav-wrap { padding: 16px 48px; }
}

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 60px; width: auto; }
.logo-wordmark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.logo-wordmark span { display: block; font-size: 0.58rem; letter-spacing: 0.2em; color: var(--blush-deep); font-family: var(--font-body); font-weight: 600; text-transform: uppercase; margin-top: 2px; }

.nav-links {
  display: none;
  align-items: center;
  gap: 34px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 1000px) {
  .nav-links { display: flex; }
}

.nav-links a { position: relative; padding: 4px 0; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--blush-deep);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 1000px) { .nav-cta { display: inline-flex; } }

.nav-cta.btn { padding: 12px 26px; font-size: 0.75rem; }

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 110;
}
@media (min-width: 1000px) { .hamburger { display: none; } }

.hamburger span {
  width: 24px; height: 2px;
  background: var(--espresso);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.6,0,.3,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--espresso);
}

.mobile-menu .btn { margin-top: 10px; }

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero { padding: 190px 0 110px; }
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 40px; }
}

.hero-copy .eyebrow { margin-bottom: 20px; }

.hero-title {
  font-size: clamp(2.7rem, 7vw, 4.6rem);
  line-height: 0.98;
}

.hero-title .accent { color: var(--blush-deep); font-style: italic; }

.hero-phrase {
  margin-top: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

.hero-desc {
  margin-top: 22px;
  max-width: 480px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--espresso);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blush-soft), var(--cream));
  box-shadow: 0 30px 60px -20px rgba(63,46,36,0.28);
}

.hero-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-badge {
  position: absolute;
  bottom: -26px; left: -28px;
  background: var(--espresso);
  color: var(--ivory);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -15px rgba(63,46,36,0.4);
  max-width: 220px;
}
.hero-badge .hb-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blush); display:block; margin-bottom: 4px;}
.hero-badge .hb-text { font-family: var(--font-display); font-size: 0.98rem; line-height: 1.25; }

/* ============ Placeholder image ============ */

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(150deg, var(--blush-soft) 0%, var(--cream) 60%, var(--brown-line) 140%);
  color: var(--brown-mid);
  text-align: center;
  padding: 20px;
}
.img-placeholder svg { width: 34px; height: 34px; opacity: 0.6; }
.img-placeholder .ph-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.75;
}
.img-placeholder .ph-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ============ Sections generic ============ */

section { position: relative; }

.section-pad { padding: var(--space-xl) 0; }
@media (min-width: 900px) { .section-pad { padding: var(--space-2xl) 0; } }

.section-head {
  text-align: center;
  margin-bottom: var(--space-lg);
}
.section-head .lede { margin: 18px auto 0; }

.bg-cream { background: var(--cream); }
.bg-blush { background: var(--blush-soft); }

/* ============ Scripture moment ============ */

.scripture-section {
  padding: var(--space-xl) 0;
  text-align: center;
}
@media (min-width: 900px) { .scripture-section { padding: var(--space-2xl) 0; } }

.scripture-sprig {
  width: 22px;
  height: 22px;
  color: var(--blush-deep);
  opacity: 0.75;
  margin: 0 auto var(--space-md);
}

.scripture-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.5;
  color: var(--espresso);
  max-width: 560px;
  margin: 0 auto;
}

.scripture-citation {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

/* ============ Brand Pillars ============ */

.pillars {
  display: grid;
  gap: 24px;
}
@media (min-width: 800px) {
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}

.pillar-card {
  background: var(--ivory);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(63,46,36,0.18);
}

.pillar-icon {
  width: 56px; height: 56px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--blush-deep);
}
.pillar-icon svg { width: 26px; height: 26px; }

.pillar-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.pillar-card p { color: var(--espresso-soft); font-weight: 300; font-size: 0.98rem; }

/* ============ Featured Drinks ============ */

.featured-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .featured-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .featured-grid { grid-template-columns: repeat(4, 1fr); } }

.featured-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--brown-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px -18px rgba(63,46,36,0.2); }

.featured-media { aspect-ratio: 4/5; overflow: hidden; }
.featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.featured-card:hover .featured-media img { transform: scale(1.05); }

.featured-info { padding: 18px 20px 22px; }
.featured-tag {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blush-deep);
}
.featured-info h4 { font-size: 1.1rem; margin: 6px 0 4px; }
.featured-price { font-family: var(--font-display); font-style: italic; color: var(--brown-mid); }

.view-menu-wrap { text-align: center; margin-top: var(--space-lg); }

/* ============ Menu Page Sections ============ */

.menu-hero {
  padding: 150px 0 60px;
  text-align: center;
}
@media (min-width: 900px) { .menu-hero { padding: 190px 0 70px; } }

.menu-section { padding: var(--space-lg) 0; }

.menu-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: var(--space-lg);
}

.menu-section-head.specialties { }

.price-pill {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--blush-deep);
}

.drink-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .drink-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1080px) {
  .drink-grid.classics { grid-template-columns: repeat(3, 1fr); }
  .drink-grid.specialties { grid-template-columns: repeat(3, 1fr); }
}

.drink-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--brown-line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.drink-card:hover { transform: translateY(-5px); box-shadow: 0 22px 44px -18px rgba(63,46,36,0.2); }

.drink-card.specialty {
  border-color: var(--blush);
  background: linear-gradient(180deg, var(--ivory) 70%, var(--blush-soft) 180%);
}

.drink-media { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.drink-media img { width: 100%; height: 100%; object-fit: cover; }

.drink-body { padding: 22px 24px 26px; }

.drink-top { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.drink-name { font-size: 1.2rem; }
.drink-price { font-family: var(--font-display); font-style: italic; color: var(--blush-deep); font-size: 1.15rem; white-space: nowrap; }

.drink-desc { margin-top: 8px; font-size: 0.92rem; color: var(--espresso-soft); font-weight: 300; line-height: 1.55; }

.specialty-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(251,247,241,0.92);
  color: var(--blush-deep);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
}

/* Make it yours */

.customize-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--espresso);
  color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
}
.customize-box h3 { color: var(--ivory); font-size: 1.6rem; margin-bottom: 26px; }
.customize-list {
  list-style: none;
  display: grid;
  gap: 14px;
  text-align: left;
  max-width: 380px;
  margin: 0 auto;
}
.customize-list li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(251,247,241,0.15);
  font-weight: 300;
}
.customize-list li span:last-child { color: var(--blush); font-family: var(--font-display); font-style: italic; }

/* ============ Our Story ============ */

.story-wrap {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .story-wrap { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.story-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.story-visual img { width: 100%; height: 100%; object-fit: cover; }

.story-copy .eyebrow { margin-bottom: 18px; }
.story-copy p { margin-top: 18px; font-weight: 300; color: var(--espresso-soft); font-size: 1.05rem; }
.story-phrase {
  margin-top: 28px !important;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem !important;
  color: var(--blush-deep) !important;
}

.story-visual .img-placeholder.elegant-plate {
  position: relative;
  gap: 22px;
}
.story-visual .img-placeholder.elegant-plate::before {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(63,46,36,0.18);
  border-radius: calc(var(--radius-lg) - 10px);
}
.story-visual .img-placeholder.elegant-plate svg {
  width: 30px;
  height: 30px;
  opacity: 0.55;
  color: var(--blush-deep);
}
.story-visual .img-placeholder.elegant-plate .ph-label {
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.6;
  color: var(--espresso-soft);
}

/* ============ Founder ============ */

.founder-wrap {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .founder-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
}

.founder-visual {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.founder-visual img { width: 100%; height: 100%; object-fit: cover; }

.founder-copy p { margin-bottom: 18px; font-weight: 300; color: var(--espresso-soft); font-size: 1.03rem; }
.founder-copy h2.section-title {
  font-family: var(--font-founder-heading);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.founder-signature {
  font-family: var(--font-founder-signature);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  color: var(--blush-deep);
  margin-top: 8px;
}

/* ============ Find Us / Events ============ */

.event-card {
  background: var(--ivory);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.events-grid {
  display: grid;
  gap: 22px;
}
@media (min-width: 700px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }

.event-date-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 58px; height: 58px;
  background: var(--blush-soft);
  border-radius: var(--radius-sm);
  color: var(--espresso);
}
.event-date-badge .em { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.05em; }
.event-date-badge .ed { font-family: var(--font-display); font-size: 1.3rem; line-height: 1; }

.event-card h4 { font-size: 1.2rem; }
.event-meta { font-size: 0.9rem; color: var(--espresso-soft); display: flex; flex-direction: column; gap: 4px; }
.event-desc { font-size: 0.92rem; color: var(--espresso-soft); font-weight: 300; }
.event-actions { margin-top: 6px; }

.empty-state {
  text-align: center;
  padding: 64px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin: 0 auto;
}
.empty-state svg { width: 40px; height: 40px; color: var(--blush-deep); margin-bottom: 18px; }
.empty-state p { color: var(--espresso-soft); font-weight: 300; font-size: 1.05rem; }

/* ============ Booking ============ */

.booking-wrap {
  display: grid;
  gap: 48px;
}
@media (min-width: 1000px) {
  .booking-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
}

.booking-intro p { margin-top: 18px; font-weight: 300; color: var(--espresso-soft); }

.booking-uses {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 10px;
}
.booking-uses li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--espresso-soft);
}
.booking-uses li svg { width: 16px; height: 16px; color: var(--blush-deep); flex-shrink: 0; }

.booking-note {
  margin-top: 30px;
  padding: 20px 22px;
  background: var(--blush-soft);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--espresso-soft);
  font-weight: 300;
}

.form-card {
  background: var(--ivory);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
}
@media (min-width: 700px) { .form-card { padding: 44px 44px; } }

.form-row {
  display: grid;
  gap: 18px;
}
@media (min-width: 600px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
}

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--espresso);
  transition: border-color 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blush-deep);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 50px 20px;
}
.form-success.show { display: block; }
.form-success svg { width: 46px; height: 46px; color: var(--blush-deep); margin-bottom: 18px; }
.form-success h3 { margin-bottom: 10px; }
.form-success p { color: var(--espresso-soft); font-weight: 300; }

/* ============ Gallery ============ */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: var(--space-lg);
}
.filter-btn {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--brown-line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  transition: all 0.25s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--espresso);
  color: var(--ivory);
  border-color: var(--espresso);
}

.gallery-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item .gi-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ivory);
  background: linear-gradient(0deg, rgba(63,46,36,0.7), transparent);
}

.gallery-item.wide { grid-column: span 2; }

.gallery-item { position: relative; }
.gallery-item .img-placeholder { position: absolute; inset: 0; }

.gallery-item.coming-soon {
  grid-column: 1 / -1;
  aspect-ratio: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 44px 24px;
  background: var(--cream);
  text-align: center;
}
.gallery-item.coming-soon:hover img { transform: none; }
.gallery-item.coming-soon svg { width: 24px; height: 24px; color: var(--blush-deep); opacity: 0.7; }
.gallery-item.coming-soon .gi-category { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown-mid); }
.gallery-item.coming-soon p { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--espresso-soft); margin: 0; }

/* ============ Contact ============ */

.contact-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }

.contact-card {
  background: var(--ivory);
  border: 1px solid var(--brown-line);
  border-radius: var(--radius-md);
  padding: 30px 28px;
}
.contact-card .c-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blush-soft);
  color: var(--blush-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.contact-card .c-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 1.1rem; margin-bottom: 6px; }
.contact-card p { font-size: 0.92rem; color: var(--espresso-soft); font-weight: 300; }
.contact-card a.c-link { display: inline-block; margin-top: 10px; font-size: 0.85rem; font-weight: 600; color: var(--blush-deep); }

.contact-details {
  margin-top: var(--space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.contact-email {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--espresso);
}
.social-row { display: flex; gap: 14px; margin-top: 6px; }
.social-pill {
  padding: 10px 20px;
  border: 1px solid var(--brown-line);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--espresso-soft);
  transition: color 0.2s ease, border-color 0.2s ease;
}
a.social-pill:hover {
  color: var(--blush-deep);
  border-color: var(--blush-deep);
}

/* ============ Newsletter ============ */

.newsletter-section {
  background: var(--espresso);
  color: var(--ivory);
  padding: var(--space-xl) 0;
  text-align: center;
}
.newsletter-section .eyebrow { color: var(--blush); }
.newsletter-section .eyebrow::before { background: var(--blush); }
.newsletter-section h2 { color: var(--ivory); }
.newsletter-section p { color: rgba(251,247,241,0.75); font-weight: 300; margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 420px;
  margin: 32px auto 0;
}
@media (min-width: 560px) {
  .newsletter-form { flex-direction: row; }
}
.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border-radius: 100px;
  border: 1px solid rgba(251,247,241,0.25);
  background: rgba(251,247,241,0.06);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.newsletter-form input::placeholder { color: rgba(251,247,241,0.5); }
.newsletter-form input:focus { outline: none; border-color: var(--blush); }
.newsletter-form .btn { flex-shrink: 0; }

.newsletter-success {
  display: none;
  margin-top: 20px;
  color: var(--blush);
  font-size: 0.95rem;
}
.newsletter-success.show { display: block; }

/* ============ Footer ============ */

.site-footer {
  background: var(--cream);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-top {
  display: grid;
  gap: 40px;
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--brown-line);
}
@media (min-width: 800px) {
  .footer-top { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
}

.footer-brand .logo-img { height: 58px; margin-bottom: 14px; }
.footer-brand p { color: var(--espresso-soft); font-weight: 300; font-size: 0.95rem; max-width: 260px; }
.footer-phrase { margin-top: 10px !important; font-style: italic; font-family: var(--font-display); color: var(--blush-deep) !important; font-size: 1.05rem !important; }
.footer-service-area { margin-top: 10px !important; font-size: 0.78rem !important; letter-spacing: 0.04em; color: var(--brown-mid) !important; }

.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a { color: var(--espresso-soft); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--blush-deep); }

.footer-bottom {
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: var(--brown-mid);
}
@media (min-width: 700px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom a { color: var(--brown-mid); text-decoration: underline; text-underline-offset: 2px; transition: color 0.2s ease; }
.footer-bottom a:hover { color: var(--blush-deep); }

/* ============ Legal content (Privacy Policy) ============ */

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}
.legal-content .legal-updated {
  font-size: 0.85rem;
  color: var(--brown-mid);
  margin-bottom: 8px;
}
.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 44px;
  margin-bottom: 14px;
}
.legal-content h2:first-of-type { margin-top: 36px; }
.legal-content p {
  color: var(--espresso-soft);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 14px;
}
.legal-content ul {
  margin-top: 14px;
  padding-left: 22px;
  color: var(--espresso-soft);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
}
.legal-content li { margin-bottom: 6px; }
.legal-content .legal-contact {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--brown-line);
}
.legal-content .legal-contact p { margin-top: 4px; }

/* ============ Reveal animation on scroll ============ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ Page hero shared (menu, gallery, etc) ============ */

.page-hero {
  padding: 150px 0 70px;
  text-align: center;
}
@media (min-width: 900px) { .page-hero { padding: 190px 0 90px; } }

.page-hero .eyebrow { justify-content: center; margin: 0 auto 14px; }
.page-hero p.lede { margin: 20px auto 0; }

/* Utility */
.text-center { text-align: center; }
.mt-lg { margin-top: var(--space-lg); }
