:root {
  --green: #0f3b2d;
  --green-dark: #08291f;
  --green-mid: #15533d;
  --red: #9f1f2f;
  --red-deep: #711724;
  --gold: #d5ad62;
  --gold-soft: #ead9af;
  --cream: #f6f0e4;
  --paper: #fffdf8;
  --ink: #171915;
  --muted: #5f665e;
  --line: rgba(15, 59, 45, .14);
  --shadow: 0 22px 70px rgba(31, 37, 29, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
svg { display: block; width: 100%; height: 100%; }

.page-shell { min-height: 100vh; }
.container { width: calc(100% - 40px); max-width: var(--container); margin: 0 auto; }
.section-pad { padding: 108px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(255, 253, 248, .83);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 59, 45, .08);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 248, .95);
  box-shadow: 0 10px 40px rgba(20, 25, 18, .08);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 44px; height: 44px; color: var(--green); }
.brand-copy { display: grid; line-height: .95; letter-spacing: .04em; text-transform: uppercase; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.15rem; font-weight: 800; color: var(--green); }
.brand-copy span { font-size: .72rem; letter-spacing: .18em; color: var(--red); margin-top: 6px; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .92rem; font-weight: 650; color: #273029; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px; background: var(--red); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.nav-cta { padding: 12px 18px !important; background: var(--green); color: white; border-radius: 999px; box-shadow: 0 10px 25px rgba(15,59,45,.2); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line); border-radius: 12px; background: white; cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: var(--green); margin: 4px auto; transition: .25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding-top: 170px;
  background:
    radial-gradient(circle at 14% 13%, rgba(213,173,98,.22), transparent 30%),
    radial-gradient(circle at 82% 15%, rgba(159,31,47,.11), transparent 25%),
    linear-gradient(145deg, #fffdf8 0%, #f4eedf 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(15,59,45,.032) 1px, transparent 1px), linear-gradient(90deg, rgba(15,59,45,.032) 1px, transparent 1px);
  background-size: 32px 32px; mask-image: linear-gradient(to bottom, black, transparent 80%);
  pointer-events: none;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: .77rem; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(4.2rem, 8vw, 7.6rem); line-height: .82; letter-spacing: -.06em; color: var(--green-dark); text-transform: uppercase; }
.hero h1 span { display: block; color: var(--red); font-style: italic; font-weight: 500; font-size: .78em; letter-spacing: -.04em; }
.hero-lead { max-width: 700px; margin: 32px 0 18px; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.5; color: #394139; }
.hero-signature { display: inline-flex; align-items: center; gap: 8px; margin-top: 6px; padding: 10px 14px; border-left: 3px solid var(--gold); font-family: Georgia, "Times New Roman", serif; color: var(--green); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 54px; padding: 0 22px; border-radius: 999px; font-weight: 780; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: white; box-shadow: 0 15px 36px rgba(15,59,45,.23); }
.btn-primary:hover { box-shadow: 0 18px 44px rgba(15,59,45,.3); }
.btn-ghost { border: 1px solid rgba(15,59,45,.24); background: rgba(255,255,255,.6); color: var(--green); }
.btn-light { background: #fff8ea; color: var(--green-dark); box-shadow: 0 16px 40px rgba(0,0,0,.17); }
.btn.wide { width: 100%; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.main-card { position: relative; width: min(100%, 450px); aspect-ratio: .87; border-radius: 44px; overflow: hidden; padding: 50px 38px; background: linear-gradient(155deg, var(--green) 0%, #092b21 65%, #081f18 100%); color: white; box-shadow: 0 40px 80px rgba(8,41,31,.27); border: 1px solid rgba(255,255,255,.16); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.main-card::after { content: ""; position: absolute; inset: 18px; border-radius: 30px; border: 1px solid rgba(234,217,175,.35); pointer-events: none; }
.sunburst { position: absolute; inset: -30%; background: repeating-conic-gradient(from 0deg, rgba(255,255,255,.055) 0deg 6deg, transparent 6deg 12deg); animation: spin 35s linear infinite; }
.sombrero-icon { position: relative; z-index: 1; width: 210px; height: 140px; color: var(--gold-soft); }
.visual-title { position: relative; z-index: 1; margin-top: 5px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; letter-spacing: .04em; line-height: 1.1; }
.visual-title strong { color: var(--gold-soft); font-size: 1.24em; }
.main-card p { position: relative; z-index: 1; margin: 22px 0 0; color: rgba(255,255,255,.72); text-transform: uppercase; letter-spacing: .13em; font-size: .72rem; }
.mini-card { position: absolute; z-index: 2; padding: 14px 20px; border-radius: 999px; background: rgba(255,253,248,.92); color: var(--green); border: 1px solid rgba(15,59,45,.1); box-shadow: 0 16px 38px rgba(31,37,29,.13); font-family: Georgia, "Times New Roman", serif; font-style: italic; }
.mini-top { top: 26px; right: -4px; transform: rotate(5deg); }
.mini-bottom { bottom: 38px; left: -16px; transform: rotate(-6deg); }
.hero-ornament { position: absolute; width: 270px; height: 270px; border: 1px solid rgba(159,31,47,.12); border-radius: 50%; }
.hero-ornament::before, .hero-ornament::after { content: ""; position: absolute; inset: 28px; border: 1px dashed rgba(15,59,45,.11); border-radius: 50%; }
.hero-ornament::after { inset: 58px; }
.ornament-left { left: -140px; bottom: 130px; }
.ornament-right { right: -170px; top: 130px; }
.hero-marquee { position: absolute; inset: auto 0 0; overflow: hidden; background: var(--red); color: #fff7e7; border-top: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.15); }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 15px 0; font-family: Georgia, "Times New Roman", serif; text-transform: uppercase; letter-spacing: .08em; animation: marquee 26s linear infinite; }
.marquee-track i { color: var(--gold-soft); font-style: normal; }

.split-intro { display: grid; grid-template-columns: .92fr 1.08fr; gap: 72px; align-items: start; }
.section-heading h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.03; letter-spacing: -.035em; color: var(--green-dark); }
.section-heading.centered { max-width: 850px; margin: 0 auto 56px; text-align: center; }
.section-heading.centered > p:last-child { color: var(--muted); line-height: 1.7; margin: 22px auto 0; max-width: 720px; }
.intro-main { margin: 0 0 28px; font-size: 1.4rem; line-height: 1.6; color: #333b34; }
.quote-card { position: relative; padding: 36px 36px 36px 68px; border-radius: var(--radius-lg); background: var(--cream); border: 1px solid var(--line); box-shadow: var(--shadow); }
.quote-card p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; line-height: 1.5; color: var(--green); }
.quote-mark { position: absolute; left: 24px; top: 20px; font-family: Georgia, serif; font-size: 4rem; color: var(--gold); line-height: 1; }

.events { background: #f1ebdf; }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card { position: relative; min-height: 350px; padding: 36px; border-radius: var(--radius-xl); background: rgba(255,253,248,.88); border: 1px solid rgba(15,59,45,.1); overflow: hidden; transition: transform .28s ease, box-shadow .28s ease; }
.event-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.event-card.featured { background: var(--green); color: white; }
.event-number { position: absolute; top: 24px; right: 26px; font-family: Georgia, serif; font-size: 3rem; color: rgba(15,59,45,.1); }
.featured .event-number { color: rgba(255,255,255,.12); }
.event-icon { width: 62px; height: 62px; color: var(--red); }
.featured .event-icon { color: var(--gold-soft); }
.event-card h3 { margin: 88px 0 14px; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; color: var(--green-dark); }
.featured h3 { color: white; }
.event-card p { margin: 0; color: var(--muted); line-height: 1.7; font-size: 1.02rem; }
.featured p { color: rgba(255,255,255,.72); }

.statement { position: relative; overflow: hidden; background: var(--red-deep); color: white; }
.statement::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 20%, rgba(213,173,98,.22), transparent 28%), repeating-linear-gradient(135deg, transparent 0 28px, rgba(255,255,255,.025) 28px 29px); }
.statement-inner { position: relative; z-index: 1; max-width: 940px; text-align: center; }
.statement-kicker { margin-bottom: 24px; color: var(--gold-soft); text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 800; }
.statement h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.7rem, 5.6vw, 5.5rem); line-height: 1.02; letter-spacing: -.045em; }
.statement p { margin: 26px 0 34px; font-size: 1.25rem; color: rgba(255,255,255,.8); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-card, .contact-art { min-height: 500px; border-radius: var(--radius-xl); }
.contact-card { padding: 52px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: center; }
.contact-card h2 { margin: 0 0 22px; font-family: Georgia, serif; font-size: clamp(2.7rem, 5vw, 4.6rem); color: var(--green-dark); line-height: 1; }
.phone-display { display: inline-block; width: max-content; margin: 8px 0 24px; font-size: clamp(2rem, 4vw, 3.35rem); font-weight: 900; letter-spacing: -.04em; color: var(--red); }
.contact-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.7; font-size: 1.06rem; margin: 0 0 28px; }
.contact-art { position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(145deg, #123f31, #071e18); color: white; }
.rings { position: absolute; border: 1px solid rgba(234,217,175,.22); border-radius: 50%; }
.ring-one { width: 500px; height: 500px; }
.ring-two { width: 340px; height: 340px; border-style: dashed; animation: spin 32s linear infinite reverse; }
.monogram { position: relative; z-index: 1; width: 180px; height: 180px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(234,217,175,.5); font-family: Georgia, serif; font-size: 4rem; color: var(--gold-soft); }
.contact-slogan { position: absolute; z-index: 2; bottom: 40px; left: 40px; right: 40px; font-family: Georgia, serif; font-size: 1.35rem; color: rgba(255,255,255,.75); }
.contact-slogan strong { color: white; }

.social { background: var(--cream); }
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.social-card { min-height: 240px; padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.74); border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.social-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); background: white; }
.social-badge { width: max-content; padding: 8px 11px; border-radius: 999px; background: var(--green); color: white; font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }
.social-card strong { font-family: Georgia, serif; font-size: 1.7rem; color: var(--green-dark); }
.social-link { color: var(--red); font-weight: 800; }

.final-cta { background: var(--green-dark); color: white; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: end; }
.final-cta h2 { margin: 0; max-width: 840px; font-family: Georgia, serif; font-size: clamp(2.3rem, 5vw, 4.7rem); line-height: 1.03; }
.final-cta p { margin: 22px 0 0; color: rgba(255,255,255,.72); font-size: 1.15rem; }
.eyebrow.light { color: var(--gold-soft); }

.site-footer { padding: 72px 0 28px; background: #071a15; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 50px; padding-bottom: 44px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand .brand-copy strong, .footer-brand .brand-copy span { color: white; }
.footer-grid p { max-width: 450px; color: rgba(255,255,255,.58); line-height: 1.7; }
.footer-grid h3 { margin: 0 0 16px; color: var(--gold-soft); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid a { color: rgba(255,255,255,.82); }
.footer-links { display: grid; gap: 10px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.48); font-size: .9rem; }

.floating-call { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 8px; min-height: 48px; padding: 0 18px; border-radius: 999px; background: var(--red); color: white; box-shadow: 0 18px 36px rgba(113,23,36,.3); font-weight: 800; }

.reveal { opacity: 1; transform: none; }
.reveal.animate-ready { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.animate-ready.visible { opacity: 1; transform: translateY(0); }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; z-index: 101; padding: 120px 28px 40px; background: rgba(255,253,248,.98); display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 8px; transform: translateX(100%); transition: transform .3s ease; font-size: 1.25rem; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .nav-cta { margin-top: 12px; text-align: center; border-bottom: 0 !important; }
  .hero { padding-top: 150px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 460px; }
  .main-card { width: min(100%, 440px); }
  .split-intro { grid-template-columns: 1fr; gap: 34px; }
  .event-grid { grid-template-columns: 1fr; }
  .event-card { min-height: 270px; }
  .event-card h3 { margin-top: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card, .contact-art { min-height: 430px; }
  .social-grid { grid-template-columns: 1fr; }
  .social-card { min-height: 190px; }
  .final-cta-inner { grid-template-columns: 1fr; align-items: start; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 28px); max-width: var(--container); }
  .nav-wrap { min-height: 72px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy span { font-size: .64rem; }
  .section-pad { padding: 72px 0; }
  .hero { padding-top: 124px; padding-bottom: 94px; }
  .hero h1 { font-size: clamp(3.35rem, 16vw, 5rem); }
  .hero-lead { margin-top: 24px; font-size: 1.08rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; padding-inline: 16px; text-align: center; }
  .hero-visual { min-height: 390px; }
  .main-card { width: 100%; max-width: 360px; border-radius: 32px; padding: 40px 24px; }
  .sombrero-icon { width: 170px; height: 120px; }
  .visual-title { font-size: 1.55rem; }
  .mini-card { font-size: .9rem; padding: 10px 14px; }
  .mini-top { right: 0; }
  .mini-bottom { left: 0; }
  .section-heading h2 { font-size: clamp(2.2rem, 11vw, 3.3rem); }
  .quote-card { padding: 30px 24px 30px 52px; }
  .quote-card p { font-size: 1.25rem; }
  .event-card { padding: 28px; border-radius: 26px; }
  .statement h2 { font-size: clamp(2.35rem, 11vw, 3.8rem); }
  .contact-card { padding: 34px 24px; }
  .contact-art { min-height: 360px; }
  .ring-one { width: 390px; height: 390px; }
  .ring-two { width: 260px; height: 260px; }
  .monogram { width: 140px; height: 140px; font-size: 3rem; }
  .contact-slogan { left: 28px; right: 28px; bottom: 28px; font-size: 1.05rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .floating-call { right: 14px; bottom: 14px; }
  .floating-call span:last-child { display: none; }
  .floating-call { width: 52px; height: 52px; padding: 0; justify-content: center; font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.animate-ready { opacity: 1; transform: none; }
}
