/* Wedding 18 — Luxury Burgundy | Undangan Premium & Box */
:root {
  --burgundy: #6B1A2A;
  --burgundy-deep: #4A0E1A;
  --burgundy-light: #8B2A3E;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5E9CC;
  --cream: #FAF6F0;
  --warm-white: #FFFDF9;
  --charcoal: #2C2420;
  --brown-mid: #5C3A2E;
  --brown-light: #9C6E5A;
  --gray-warm: #8A7A72;
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.18);
  --shadow-burg: 0 4px 24px rgba(107,26,42,0.18);
  --radius: 4px;
  --radius-lg: 10px;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ===== DEMO BAR ===== */
.demo-bar {
  background: var(--charcoal);
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar span { opacity: 0.85; }
.demo-bar a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600;
  border: 1px solid var(--gold-light);
  padding: 3px 10px;
  border-radius: 20px;
  transition: background 0.2s;
}
.demo-bar a:hover { background: var(--gold-light); color: var(--charcoal); }

/* ===== NAVIGATION ===== */
.site-header {
  background: var(--warm-white);
  border-bottom: 2px solid var(--gold);
  position: sticky;
  top: 37px;
  z-index: 999;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.nav-brand .brand-main {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.04em;
}
.nav-brand .brand-sub {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Checkbox hack mobile menu */
#nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-menu {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.nav-menu a {
  text-decoration: none;
  color: var(--brown-mid);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--burgundy);
  border-bottom-color: var(--gold);
}
.nav-cta a {
  background: var(--burgundy);
  color: #fff !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  border-bottom: none !important;
}
.nav-cta a:hover { background: var(--burgundy-light) !important; }

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 4px;
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 10px 0; font-size: 1rem; }
  #nav-toggle:checked ~ .nav-inner .nav-menu { display: flex; }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 50%, var(--burgundy-light) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(201,168,76,0.04) 30px,
    rgba(201,168,76,0.04) 31px
  );
}
.hero-ornament {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 24px;
}
.hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-desc {
  font-size: 1rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--burgundy-deep);
  padding: 13px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-gold);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.35); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  padding: 11px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold-light); background: rgba(201,168,76,0.12); }

/* ===== SECTIONS ===== */
.section { padding: 72px 20px; }
.section-alt { background: var(--warm-white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: var(--burgundy-deep);
  letter-spacing: 0.04em;
  line-height: 1.25;
}
.section-title em { font-style: italic; color: var(--burgundy); font-weight: 400; }
.section-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 0;
}
.section-sub {
  color: var(--gray-warm);
  margin-top: 14px;
  font-size: 0.95rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.product-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.product-info { padding: 22px; }
.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--burgundy-deep);
  margin-bottom: 6px;
}
.product-desc { font-size: 0.85rem; color: var(--gray-warm); line-height: 1.55; margin-bottom: 14px; }
.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.product-price span { font-size: 0.78rem; color: var(--gray-warm); font-weight: 400; }

/* ===== FEATURES / WHY ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}
.feature-item { text-align: center; padding: 32px 20px; }
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-pale);
}
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy-deep);
  margin-bottom: 8px;
}
.feature-desc { font-size: 0.83rem; color: var(--gray-warm); line-height: 1.55; }

/* ===== PROCESS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  position: relative;
  border: 1px solid var(--gold-pale);
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--burgundy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.step-title { font-size: 0.92rem; font-weight: 700; color: var(--burgundy-deep); margin-bottom: 6px; }
.step-desc { font-size: 0.82rem; color: var(--gray-warm); line-height: 1.5; }

/* ===== GALLERY GRID ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--gold);
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--brown-mid);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--burgundy-deep); }
.author-loc { font-size: 0.75rem; color: var(--gray-warm); }
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 4px; }

/* ===== FORM ===== */
.form-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: var(--shadow-burg);
  border: 1px solid var(--gold-pale);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--burgundy-deep);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #D4C5C0;
  border-radius: var(--radius);
  font-size: 0.9rem;
  background: #fff;
  color: var(--charcoal);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  letter-spacing: 0.06em;
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: var(--shadow-burg); }

@media (max-width: 600px) {
  .form-card { padding: 24px 16px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm-white);
}
.pricing-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
  transform: scale(1.02);
}
.pricing-head {
  padding: 28px 24px 20px;
  text-align: center;
  background: var(--cream);
}
.pricing-card.featured .pricing-head {
  background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
  color: #fff;
}
.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.pricing-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.pricing-card.featured .pricing-name { color: #fff; }
.pricing-price { font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.pricing-price sub { font-size: 0.75rem; font-weight: 400; color: var(--gray-warm); }
.pricing-body { padding: 20px 24px; }
.pricing-features { list-style: none; margin-bottom: 22px; }
.pricing-features li {
  padding: 8px 0;
  font-size: 0.87rem;
  color: var(--brown-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--gold-pale);
}
.pricing-features li:last-child { border-bottom: none; }
.check-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--cream);
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--burgundy-deep);
  border-color: transparent;
}
.pricing-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-burg); }

/* ===== ABOUT PAGE ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; font-size: 1.9rem; }
.about-content .section-line { margin-left: 0; }
.about-content p { color: var(--brown-mid); line-height: 1.75; margin-top: 18px; font-size: 0.95rem; }
.stats-row {
  display: flex;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-num { font-size: 1.8rem; font-weight: 700; color: var(--burgundy); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--gray-warm); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-visual { height: 260px; }
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gold-pale);
  padding: 22px 0;
}
.faq-item:first-child { border-top: 1px solid var(--gold-pale); }
.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--burgundy-deep);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-q::before {
  content: 'T';
  background: var(--burgundy);
  color: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.faq-a { font-size: 0.88rem; color: var(--brown-mid); line-height: 1.65; padding-left: 32px; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy));
  color: #fff;
  text-align: center;
  padding: 72px 20px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(201,168,76,0.05) 20px,
    rgba(201,168,76,0.05) 21px
  );
}
.cta-band .section-title { color: #fff; }
.cta-band .section-title em { color: var(--gold-light); }
.cta-band .section-tag { color: var(--gold-light); }
.cta-band .section-sub { color: rgba(255,255,255,0.78); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 52px 20px 28px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .brand-main { font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-brand .brand-sub { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
.footer-desc { font-size: 0.83rem; line-height: 1.65; margin-top: 12px; }
.footer-title { font-size: 0.8rem; font-weight: 700; color: #fff; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 20px 72px;
}
.page-hero .hero-tag { margin-bottom: 10px; }
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: 0.06em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 400; }
.page-hero p { opacity: 0.85; margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.78rem;
  opacity: 0.7;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ===== MISC ===== */
.text-gold { color: var(--gold); }
.text-burg { color: var(--burgundy); }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-pale), transparent);
  margin: 0;
}
.highlight-box {
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid var(--gold-pale);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.notice-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 0.87rem;
  color: var(--brown-mid);
  margin: 20px 0;
}
