:root {
  --accent: #cc3b3b;
  --accent-dark: #a52e2e;
  --accent-light: #e99292;
  --accent-tint: #f6e6e6;
  --dark: #1a1310;
  --dark-2: #251c17;
  --dark-3: #332821;
  --light: #f5f0ea;
  --light-2: #ebe4dc;
  --white: #ffffff;
  --text: #2a2018;
  --text-muted: #6b5d52;
  --border: #d8cec3;
  --max: 1180px;
  --nav-h: 62px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--light);
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 180ms ease;
}

a:hover { color: var(--accent-dark); }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--dark);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-3);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-right: auto;
  color: var(--white);
  flex-shrink: 0;
}

.wordmark:hover { color: var(--white); }

.wm-main {
  font-weight: 900;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wm-sub {
  font-weight: 400;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-light);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--light-2);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 200ms ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid var(--dark-3);
  padding: 8px 0;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  color: var(--light-2);
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--dark-3);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile a:hover { color: var(--white); background: var(--dark-3); }

.nav-mobile .mobile-cta {
  margin: 12px 24px 8px;
  justify-content: center;
  border-bottom: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 28px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  min-height: 44px;
  text-align: center;
}

.btn-filled {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-filled:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-large {
  padding: 16px 36px;
  font-size: 15px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 42px - var(--nav-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(26, 19, 16, 0.35) 0%,
    rgba(26, 19, 16, 0.55) 50%,
    rgba(26, 19, 16, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--light);
  background: rgba(204, 59, 59, 0.85);
  padding: 6px 14px;
  margin-bottom: 20px;
  border: 1px solid rgba(233, 146, 146, 0.3);
}

.hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--light-2);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--accent);
  padding: 14px 24px;
  text-align: center;
}

.trust-line {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== SECTION SHARED ===== */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
  padding: 0 24px;
}

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}

.eyebrow-light {
  color: var(--accent-light);
}

.section-head h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
}

/* ===== SERVICES ===== */
.services {
  background: var(--light);
  padding: 100px 0;
}

.service-row {
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.service-row:last-child { margin-bottom: 0; }

.service-row.reverse .service-text {
  order: 2;
}

.service-row.reverse .service-visual {
  order: 1;
}

.service-text h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  margin-bottom: 16px;
}

.service-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 440px;
}

.service-detail {
  font-size: 14px;
  font-style: italic;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-tags li {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 12px;
}

.service-visual img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-visual-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  padding: 20px;
}

.service-visual-svg svg {
  width: 100%;
  max-width: 460px;
  height: auto;
}

/* ===== PROOF ===== */
.proof {
  background: var(--white);
  padding: 100px 0;
}

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.proof-item {
  position: relative;
  overflow: hidden;
}

.proof-item img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.proof-item figcaption {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 12px;
  text-align: center;
}

.proof-quote {
  max-width: 800px;
  margin: 64px auto 0;
  padding: 0 24px;
  text-align: center;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--dark);
}

/* ===== ABOUT ===== */
.about {
  background: var(--light);
  padding: 100px 0;
}

.about-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text .eyebrow {
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 520px;
}

.about-signoff {
  font-style: italic;
  color: var(--accent) !important;
  font-weight: 500;
  margin-top: 24px !important;
}

.about-visual {
  display: flex;
  justify-content: center;
}

.about-visual img {
  max-width: 280px;
  height: auto;
}

/* ===== EVENTS ===== */
.events-band {
  background: var(--accent);
  padding: 80px 0;
}

.events-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.events-band h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin-bottom: 40px;
}

.events-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: left;
}

.event-item {
  padding: 20px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-item:last-child { border-right: none; }

.event-date {
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}

.event-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}

.event-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.018) 28px, rgba(255,255,255,0.018) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 56px, rgba(255,255,255,0.018) 56px, rgba(255,255,255,0.018) 58px);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-sub {
  color: var(--light-2);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.cta-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  border-top: 1px solid var(--dark-3);
  padding-top: 40px;
}

.info-block h4 {
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}

.info-block p {
  color: var(--light-2);
  font-size: 14px;
  line-height: 1.6;
}

.info-block a {
  color: var(--light-2);
}

.info-block a:hover {
  color: var(--accent-light);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  padding: 64px 0 0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .wm-main {
  color: var(--white);
  font-size: 18px;
}

.footer-brand .wm-sub {
  color: var(--accent-light);
  font-size: 12px;
}

.footer-tag {
  color: var(--light-2);
  font-size: 14px;
  margin-top: 12px;
  font-style: italic;
}

.footer-col h4 {
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.footer-col ul li {
  color: var(--light-2);
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.5;
}

.footer-col ul li a {
  color: var(--light-2);
}

.footer-col ul li a:hover {
  color: var(--accent-light);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-row a {
  color: var(--light-2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--dark-3);
  transition: border-color 200ms ease, color 200ms ease;
}

.social-row a:hover {
  color: var(--accent-light);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid var(--dark-3);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===== SCROLL REVEAL ===== */
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

/* ===== ANCHOR OFFSET ===== */
section[id] {
  scroll-margin-top: calc(42px + var(--nav-h) + 16px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {