/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #f5f0e8;
  --surface:     #ede8de;
  --border:      #d4cdc0;
  --accent:      #b8722e;
  --accent-l:    #c8894a;
  --text:        #1a1612;
  --muted:       #5a5048;
  --max:         1200px;
  --gap:         clamp(2rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }

em { font-style: italic; color: var(--accent); }

p { color: var(--muted); max-width: 62ch; }

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

/* ── Layout Helpers ──────────────────────────────────────── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
.section { padding: clamp(5rem, 10vw, 10rem) 0; }
.section-sm { padding: clamp(3rem, 6vw, 6rem) 0; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1.5rem;
}

.rule {
  width: 4rem;
  height: 1px;
  background: var(--accent);
  display: block;
  margin: 2rem 0;
}

/* ── Navigation ──────────────────────────────────────────── */

/* Hamburger */

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-l); }

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(184,114,46,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(184,114,46,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 { margin-bottom: 1.8rem; }

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  letter-spacing: 0.06em;
  line-height: 1.9;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 3rem;
}

.hero-monogram {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(12rem, 22vw, 28rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184,114,46,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── Cards / Pillars ─────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; }

@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 900px) and (min-width: 769px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

.pillar {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-left: 1px solid var(--border);
  transition: border-color 0.3s;
}
.pillar:hover { border-color: var(--accent); }
.pillar:first-child { border-left: none; }

.pillar-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 2rem;
}

.pillar h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.pillar p { font-size: 0.9rem; line-height: 1.8; }

/* ── Quote Block ─────────────────────────────────────────── */
.quote-block {
  border-left: 2px solid var(--accent);
  padding: 2.5rem 3rem;
  background: var(--surface);
}

.quote-block blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Full-width CTA band ─────────────────────────────────── */
.cta-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) 0;
}
.cta-band h2 { margin-bottom: 1.5rem; }
.cta-band p { margin: 0 auto 3rem; text-align: center; }

/* ── Inner page hero (shorter) ───────────────────────────── */
.page-hero {
  padding-top: calc(70px + clamp(4rem, 8vw, 8rem));
  padding-bottom: clamp(4rem, 8vw, 8rem);
  border-bottom: 1px solid var(--border);
}

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── Number sections ─────────────────────────────────────── */
.numbered-section {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 3rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--border);
}
.numbered-section:last-child { border-bottom: none; }

.ns-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
  padding-top: 0.1em;
  min-width: 3.5rem;
}

.ns-content h3 { margin-bottom: 1rem; }

/* ── Offering cards ──────────────────────────────────────── */
.offering-card {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
.offering-card:hover { border-bottom-color: var(--accent); }
.offering-card .sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.offering-card h3 { margin-bottom: 0.75rem; }

/* ── Brewing table ───────────────────────────────────────── */
.brew-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
}
.brew-table th {
  text-align: left;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--accent);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.brew-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: top;
  line-height: 1.6;
}
.brew-table tr:hover td { background: var(--surface); }
.brew-table td:first-child { color: var(--text); font-weight: 500; }
.brew-table .notes { color: var(--muted); font-size: 0.65rem; letter-spacing: 0.03em; }
@media (max-width: 700px) {
  .brew-table { display: none; }
  .brew-cards { display: flex !important; }
}
.brew-cards {
  display: none;
  flex-direction: column;
  gap: 1px;
}
.brew-card {
  background: var(--surface);
  padding: 1.5rem;
}
.brew-card-method {
  font-size: 1rem;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text);
  margin-bottom: 1rem;
}
.brew-card-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  padding: 0.4rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
}
.brew-card-label { color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; }
.brew-card-val { color: var(--muted); }
.brew-card-notes {
  margin-top: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  cursor: pointer;
  gap: 2rem;
}
.faq-q-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text);
}
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform 0.3s;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a.open {
  max-height: 400px;
  padding-bottom: 1.8rem;
}
.faq-a p { font-size: 0.9rem; }

/* ── Journal ─────────────────────────────────────────────── */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
}
@media (max-width: 700px) { .journal-grid { grid-template-columns: 1fr; } }

.journal-card {
  background: var(--surface);
  padding: clamp(2rem, 4vw, 3rem);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
  cursor: pointer;
}
.journal-card:hover { border-bottom-color: var(--accent); }
.journal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.journal-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.journal-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 0.2rem 0.6rem;
}
.journal-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.journal-card p { font-size: 0.85rem; }

/* ── Story body text ─────────────────────────────────────── */
.story-body p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 72ch;
}

/* ── Contact form ────────────────────────────────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.9rem 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field textarea { resize: vertical; min-height: 140px; }

/* ── Contact info block ──────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-info-row {}
.contact-info-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.contact-info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem 4rem;
  align-items: start;
  margin-bottom: 4rem;
}
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0;
  max-width: none;
}

.footer-
@media (max-width: 700px) { .footer- }

.footer-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

.footer-legal {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  max-width: none;
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilities ───────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.gap-strip { height: 1px; background: var(--border); }

/* ── Two-col layout ──────────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ── Principle cards ─────────────────────────────────────── */
.principle-card {
  padding: clamp(2rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.principle-card:hover { border-color: var(--accent); }
.principle-card h4 { margin-bottom: 1rem; color: var(--accent); }
.principle-card p { font-size: 0.9rem; }

/* ── Image placeholder ───────────────────────────────────── */
.img-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
