/* ========================
   SATU HARI WEDDING ORGANIZER
   Aesthetic: Romantic Elegant / Ivory & Gold
======================== */

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

:root {
  --ivory: #faf7f2;
  --ivory-dark: #f0ebe0;
  --ivory-deeper: #e5ddd0;
  --gold: #b8965a;
  --gold-dark: #9a7840;
  --gold-light: #d4b07a;
  --gold-pale: #f0e6d0;
  --dark: #1a1410;
  --text-mid: #5a4a38;
  --text-light: #9a8870;
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--dark); overflow-x: hidden; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 20px 64px; background: rgba(250,247,242,0.9); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(184,150,90,0.15); }
.nav-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--dark); letter-spacing: 1px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; list-style: none; gap: 40px; }
.nav-links a { text-decoration: none; color: var(--text-mid); font-size: 0.82rem; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { text-decoration: none; border: 1px solid var(--gold); color: var(--gold); padding: 10px 24px; font-size: 0.82rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.nav-cta:hover { background: var(--gold); color: white; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; animation: slowzoom 20s ease-in-out infinite alternate; }
@keyframes slowzoom { from { transform: scale(1); } to { transform: scale(1.05); } }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(26,20,16,0.75) 0%, rgba(26,20,16,0.4) 55%, rgba(26,20,16,0.1) 100%); }

.hero-content { position: relative; z-index: 2; max-width: 600px; padding: 0 64px; animation: fadeup 1.2s ease both; }
@keyframes fadeup { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { display: block; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 28px; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.1; color: var(--ivory); margin-bottom: 24px; }
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p { font-size: 1rem; line-height: 1.8; color: rgba(250,247,242,0.72); max-width: 460px; margin-bottom: 40px; }

.hero-bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; background: rgba(26,20,16,0.65); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; padding: 24px 64px; }
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 0 48px; }
.hero-stat strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--gold-light); }
.hero-stat span { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,247,242,0.5); }
.hero-stat-divider { width: 1px; height: 36px; background: rgba(184,150,90,0.3); flex-shrink: 0; }

/* BUTTONS */
.btn-primary { display: inline-block; text-decoration: none; background: var(--gold); color: white; padding: 15px 36px; font-size: 0.88rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; transition: background 0.2s, transform 0.2s; }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-primary.large { padding: 18px 44px; font-size: 0.95rem; }
.btn-outline { display: inline-block; text-decoration: none; border: 1px solid var(--gold); color: var(--gold); padding: 13px 32px; font-size: 0.85rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; border-radius: 2px; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--gold); color: white; }
.btn-outline.dark { border-color: var(--dark); color: var(--dark); }
.btn-outline.dark:hover { background: var(--dark); color: white; }

/* SECTION LABEL */
.section-label { display: block; font-size: 0.72rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.section-label.light { color: rgba(212,176,122,0.7); }

/* LAYANAN */
.layanan { background: var(--ivory); padding: 96px 64px; }
.layanan-header { margin-bottom: 56px; }
.layanan-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; color: var(--dark); line-height: 1.15; }
.layanan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.layanan-card { background: white; border: 1px solid var(--ivory-deeper); border-radius: 4px; padding: 40px 36px; position: relative; transition: box-shadow 0.25s, border-color 0.25s; }
.layanan-card:hover { box-shadow: 0 20px 60px rgba(184,150,90,0.12); border-color: var(--gold-pale); }
.layanan-card.featured { border-color: var(--gold); background: var(--dark); }
.card-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: white; font-size: 0.65rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 5px 16px; border-radius: 0 0 4px 4px; white-space: nowrap; }
.card-num { font-family: var(--font-display); font-size: 0.8rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; opacity: 0.7; }
.layanan-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 14px; line-height: 1.2; }
.layanan-card.featured h3 { color: var(--ivory); }
.layanan-card > p { font-size: 0.88rem; line-height: 1.75; color: var(--text-mid); margin-bottom: 24px; }
.layanan-card.featured > p { color: rgba(250,247,242,0.65); }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.card-list li { font-size: 0.85rem; color: var(--text-mid); padding-left: 18px; position: relative; }
.card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 0.8rem; }
.layanan-card.featured .card-list li { color: rgba(250,247,242,0.7); }
.card-price { margin-bottom: 24px; padding-top: 24px; border-top: 1px solid var(--ivory-deeper); }
.layanan-card.featured .card-price { border-top-color: rgba(184,150,90,0.3); }
.card-price span { display: block; font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.layanan-card.featured .card-price span { color: rgba(250,247,242,0.45); }
.card-price strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.layanan-card .btn-primary, .layanan-card .btn-outline { width: 100%; text-align: center; }

/* PORTO */
.porto { background: var(--ivory-dark); padding: 96px 64px; }
.porto-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
.porto-header h2 { font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 400; color: var(--dark); line-height: 1.2; margin-top: 8px; }
.porto-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 260px 260px; gap: 16px; }
.porto-card { position: relative; overflow: hidden; border-radius: 4px; cursor: pointer; }
.porto-card.tall { grid-row: span 2; }
.porto-card.wide { grid-column: span 2; }
.porto-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.porto-card:hover img { transform: scale(1.05); }
.porto-info { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(26,20,16,0.85), transparent); padding: 40px 24px 20px; }
.porto-info strong { display: block; font-family: var(--font-display); font-size: 1rem; color: var(--ivory); margin-bottom: 4px; }
.porto-info span { font-size: 0.75rem; color: var(--gold-light); }

