/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --brown:      #402110;
  --orange:     #F2A444;
  --cream:      #F2E2C4;
  --red:        #D94D1A;
  --light-org:  #FFB467;
  --dark-red:   #A62D12;
  --bg-light:   #fdf8f3;
  --border:     #e8d8c4;
  --text:       #1a0a04;
  --text-muted: #5a3a2a;
  --white:      #ffffff;
  --radius:     1rem;
  --shadow:     0 4px 24px rgba(64,33,16,.12);
  --shadow-lg:  0 8px 40px rgba(64,33,16,.18);
  --transition: .3s ease;
  --nav-h:      80px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ─────────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-serif); line-height: 1.2; }
h1 { font-size: clamp(2.4rem,5vw,4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
p  { color: var(--text-muted); }

.eyebrow {
  font-size: .75rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: .6rem;
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.text-center { text-align: center; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-top: .5rem; }
.bg-light  { background: var(--bg-light); }
.bg-cream  { background: var(--cream); }
.bg-brown  { background: var(--brown); }

/* ── Fade-in ─────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--red); color: #fff;
  font-weight: 600; padding: .75rem 2rem; border-radius: .5rem;
  transition: background var(--transition), transform .2s;
}
.btn-primary:hover { background: var(--dark-red); transform: translateY(-1px); }
.btn-secondary {
  display: inline-block; color: var(--brown); font-weight: 600;
  border: 2px solid var(--brown); padding: .7rem 1.8rem; border-radius: .5rem;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: var(--brown); color: var(--cream); }
.btn-outline {
  display: inline-block; color: var(--cream); font-weight: 600;
  border: 2px solid rgba(242,226,196,.5); padding: .75rem 2rem; border-radius: .5rem;
  transition: background var(--transition), border-color var(--transition);
}
.btn-outline:hover { background: rgba(242,226,196,.15); border-color: var(--cream); }
.btn-lg  { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }
.btn-nav {
  display: none; background: var(--red); color: #fff; font-weight: 600;
  padding: .55rem 1.4rem; border-radius: .5rem; font-size: .9rem;
  transition: background var(--transition);
}
.btn-nav:hover { background: var(--dark-red); }

/* ── Navigation ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 20px rgba(64,33,16,.12); border-color: var(--border); }
.header-spacer { height: var(--nav-h); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 1.5rem; max-width: 1280px; margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: .75rem; }
.nav-logo-icon { font-size: 1.6rem; }
.nav-logo-name { display: block; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--brown); line-height: 1.1; }
.nav-logo-sub  { display: block; font-size: .6rem; letter-spacing: .15em; color: var(--orange); font-weight: 600; }

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-link { font-size: .88rem; font-weight: 500; color: var(--text-muted); transition: color var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--orange); }

.nav-hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 2px; background: var(--brown);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column; background: var(--white);
  border-top: 1px solid var(--border); padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(64,33,16,.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: .6rem 0; font-weight: 500; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.nav-mobile a:last-of-type { border-bottom: none; }

@media (min-width: 768px) {
  .nav-links   { display: flex; }
  .btn-nav     { display: inline-block; }
  .nav-hamburger { display: none; }
  .nav-mobile  { display: none !important; }
}

/* ── Hero — Video ────────────────────────────────────────────────── */
.hero-video { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-video-bg { position: absolute; inset: 0; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,10,4,.85) 0%,rgba(26,10,4,.5) 100%); }
.hero-video-content { position: relative; z-index: 1; padding: 4rem 0; }
.hero-video-content .eyebrow { color: var(--orange); }
.hero-title { font-size: clamp(2.8rem,6vw,5rem); font-weight: 700; color: #fff; margin: .5rem 0 1.2rem; line-height: 1.1; }
.hero-title em { font-style: italic; color: var(--orange); }
.hero-sub  { font-size: 1.15rem; color: rgba(242,226,196,.85); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.hero-badges  { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-badges span { background: rgba(255,255,255,.1); border: 1px solid rgba(242,226,196,.3); color: var(--cream); font-size: .8rem; padding: .35rem .85rem; border-radius: 999px; }

/* ── Hero — Plain (brown bg) ─────────────────────────────────────── */
.hero-plain { background: var(--brown); padding: 5rem 0; }
.hero-plain .eyebrow { color: var(--orange); }
.hero-plain h1 { color: #fff; margin-top: .5rem; }
.hero-plain .hero-sub { color: rgba(242,226,196,.8); margin-top: 1rem; font-size: 1.1rem; }

/* ── Hero — Image BG ─────────────────────────────────────────────── */
.hero-img { position: relative; padding: 7rem 0; overflow: hidden; background-size: cover; background-position: center; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom,rgba(26,10,4,.85),rgba(26,10,4,.6),rgba(26,10,4,.8)); }
.hero-img-content { position: relative; z-index: 1; }
.hero-img-content .eyebrow { color: var(--orange); }
.hero-img-content h1 { color: #fff; margin-top: .5rem; }

/* ── Features Grid ───────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
.feature-card  { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; box-shadow: var(--shadow); transition: box-shadow var(--transition), transform var(--transition); }
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon  { font-size: 2.5rem; margin-bottom: 1rem; }
.feature-card h3 { color: var(--brown); margin-bottom: .5rem; }
@media (min-width: 640px)  { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4,1fr); } }

/* ── Event Types Grid ────────────────────────────────────────────── */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-top: 1rem; }
.event-type-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.75rem; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
}
.event-type-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--orange); }
.event-type-arrow { position: absolute; top: 1.25rem; right: 1.25rem; font-size: 1.2rem; color: var(--orange); transition: transform var(--transition); }
.event-type-card:hover .event-type-arrow { transform: translateX(4px); }
.event-type-card h3 { color: var(--brown); margin-bottom: .4rem; font-size: 1.1rem; }
.event-type-card p  { font-size: .9rem; }
@media (min-width: 640px)  { .events-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .events-grid { grid-template-columns: repeat(3,1fr); } }

/* ── Photo Strip ─────────────────────────────────────────────────── */
.photo-strip { display: grid; grid-template-columns: repeat(2,1fr); height: 320px; }
.photo-strip-item { overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-strip-item:hover img { transform: scale(1.06); }
@media (min-width: 768px) { .photo-strip { grid-template-columns: repeat(4,1fr); height: 420px; } }

/* ── Stats ───────────────────────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; padding: 1rem 0; }
.stat-item  { text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: 3rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-label  { font-size: .85rem; color: rgba(242,226,196,.7); margin-top: .4rem; }
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

/* ── Two-column ──────────────────────────────────────────────────── */
.two-col { display: flex; flex-direction: column; gap: 3rem; align-items: center; }
.two-col-img { flex: 1; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; }
.two-col-content { flex: 1; }
.two-col-content h2 { margin: .5rem 0 1rem; color: var(--brown); }
.two-col-content p  { color: var(--text-muted); }
@media (min-width: 900px) {
  .two-col         { flex-direction: row; gap: 4rem; }
  .two-col-reverse { flex-direction: row-reverse; }
}

/* ── Values Grid ─────────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.value-card  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); }
.value-icon  { font-size: 2rem; margin-bottom: .8rem; }
.value-card h3 { color: var(--brown); margin-bottom: .5rem; }
@media (min-width: 640px)  { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4,1fr); } }

/* ── Coffee Strip ────────────────────────────────────────────────── */
.coffee-strip { display: grid; grid-template-columns: repeat(2,1fr); gap: .75rem; margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; }
.coffee-strip img { width: 100%; height: 220px; object-fit: cover; }
@media (min-width: 768px) { .coffee-strip { grid-template-columns: repeat(4,1fr); } .coffee-strip img { height: 300px; } }

/* ── Event Cards (Event Catering page) ───────────────────────────── */
.event-card { display: flex; flex-direction: column; gap: 2rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 2.5rem; }
.event-card-img { flex: 1; min-height: 260px; overflow: hidden; }
.event-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.event-card:hover .event-card-img img { transform: scale(1.04); }
.event-card-content { flex: 1; padding: 2.5rem; }
.event-card-content h2 { color: var(--brown); margin-bottom: .75rem; }
.check-list { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.check-list li { color: var(--text-muted); font-size: .9rem; padding-left: 1.25rem; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
@media (min-width: 900px) { .event-card { flex-direction: row; } .event-card-img { max-width: 420px; min-height: 340px; } }
.event-card:nth-child(even) { flex-direction: column; }
@media (min-width: 900px) { .event-card:nth-child(even) { flex-direction: row-reverse; } }

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery-filter-bar { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: var(--nav-h); z-index: 100; padding: 1rem 0; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.filter-btn {
  padding: .45rem 1.1rem; border-radius: 999px; font-size: .85rem; font-weight: 500;
  background: var(--bg-light); color: var(--text-muted); border: 1px solid var(--border);
  transition: background var(--transition), color var(--transition);
}
.filter-btn:hover { background: var(--cream); }
.filter-btn.active { background: var(--brown); color: var(--cream); border-color: var(--brown); }

.gallery-grid { columns: 1; gap: 1rem; }
.gallery-item { break-inside: avoid; border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; cursor: pointer; position: relative; group: 1; box-shadow: var(--shadow); transition: box-shadow var(--transition); }
.gallery-item:hover { box-shadow: var(--shadow-lg); }
.gallery-item img, .gallery-item video { width: 100%; display: block; transition: transform .5s; }
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.04); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(64,33,16,0); transition: background var(--transition); display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { background: rgba(64,33,16,.3); }
.gallery-item-label { font-weight: 600; font-size: .85rem; color: #fff; background: rgba(64,33,16,.6); padding: .35rem .85rem; border-radius: .5rem; opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover .gallery-item-label { opacity: 1; }
.gallery-play-badge { position: absolute; top: .75rem; right: .75rem; background: rgba(64,33,16,.7); border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--orange); }
@media (min-width: 640px)  { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }

/* ── Lightbox ────────────────────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9000; align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.open { display: flex; }
.lightbox-close { position: absolute; top: 1rem; right: 1rem; font-size: 1.75rem; color: #fff; line-height: 1; transition: color var(--transition); z-index: 1; }
.lightbox-close:hover { color: var(--orange); }
.lightbox-inner { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.lightbox-media { max-height: 90vh; max-width: 90vw; object-fit: contain; border-radius: .75rem; box-shadow: 0 0 60px rgba(0,0,0,.6); }

/* ── FAQ ─────────────────────────────────────────────────────────── */
.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 1.5rem; font-weight: 600; font-size: 1rem; color: var(--brown); gap: 1rem; text-align: left; }
.faq-question:hover { background: var(--bg-light); }
.faq-icon { flex-shrink: 0; font-size: 1.4rem; color: var(--orange); line-height: 1; transition: transform .3s; }
.faq-answer { padding: 0 1.5rem 1.5rem; }
.faq-answer p { color: var(--text-muted); line-height: 1.7; }

/* ── Contact Options (FAQ) ───────────────────────────────────────── */
.contact-options { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 1.5rem; }
.contact-option-card { display: flex; flex-direction: column; align-items: center; gap: .35rem; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.75rem 2rem; box-shadow: var(--shadow); min-width: 180px; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.contact-option-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--orange); }
.contact-option-icon { font-size: 2rem; }
.contact-option-card strong { color: var(--brown); font-size: 1rem; }
.contact-option-card span { color: var(--text-muted); font-size: .9rem; }

/* ── Contact Page ────────────────────────────────────────────────── */
.contact-layout { display: flex; flex-direction: column; gap: 3rem; }
@media (min-width: 900px) { .contact-layout { flex-direction: row; } .contact-info { flex: 0 0 320px; } .contact-form-wrap { flex: 1; } }

.contact-info h2 { color: var(--brown); margin-bottom: .5rem; }
.info-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-card div { display: flex; flex-direction: column; gap: .15rem; }
.info-card strong { color: var(--brown); font-size: .9rem; font-weight: 600; }
.info-card a, .info-card span { color: var(--text-muted); font-size: .9rem; }
.info-card a:hover { color: var(--orange); }
.response-note { margin-top: 1.25rem; font-size: .85rem; color: var(--text-muted); background: var(--bg-light); border: 1px solid var(--border); border-radius: .5rem; padding: .85rem 1rem; }

.contact-form-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 600px) { .form-row { flex-direction: row; } .form-row .form-group { flex: 1; } }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--brown); }
.required { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .75rem 1rem; font-size: .95rem; font-family: inherit;
  border: 1px solid var(--border); border-radius: .5rem; color: var(--text);
  background: var(--bg-light); transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,164,68,.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; padding: .85rem 1rem; border-radius: .5rem; font-size: .9rem; }
