@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --ivory: #FAF8F3;
  --ivory-dim: #F0ECE1;
  --ink: #1B1815;
  --ink-soft: #4A443C;
  --charcoal: #15130F;
  --charcoal-soft: #23201A;
  --gold: #B08D3E;
  --gold-bright: #C9A24C;
  --gold-cream: #E4D9BE;
  --line: rgba(27, 24, 21, 0.12);
  --line-dark: rgba(228, 217, 190, 0.18);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  color: var(--ink);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; max-width: 62ch; }

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

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

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

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
}

.brand img { height: 30px; width: auto; }

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
}

.nav-links a { position: relative; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 10px 22px;
  border-radius: 2px;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }

/* ---------- Hero ---------- */
.hero {
  background: var(--charcoal);
  color: var(--ivory);
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  padding-top: 88px;
  padding-bottom: 88px;
  min-height: 640px;
}

.hero-eyebrow {
  color: var(--gold-bright);
  font-size: 14px;
  margin-bottom: 22px;
  font-weight: 500;
}

.hero h1 {
  font-size: 52px;
  color: var(--ivory);
  margin-bottom: 26px;
}

.hero p.lead {
  font-size: 19px;
  color: var(--gold-cream);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; align-items: center; }

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s ease;
}
.btn-gold:hover { background: var(--gold-bright); }

.btn-ghost {
  color: var(--gold-cream);
  font-size: 15px;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 3px;
}
.btn-ghost:hover { border-color: var(--gold-cream); }

.hero-media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1000 / 1310;
  background: var(--charcoal-soft);
  animation: fadeIn 1.1s ease both;
}
.hero-media img { width: 100%; height: 100%; object-fit: contain; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(21,19,15,0) 55%, rgba(21,19,15,0.55) 100%);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- City strip ---------- */
.city-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ivory-dim);
}
.city-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  font-size: 14px;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: 10px;
}
.city-strip .cities { display: flex; gap: 28px; font-family: 'Fraunces', serif; font-size: 16px; color: var(--ink); }

/* ---------- Sections ---------- */
section { padding: 96px 0; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: 38px; margin-bottom: 16px; }
.section-head p { color: var(--ink-soft); font-size: 17px; }

.kicker {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  display: block;
}

/* Alternating feature rows instead of identical cards */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row.reverse .feature-media { order: 2; }
.feature-row.reverse .feature-text { order: 1; }

.feature-media {
  aspect-ratio: 5/4;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ivory-dim);
}
.feature-media img { width: 100%; height: 100%; object-fit: cover; }
.feature-media--graphic svg { width: 100%; height: 100%; }
.feature-media--product {
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.feature-media--product img { width: 100%; height: 100%; object-fit: contain; }
.feature-media--screen {
  background: var(--charcoal);
  aspect-ratio: 900 / 598;
}
.feature-media--screen img { width: 100%; height: 100%; object-fit: cover; }

.feature-text h3 { font-size: 28px; margin-bottom: 16px; }
.feature-text p { color: var(--ink-soft); margin-bottom: 20px; }
.feature-text .stat {
  display: inline-block;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--gold);
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 6px;
}

/* Process list */
.process { background: var(--charcoal); color: var(--ivory); }
.process .section-head h2, .process .section-head p { color: var(--ivory); }
.process .section-head p { color: var(--gold-cream); }

.process-list { display: grid; gap: 0; }
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line-dark);
}
.process-list .process-item:last-child { border-bottom: 1px solid var(--line-dark); }
.process-num { font-family: 'Fraunces', serif; font-size: 34px; color: var(--gold-bright); }
.process-item h3 { font-size: 22px; margin-bottom: 8px; color: var(--ivory); }
.process-item p { color: var(--gold-cream); margin: 0; }

/* CTA band */
.cta-band {
  background: var(--gold);
  color: var(--charcoal);
}
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 64px 32px;
}
.cta-band h2 { font-size: 32px; max-width: 480px; margin-bottom: 16px; }
.cta-band .btn-dark {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 16px 30px;
  border-radius: 2px;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}
.contact-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--charcoal);
  flex-wrap: wrap;
}
.contact-links a { border-bottom: 1px solid rgba(21,19,15,0.3); padding-bottom: 2px; }
.contact-links a:hover { border-color: var(--charcoal); }
.contact-links .divider { opacity: 0.5; }
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: none !important;
}
.cta-band .social-icon { color: var(--charcoal); }
footer .social-icon { color: var(--gold-cream); }
footer .social-icon:hover { color: var(--ivory); }

/* Footer */
footer {
  background: var(--charcoal);
  color: var(--gold-cream);
  padding: 56px 0 32px;
  font-size: 14px;
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
footer .brand { color: var(--ivory); }
footer a:hover { color: var(--ivory); }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { font-family: 'Work Sans', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin: 0 0 14px; font-weight: 600; }
.footer-col a { display: block; margin-bottom: 10px; color: var(--gold-cream); }
.footer-bottom {
  border-top: 1px solid var(--line-dark);
  margin-top: 48px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(228,217,190,0.6);
}

/* ---------- Sub-page hero (lighter, for service/location pages) ---------- */
.page-hero {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 72px 0 64px;
}
.page-hero .kicker { color: var(--gold-bright); }
.page-hero h1 { font-size: 46px; color: var(--ivory); max-width: 18ch; margin-bottom: 18px; }
.page-hero p.lead { color: var(--gold-cream); font-size: 18px; max-width: 52ch; }
.page-hero .hero-actions { margin-top: 30px; }

/* ---------- Spec grid ---------- */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 8px;
}
.spec-item { background: var(--ivory); padding: 28px 24px; }
.spec-item .num { font-family: 'Fraunces', serif; font-size: 30px; color: var(--gold); display: block; margin-bottom: 6px; }
.spec-item .label { font-size: 14px; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.faq-item { border-top: 1px solid var(--line); padding-top: 20px; }
.faq-item h3 { font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 16px; margin-bottom: 10px; }
.faq-item p { color: var(--ink-soft); font-size: 15px; margin: 0; }

/* ---------- Venue type tags ---------- */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 2px;
  background: var(--ivory);
}
.tag--dark {
  border-color: var(--line-dark);
  color: var(--gold-cream);
  background: transparent;
}

/* ---------- Form ---------- */
.split-form {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.form-field { margin-bottom: 20px; }
.form-field label { display: block; font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  padding: 13px 14px;
  font-family: 'Work Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  padding: 15px 30px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  cursor: pointer;
  font-family: 'Work Sans', sans-serif;
}
.form-submit:hover { background: #2a2620; }

/* ---------- Simple stat row ---------- */
.stat-row { display: flex; gap: 48px; margin-top: 8px; flex-wrap: wrap; }
.stat-row .stat-block .num { font-family: 'Fraunces', serif; font-size: 34px; color: var(--gold); display: block; }
.stat-row .stat-block .label { font-size: 14px; color: var(--ink-soft); }


@media (max-width: 860px) {
  .hero .wrap { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; min-height: unset; }
  .hero-media { order: -1; aspect-ratio: 16/10; }
  .hero h1 { font-size: 38px; }
  .nav-links { display: none; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-media, .feature-row.reverse .feature-text { order: unset; }
  .process-item { grid-template-columns: 50px 1fr; }
  section { padding: 64px 0; }
  .cta-band .wrap { padding: 48px 24px; }
  .page-hero h1 { font-size: 36px; }
  .split-form { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { gap: 28px; }
}