/* KENAPA */
.kenapa { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.kenapa-img { overflow: hidden; }
.kenapa-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kenapa-text { background: var(--ivory); padding: 88px 80px; display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.kenapa-text h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 2.8vw, 2.8rem); font-weight: 400; color: var(--dark); line-height: 1.2; }
.kenapa-text > p { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); }
.kenapa-points { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.point { display: flex; gap: 16px; align-items: flex-start; }
.point-icon { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 4px; }
.point strong { display: block; font-size: 0.92rem; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.point p { font-size: 0.85rem; line-height: 1.65; color: var(--text-light); margin: 0; }

/* TESTIMONI */
.testimoni { background: var(--dark); padding: 96px 64px; }
.testi-header { margin-bottom: 56px; }
.testi-header .section-label { color: rgba(212,176,122,0.6); }
.testi-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400; color: var(--ivory); line-height: 1.2; margin-top: 8px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(184,150,90,0.2); border-radius: 4px; padding: 36px; transition: border-color 0.2s; }
.testi-card.center { border-color: rgba(184,150,90,0.45); background: rgba(184,150,90,0.06); }
.testi-card:hover { border-color: rgba(184,150,90,0.4); }
.testi-quote { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 0.8; margin-bottom: 20px; opacity: 0.5; }
.testi-card p { font-size: 0.92rem; line-height: 1.8; color: rgba(250,247,242,0.7); font-style: italic; margin-bottom: 28px; }
.testi-couple { display: flex; align-items: center; gap: 14px; }
.testi-couple img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center top; border: 2px solid rgba(184,150,90,0.4); flex-shrink: 0; }
.testi-couple strong { display: block; font-size: 0.9rem; color: var(--ivory); font-weight: 600; margin-bottom: 2px; }
.testi-couple span { font-size: 0.75rem; color: rgba(250,247,242,0.4); }

/* CTA */
.cta-section { position: relative; padding: 140px 64px; text-align: center; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.cta-overlay { position: absolute; inset: 0; background: rgba(26,20,16,0.72); }
.cta-content { position: relative; z-index: 2; max-width: 580px; margin: 0 auto; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 400; color: var(--ivory); line-height: 1.15; margin-bottom: 20px; margin-top: 16px; }
.cta-content > p { font-size: 1rem; line-height: 1.7; color: rgba(250,247,242,0.65); margin-bottom: 40px; }
.cta-note { font-size: 0.78rem !important; color: rgba(250,247,242,0.35) !important; margin-bottom: 0 !important; margin-top: 20px; letter-spacing: 0.5px; }

/* FOOTER */
.footer { background: #0f0b08; padding: 64px 64px 32px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(184,150,90,0.12); }
.footer-logo { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--ivory); margin-bottom: 14px; letter-spacing: 1px; }
.footer-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(250,247,242,0.38); max-width: 240px; }
.footer-col strong { display: block; font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); opacity: 0.6; margin-bottom: 16px; }
.footer-col a { display: block; text-decoration: none; font-size: 0.85rem; color: rgba(250,247,242,0.4); margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom p { text-align: center; font-size: 0.75rem; color: rgba(250,247,242,0.18); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 24px; }

  .hero-bottom { display: grid; grid-template-columns: 1fr 1fr; padding: 0; gap: 0; }
  .hero-stat { padding: 24px 16px; border-bottom: 1px solid rgba(184,150,90,0.15); }
  .hero-stat:nth-child(1), .hero-stat:nth-child(3) { border-right: 1px solid rgba(184,150,90,0.15); }
  .hero-stat strong { font-size: 1.3rem; }
  .hero-stat-divider { display: none; }

  .layanan { padding: 64px 24px; }
  .layanan-grid { grid-template-columns: 1fr; }

  .porto { padding: 64px 24px; }
  .porto-header { flex-direction: column; align-items: flex-start; }
  .porto-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .porto-card.tall { grid-row: span 1; }
  .porto-card.wide { grid-column: span 2; }

  .kenapa { grid-template-columns: 1fr; }
  .kenapa-img { height: 320px; }
  .kenapa-text { padding: 56px 24px; }

  .testimoni { padding: 64px 24px; }
  .testi-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 100px 24px; }

  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
