/* Packages page stylesheet — nav/footer/eyebrow/section-header shared via theme.css */
@import url('/css/theme.css');

/* ── Nav (packages page has links, home does not) ── */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 48px; display: flex; align-items: center; background: rgba(245, 240, 232, 0.92); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(200, 151, 58, 0.15); }
.nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav-brand { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: #0F1B2D; text-decoration: none; letter-spacing: 0.01em; }
.nav-links { display: flex; gap: 32px; }
.nav-link { font-size: 13px; font-weight: 500; color: #4A5568; text-decoration: none; letter-spacing: 0.04em; transition: color 0.15s; }
.nav-link:hover { color: #0F1B2D; }
.nav-link--active { color: #C8973A; }

/* ── Hero ── */
.packages-hero { padding: 140px 48px 80px; background: #F5F0E8; text-align: center; }
.packages-hero-inner { max-width: 760px; margin: 0 auto; }
.packages-hero-eyebrow { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.packages-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(40px, 5vw, 64px); font-weight: 600; color: #0F1B2D; line-height: 1.1; margin-bottom: 28px; }
.packages-sub { font-size: 17px; color: #4A5568; line-height: 1.7; max-width: 580px; margin: 0 auto; }

/* ── Pricing bar ── */
.pricing-bar { background: #0F1B2D; padding: 20px 48px; }
.pricing-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 16px; }
.pricing-bar-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245, 240, 232, 0.45); }
.pricing-bar-value { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #C8973A; }
.pricing-bar-note { font-size: 12px; color: rgba(245, 240, 232, 0.45); }

/* ── Packages grid ── */
.packages-grid-section { background: #F5F0E8; padding: 80px 48px; }
.packages-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2px; align-items: start; }
.pkg-card--gold { background: #F5F0E8; border: 1.5px solid #C8973A; padding: 40px; display: flex; flex-direction: column; }
.pkg-card--navy { background: #0F1B2D; border: 1.5px solid #1A2D45; padding: 40px; display: flex; flex-direction: column; }
.pkg-card--cream { background: #EDE6D6; border: 1.5px solid rgba(15, 27, 45, 0.15); padding: 40px; display: flex; flex-direction: column; }
.pkg-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #C8973A; margin-bottom: 16px; }
.pkg-card--navy .pkg-tag { color: #DDB55A; }
.pkg-name { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; color: #0F1B2D; margin-bottom: 8px; line-height: 1.1; }
.pkg-card--navy .pkg-name { color: #F5F0E8; }
.pkg-tagline { font-size: 14px; color: #4A5568; line-height: 1.5; margin-bottom: 28px; font-style: italic; }
.pkg-card--navy .pkg-tagline { color: rgba(245, 240, 232, 0.55); }
.pkg-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(15, 27, 45, 0.1); }
.pkg-card--navy .pkg-price-row { border-bottom-color: rgba(245, 240, 232, 0.1); }
.pkg-price { font-family: 'Cormorant Garamond', serif; font-size: 40px; font-weight: 600; color: #C8973A; }
.pkg-card--navy .pkg-price { color: #F5F0E8; }
.pkg-price-note { font-size: 12px; color: #8A96A0; }
.pkg-card--navy .pkg-price-note { color: rgba(245, 240, 232, 0.4); }
.pkg-deliverables { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pkg-deliverable { display: flex; gap: 12px; font-size: 14px; color: #4A5568; line-height: 1.55; }
.pkg-card--navy .pkg-deliverable { color: rgba(245, 240, 232, 0.7); }
.pkg-check { flex-shrink: 0; margin-top: 2px; }
.pkg-footer { margin-top: auto; }
.pkg-cta { display: block; text-align: center; padding: 14px 20px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: 1.5px solid #C8973A; color: #C8973A; transition: background 0.15s, color 0.15s; cursor: pointer; }
.pkg-cta:hover { background: #C8973A; color: #F5F0E8; }
.pkg-cta--navy { border-color: #C8973A; background: #C8973A; color: #0F1B2D; }
.pkg-cta--navy:hover { background: #DDB55A; border-color: #DDB55A; color: #0F1B2D; }
.pkg-cta--cream { border-color: #0F1B2D; color: #0F1B2D; }
.pkg-cta--cream:hover { background: #0F1B2D; color: #F5F0E8; }
.pkg-cta-note { font-size: 11px; color: #8A96A0; text-align: center; margin-top: 10px; }
.pkg-card--navy .pkg-cta-note { color: rgba(245, 240, 232, 0.35); }

/* ── How it works ── */
.how-it-works { background: #0F1B2D; padding: 100px 48px; color: #F5F0E8; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-header { margin-bottom: 64px; }
.section-eyebrow { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #C8973A; margin-bottom: 20px; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 48px); color: #F5F0E8; line-height: 1.18; }
.hiw-grid { display: grid; grid-template-columns: 1fr 1fr; }
.hiw-step { padding: 40px 48px 40px 0; border-bottom: 1px solid rgba(255,255,255,0.07); border-right: 1px solid rgba(255,255,255,0.07); }
.hiw-step:nth-child(even) { border-right: none; padding-right: 0; padding-left: 48px; }
.hiw-step:nth-last-child(-n+2) { border-bottom: none; }
.hiw-num { font-family: 'Cormorant Garamond', serif; font-size: 13px; font-weight: 500; color: #C8973A; letter-spacing: 0.06em; display: block; margin-bottom: 16px; }
.hiw-step h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #F5F0E8; margin-bottom: 12px; }
.hiw-step p { font-size: 14px; color: rgba(245, 240, 232, 0.6); line-height: 1.65; }

/* ── FAQ ── */
.faq-section { background: #EDE6D6; padding: 100px 48px; }
.faq-inner { max-width: 1200px; margin: 0 auto; }
.faq-list { display: grid; grid-template-columns: 1fr 1fr; }
.faq-item { padding: 36px 48px 36px 0; border-bottom: 1px solid rgba(15, 27, 45, 0.1); }
.faq-item:nth-child(even) { padding-right: 0; padding-left: 48px; }
.faq-item:nth-last-child(-n+2) { border-bottom: none; }
.faq-q { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: #0F1B2D; margin-bottom: 12px; }
.faq-a { font-size: 14px; color: #4A5568; line-height: 1.65; }

/* ── Bottom CTA ── */
.packages-cta { background: #F5F0E8; padding: 100px 48px 120px; text-align: center; }
.packages-cta-inner { max-width: 640px; margin: 0 auto; }
.closing-rule { width: 48px; height: 2px; background: #C8973A; margin: 0 auto 48px; }
.packages-cta-headline { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px); font-weight: 600; color: #0F1B2D; margin-bottom: 20px; }
.packages-cta-body { font-size: 17px; color: #4A5568; line-height: 1.65; margin-bottom: 40px; }
.packages-cta-btn { display: inline-block; padding: 16px 40px; background: #0F1B2D; color: #F5F0E8; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; transition: background 0.15s; }
.packages-cta-btn:hover { background: #1A2D45; }

/* ── Footer (packages page needs standalone rules since @import doesn't cascade) ── */
.footer { background: #0F1B2D; padding: 40px 48px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 600; color: #F5F0E8; display: block; }
.footer-tagline { display: block; font-size: 12px; color: rgba(245, 240, 232, 0.45); margin-top: 4px; }
.footer-meta { font-size: 12px; color: rgba(245, 240, 232, 0.4); letter-spacing: 0.04em; display: flex; align-items: center; gap: 10px; }
.footer-link { color: rgba(245, 240, 232, 0.5); text-decoration: none; transition: color 0.15s; }
.footer-link:hover { color: #F5F0E8; }
.footer-sep { opacity: 0.4; }

/* ── Modal ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 27, 45, 0.72);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }

.modal-panel {
  background: #F5F0E8;
  border: 1.5px solid #C8973A;
  padding: 52px 48px;
  max-width: 560px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
.modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 28px; line-height: 1;
  color: #4A5568; cursor: pointer; padding: 4px;
  transition: color 0.15s;
}
.modal-close:hover { color: #0F1B2D; }
.modal-eyebrow { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.eyebrow-line { display: block; width: 32px; height: 1px; background: #C8973A; }
.modal-eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #C8973A; }
.modal-title { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: #0F1B2D; margin-bottom: 8px; line-height: 1.15; }
.modal-sub { font-size: 14px; color: #4A5568; margin-bottom: 32px; line-height: 1.5; }

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-field label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #4A5568; }
.req { color: #C8973A; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; color: #0F1B2D;
  background: #fff; border: 1px solid rgba(200, 151, 58, 0.35);
  padding: 10px 14px; border-radius: 0; outline: none;
  transition: border-color 0.15s;
  appearance: none; -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: #C8973A; }
.form-field textarea { resize: vertical; line-height: 1.55; }
.form-field select { background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23C8973A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; cursor: pointer; }

.form-footer { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.form-error { font-size: 13px; color: #b91c1c; min-height: 20px; }
.modal-submit { width: 100%; padding: 14px; background: #0F1B2D; color: #F5F0E8; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.15s; }
.modal-submit:hover:not(:disabled) { background: #1A2D45; }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-privacy { font-size: 11px; color: #8A96A0; text-align: center; }

/* Success state */
.form-success { text-align: center; padding: 32px 0; }
.success-icon { margin: 0 auto 20px; width: 32px; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600; color: #0F1B2D; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: #4A5568; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .packages-hero { padding: 100px 24px 60px; }
  .pricing-bar { padding: 16px 24px; }
  .packages-grid-section { padding: 60px 24px; }
  .packages-grid { grid-template-columns: 1fr; gap: 16px; }
  .pkg-card--navy { border-color: rgba(26, 45, 69, 0.5); }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; padding: 32px 0; }
  .hiw-step:nth-child(even) { padding-left: 0; }
  .hiw-step:nth-last-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hiw-step:last-child { border-bottom: none; }
  .faq-list { grid-template-columns: 1fr; }
  .faq-item { padding: 28px 0; }
  .faq-item:nth-child(even) { padding-left: 0; }
  .faq-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(15, 27, 45, 0.1); }
  .faq-item:last-child { border-bottom: none; }
  .packages-cta { padding: 72px 24px 96px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .modal-panel { padding: 36px 28px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .packages-headline { font-size: 34px; }
  .pkg-name { font-size: 30px; }
  .pkg-price { font-size: 34px; }
  .nav-links { gap: 20px; }
  .nav-link { font-size: 12px; }
}