.form-success { text-align: center; padding: 3rem 2rem; }
.success-icon { font-size: 3rem; color: #16a34a; margin-bottom: 1rem; }
.form-success h3 { color: var(--brown); font-size: 1.5rem; margin-bottom: .5rem; }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: var(--brown); padding: 5rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand { grid-column: 1; }
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.footer-logo-icon { font-size: 1.8rem; }
.footer-logo-name { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--cream); line-height: 1.1; }
.footer-logo-sub  { font-size: .6rem; letter-spacing: .15em; color: var(--orange); font-weight: 600; }
.footer-tagline { color: rgba(242,226,196,.7); font-size: .9rem; margin-bottom: 1.5rem; }
.footer-contact-block { display: flex; flex-direction: column; gap: .4rem; }
.footer-contact-link { font-size: .9rem; color: rgba(242,226,196,.75); }
a.footer-contact-link:hover { color: var(--orange); }
.footer-heading { font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .9rem; color: rgba(242,226,196,.7); transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(242,226,196,.15); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { color: rgba(242,226,196,.4); font-size: .85rem; }
@media (min-width: 640px)  { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

/* ── CTA Section ─────────────────────────────────────────────────── */
.cta-section { background: var(--brown); padding: 5rem 0; }

/* ── Gallery Empty State ─────────────────────────────────────────── */
.gallery-empty-notice {
  text-align: center; padding: 4rem 2rem; max-width: 480px; margin: 0 auto;
  background: var(--white); border: 2px dashed var(--border); border-radius: var(--radius);
}
.gallery-empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.gallery-empty-notice h3 { color: var(--brown); margin-bottom: .5rem; }
.gallery-empty-notice p  { color: var(--text-muted); }

/* ── Prose (generic pages) ───────────────────────────────────────── */
.prose p { margin-bottom: 1rem; }
.prose h2, .prose h3 { color: var(--brown); margin: 2rem 0 .75rem; }
