/* ═══════════════════════════════════════════════
   A&G Wedding — Shared Stylesheet
   Black · Gold · Cream  |  Option C multi-page
   ═══════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8CC82;
  --gold-pale: #F5EDD0;
  --black: #0A0A0A;
  --dark: #141414;
  --mid: #1E1E1E;
  --card-bg: #181818;
  --border: rgba(201,168,76,0.25);
  --text: #F0EDE4;
  --text-muted: #9A9080;
  --cream: #F5EDD0;
  --success: #4CAF87;
  --warn: #E8A44A;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--black);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex; align-items: center; gap: 0;
  height: 64px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-right: auto;
}
.nav-logo { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.nav-title { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 0; }
.nav-link {
  color: var(--text-muted); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.5px;
  padding: 0 16px; height: 64px; display: flex; align-items: center;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-transform: uppercase;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  margin-left: 16px;
  background: var(--gold); color: var(--black);
  padding: 8px 18px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-decoration: none; text-transform: uppercase;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Mobile nav */
.nav-toggle { display: none; background: none; border: none; color: var(--gold); font-size: 22px; cursor: pointer; margin-left: auto; }
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); flex-direction: column; border-bottom: 1px solid var(--border); }
  .nav-links.open { display: flex; }
  .nav-link { height: 48px; padding: 0 24px; border-bottom: 1px solid var(--border); border-left: none; }
  .nav-link.active { border-left: 3px solid var(--gold); border-bottom-color: var(--border); }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav { position: relative; }
}

/* ── PAGE CHROME ── */
.page-hero {
  background: linear-gradient(160deg, var(--dark) 0%, #0E0C08 100%);
  padding: 64px 24px 48px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 100%, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.page-eyebrow {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px; font-weight: 500;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 300; color: var(--cream);
  line-height: 1.15; margin-bottom: 16px;
}
.page-title em { color: var(--gold); font-style: italic; }
.page-subtitle { font-size: 15px; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ── CONTENT WRAPPER ── */
.wrap { max-width: 960px; margin: 0 auto; padding: 48px 24px; }
.wrap-wide { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }

/* ── SECTION ── */
.section { margin-bottom: 56px; }
.section-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px; font-weight: 500;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--cream);
  margin-bottom: 8px;
}
.section-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.cards-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(201,168,76,0.5); transform: translateY(-2px); }
.card-gold { border-color: var(--gold); }
.card-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; font-weight: 500; }
.card-title { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--cream); margin-bottom: 8px; line-height: 1.2; }
.card-price { font-size: 28px; font-weight: 600; color: var(--gold); margin: 12px 0 4px; }
.card-price-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.card-body { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── FEATURE LIST ── */
.feat-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-muted); }
.feat-list li .ico { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.feat-list li .ico.yes { color: var(--success); }
.feat-list li .ico.warn { color: var(--warn); }
.feat-list li .ico.no { color: #E05A5A; }

/* ── BADGE / TAG ── */
.badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.5px; text-transform: uppercase;
}
.badge-gold { background: rgba(201,168,76,0.15); color: var(--gold); border: 1px solid rgba(201,168,76,0.3); }
.badge-green { background: rgba(76,175,135,0.15); color: var(--success); border: 1px solid rgba(76,175,135,0.3); }
.badge-amber { background: rgba(232,164,74,0.15); color: var(--warn); border: 1px solid rgba(232,164,74,0.3); }
.badge-red { background: rgba(224,90,90,0.15); color: #E05A5A; border: 1px solid rgba(224,90,90,0.3); }
.badge-dim { background: rgba(255,255,255,0.06); color: var(--text-muted); }

/* ── INFO BOX ── */
.info-box {
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 13px; color: var(--text-muted); line-height: 1.7;
  margin: 20px 0;
}
.info-box strong { color: var(--gold); }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 40px 0; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  text-align: center;
  font-size: 13px; color: var(--text-muted);
}
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--gold); margin-bottom: 8px; }

/* ── FORM ── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; letter-spacing: 0.3px; }
.form-label .req { color: var(--gold); }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--mid); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 11px 14px;
  font-family: 'Jost', sans-serif; font-size: 14px; color: var(--text);
  transition: border-color 0.2s;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.form-select option { background: var(--dark); }
.form-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.radio-group, .check-group { display: flex; flex-direction: column; gap: 8px; }
.radio-opt, .check-opt {
  display: flex; align-items: flex-start; gap: 10px;
  cursor: pointer; font-size: 14px; color: var(--text);
}
.radio-opt input, .check-opt input { margin-top: 3px; accent-color: var(--gold); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: 'Jost', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  cursor: pointer; border: none; transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-outline:hover { background: rgba(201,168,76,0.1); }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; }
