:root {
  /* Dark, warm, dimly-lit palette pulled from the fridge photo */
  --bg: #1b1613;          /* deep warm charcoal — darkest */
  --bg-2: #211b17;        /* alternate section */
  --panel: #2a231e;       /* cards */
  --panel-2: #332a23;     /* raised / hover */
  --edge: rgba(240, 233, 221, 0.10);
  --edge-strong: rgba(240, 233, 221, 0.18);

  --forest: #2f5e34;
  --forest-deep: #234a28;
  --green: #6fae54;
  --green-bright: #8fce72;
  --sage: #a9c6a0;

  --amber: #e0b074;       /* warm ambient light / gold accent */
  --amber-soft: rgba(224, 176, 116, 0.16);
  --brown: #8a6444;
  --brown-soft: #b08a64;

  --cream: #f1eadd;       /* (kept for safety) */
  --text: #ece4d6;        /* primary text */
  --text-soft: #b6ab98;   /* muted text */
  --paper: #fffdf8;       /* white pill behind the logo only */

  --shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.75);
  --radius: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Fraunces", Georgia, serif; line-height: 1.05; letter-spacing: -0.01em; color: var(--text); }

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

section { padding: 96px 7vw; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.eyebrow-dark { color: var(--green-bright); }

/* ---------- Brand wordmark ---------- */
.brand-mark {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.brand-mark span { color: var(--green-bright); }
.brand-mark.small { font-size: 1.35rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7vw;
  background: rgba(27, 22, 19, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--edge);
}
.brand { text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  text-decoration: none;
  color: var(--text-soft);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--green);
  color: #14110e !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover { background: var(--green-bright); transform: translateY(-1px); box-shadow: 0 0 22px rgba(143, 206, 114, 0.3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-primary {
  background: var(--green);
  color: #14110e;
  box-shadow: 0 16px 34px -14px rgba(111, 174, 84, 0.7);
}
.btn-primary:hover { background: var(--green-bright); transform: translateY(-2px); box-shadow: 0 18px 40px -14px rgba(143, 206, 114, 0.8); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--edge-strong);
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber); background: rgba(224, 176, 116, 0.06); }

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 110px;
  /* warm pools of light, like the wall sconces in the photo */
  background:
    radial-gradient(80% 75% at 88% 12%, rgba(224, 176, 116, 0.18) 0%, rgba(224, 176, 116, 0) 55%),
    radial-gradient(70% 70% at 6% 92%, rgba(47, 94, 52, 0.16) 0%, rgba(47, 94, 52, 0) 60%),
    var(--bg);
}
.hero-copy h1 { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 600; color: var(--text); }
.hero-copy h1 em { font-style: italic; color: var(--green-bright); font-weight: 500; }
.lede { font-size: 1.18rem; color: var(--text-soft); max-width: 30ch; margin: 26px 0 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  font-size: 0.86rem;
  color: var(--text-soft);
  font-weight: 500;
}
.hero-trust i { width: 4px; height: 4px; border-radius: 50%; background: var(--amber); }

.hero-art { position: relative; }
.hero-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--edge);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Value props ---------- */
.props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  background: var(--bg-2);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}
.prop {
  padding: 26px 24px;
  border-radius: 18px;
  background: var(--panel);
  border: 1px solid var(--edge);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.prop:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -28px rgba(0,0,0,0.8); border-color: rgba(143, 206, 114, 0.35); }
.prop-ic { font-size: 1.7rem; margin-bottom: 12px; }
.prop h3 { font-size: 1.18rem; color: var(--green-bright); margin-bottom: 8px; font-weight: 600; }
.prop p { font-size: 0.95rem; color: var(--text-soft); }

/* ---------- Section heads ---------- */
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); font-weight: 600; }
.section-head p { font-size: 1.1rem; color: var(--text-soft); margin-top: 14px; }

/* ---------- How it works ---------- */
.how { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.step {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 20px;
  padding: 36px 30px;
  position: relative;
}
.step-n {
  font-family: "Fraunces", serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--amber);
  display: block;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 10px; font-weight: 600; }
.step p { color: var(--text-soft); }

/* ---------- For venues ---------- */
.venues {
  position: relative;
  background:
    radial-gradient(60% 80% at 90% 10%, rgba(224, 176, 116, 0.14), transparent 60%),
    linear-gradient(160deg, #284e2c 0%, #1a3520 100%);
  color: var(--text);
}
.venues .eyebrow { color: var(--amber); }
.venues h2 { color: var(--text); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
.venues-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.venues-copy > p { color: rgba(236, 228, 214, 0.82); font-size: 1.12rem; margin: 18px 0 26px; }
.venue-list { list-style: none; margin-bottom: 34px; }
.venue-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: rgba(236, 228, 214, 0.9);
  border-bottom: 1px solid rgba(236, 228, 214, 0.1);
}
.venue-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 700;
}
.venue-list strong { color: var(--text); }

.venues-card {
  background: rgba(20, 16, 13, 0.4);
  border: 1px solid rgba(236, 228, 214, 0.14);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(6px);
}
.vc-stat { padding: 16px 0; border-bottom: 1px solid rgba(236, 228, 214, 0.12); }
.vc-stat strong { display: block; font-family: "Fraunces", serif; font-size: 2rem; color: var(--text); font-weight: 600; }
.vc-stat span { font-size: 0.9rem; color: var(--sage); }
.vc-logo {
  margin-top: 22px;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px;
}
.vc-logo img { width: 100%; max-width: 180px; margin: 0 auto; }

/* ---------- Contact ---------- */
.contact { background: var(--bg-2); }
.contact-form { max-width: 640px; margin: 0 auto; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block;
  margin-bottom: 18px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 16px;
  border: 1.5px solid var(--edge-strong);
  border-radius: 12px;
  background: var(--panel);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(182, 171, 152, 0.55); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-bright);
  background: var(--panel-2);
}
.contact-form .btn { margin-top: 6px; }
.form-note { margin-top: 16px; font-size: 0.85rem; color: var(--brown-soft); text-transform: none; letter-spacing: normal; font-weight: 500; }
.form-note.ok { color: var(--green-bright); }

/* ---------- Footer ---------- */
.footer {
  background: #14100d;
  color: var(--text);
  padding: 56px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--edge);
}
.footer-brand img {
  width: 150px;
  background: var(--paper);
  border-radius: 16px;
  padding: 12px;
}
.footer-meta { text-align: right; }
.footer-meta .brand-mark { color: var(--text); }
.footer-meta .brand-mark span { color: var(--green-bright); }
.footer-meta p { color: var(--text-soft); }
.footer-meta .muted { color: rgba(182, 171, 152, 0.5); font-size: 0.85rem; margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  section { padding: 64px 6vw; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding-bottom: 80px; }
  .lede { max-width: none; }
  .props { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .venues-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 540px) {
  .props { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}
