@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&family=Italiana&display=swap');

:root {
  --white:      #ffffff;
  --off-white:  #f5f3ef;
  --light:      #eeebe5;
  --charcoal:   #1e2530;
  --dark:       #141920;
  --ink:        #1a2230;
  --gold:       #c9a96e;
  --gold-lt:    #e0c48a;
  --gold-dk:    #a07840;
  --text:       #1a2230;
  --muted:      rgba(26,34,48,.58);
  --border:     rgba(26,34,48,.10);
  --border-lt:  rgba(255,255,255,.12);

  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --display: "Italiana", Georgia, serif;

  --max:  1200px;
  --pad:  clamp(20px, 4vw, 60px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--off-white); color: var(--text); font-family: var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
}

/* ── SECTIONS ── */
.section { padding: clamp(64px, 8vw, 120px) 0; }
.section.white    { background: var(--white); }
.section.light    { background: var(--light); }
.section.dark     { background: var(--dark); color: var(--white); }
.section.charcoal { background: var(--charcoal); color: var(--white); }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--ink);
  margin: 0;
  line-height: .95;
}
.section-title.white { color: var(--white); }

.p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
}
.p.light { color: rgba(255,255,255,.68); }

.gold-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}
.gold-rule.center { margin: 20px auto; }

.section-header { margin-bottom: clamp(40px, 6vw, 72px); }
.section-header.center { text-align: center; }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background: var(--dark);
  z-index: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(.55) saturate(.8);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,25,32,.95) 0%,
    rgba(20,25,32,.5) 40%,
    rgba(20,25,32,.2) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--pad) clamp(60px, 8vw, 100px);
  width: 100%;
  max-width: calc(var(--max) + 2 * var(--pad));
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201,169,110,.4);
  padding: 7px 16px;
  margin-bottom: 28px;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(48px, 9vw, 120px);
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--white);
  margin: 0 0 24px;
  line-height: .92;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: .8;
}

.hero-address {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  margin: 0 0 10px;
}

.hero-event {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(11px, 1.4vw, 13px);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: var(--pad);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── STATS GRID ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

.stat-item {
  background: var(--white);
  padding: clamp(24px, 4vw, 44px) clamp(16px, 2.5vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-icon {
  width: 28px;
  height: 28px;
  margin-bottom: 4px;
  color: var(--gold-dk);
}
.stat-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.stat-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.stat-value {
  font-family: var(--serif);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }

.about-price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  padding: clamp(32px, 5vw, 56px);
  position: sticky;
  top: 40px;
}
.price-label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin: 0 0 8px;
}
.price-value {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin: 0;
  line-height: 1;
}
.price-detail {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  font-family: var(--sans);
  font-size: 13px;
}
.price-detail:last-child { border-bottom: none; }
.price-detail span:first-child {
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  flex-shrink: 0;
}
.price-detail span:last-child {
  font-weight: 300;
  color: rgba(255,255,255,.8);
  text-align: right;
}

/* ── EVENT GRID ── */
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  overflow: hidden;
}
@media (max-width: 800px) { .event-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .event-grid { grid-template-columns: 1fr; } }

.event-card {
  background: var(--white);
  padding: clamp(28px, 4vw, 48px) clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.event-icon {
  width: 26px;
  height: 26px;
  color: var(--gold-dk);
}
.event-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
}
.event-card-title {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  line-height: 1;
}
.event-card-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(12px, 1.4vw, 14px);
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* ── PROGRAMME ── */
.programme-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
@media (max-width: 700px) { .programme-inner { grid-template-columns: 1fr; } }

.schedule { border-top: 1px solid var(--border-lt); }
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-lt);
}
.schedule-time {
  font-family: var(--sans);
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
  min-width: 72px;
}
.schedule-event {
  font-family: var(--serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  color: var(--white);
  text-align: right;
}

/* ── RSVP ── */
.rsvp-wrap { max-width: 820px; margin: 0 auto; }
.rsvp-head { margin-bottom: clamp(32px, 5vw, 52px); }
.rsvp-sub {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  margin: 12px 0 0;
}
.rsvp-sub strong { font-weight: 500; color: var(--gold-dk); }

.rsvp-form { display: grid; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dk);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(26,34,48,.28); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.form-group select option { background: var(--white); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 90px; }

.radio-group { display: flex; gap: 22px; align-items: center; padding: 12px 0; flex-wrap: wrap; }
.radio-label {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  color: var(--text); cursor: pointer;
}
.radio-label input[type="radio"] { width: 17px; height: 17px; accent-color: var(--gold-dk); }

.form-submit { margin-top: 10px; }
.btn-rsvp {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  background: var(--charcoal);
  color: var(--white);
  border: none;
  padding: 18px 56px;
  cursor: pointer;
  transition: background .2s, transform .15s;
}
.btn-rsvp:hover { background: var(--dark); transform: translateY(-1px); }
.btn-rsvp:active { transform: translateY(0); }

.rsvp-success { padding: 40px 0; }
.success-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--ink);
  margin: 0 0 12px;
}

/* ── FAQ ── */
.qa .qa-wrap { width: min(840px, 100%); margin: 0 auto; }
.qa .question {
  font-family: var(--serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  font-style: italic;
  margin: 44px 0 10px;
  color: var(--ink);
}
.qa .answer {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
  color: var(--muted);
}

/* ── AGENT ── */
.agent-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.15);
  padding: clamp(32px, 5vw, 60px);
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 640px) { .agent-card { grid-template-columns: 1fr; } }

.agent-photo-wrap { flex-shrink: 0; }
.agent-photo {
  width: clamp(120px, 18vw, 200px);
  height: clamp(120px, 18vw, 200px);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,169,110,.35);
}
.agent-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.agent-name {
  font-family: var(--display);
  font-size: clamp(26px, 4vw, 48px);
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1;
}
.agent-title {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 4px;
}
.agent-details { display: grid; gap: 8px; margin-top: 16px; }
.agent-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,.65);
}
.agent-detail strong {
  font-weight: 500;
  color: rgba(255,255,255,.85);
  min-width: 52px;
}
.agent-social { display: flex; gap: 10px; margin-top: 18px; }
.icon {
  width: 34px; height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.25);
  transition: background .2s, border-color .2s;
}
.icon:hover { background: rgba(201,169,110,.18); border-color: rgba(201,169,110,.55); }
.icon svg { width: 16px; height: 16px; fill: var(--gold-lt); opacity: .9; }

/* ── FOOTER ── */
.footerbar {
  background: var(--dark);
  color: rgba(255,255,255,.45);
  font-family: var(--sans);
  font-size: 11px;
  border-top: 1px solid rgba(201,169,110,.12);
}
.footerbar .inner {
  width: min(var(--max), calc(100% - 2 * var(--pad)));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footerbar a { color: rgba(255,255,255,.38); margin-right: 18px; }
.footerbar a:hover { color: var(--gold-lt); }
.pill {
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: .06em;
  color: var(--gold-lt);
}