:root {
  --bg: #fafaf8;
  --text: #111;
  --muted: #555;
  --line: rgba(0,0,0,0.08);
  --shadow: 0 2px 20px rgba(0,0,0,0.06);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* TYPOGRAPHY */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.8rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-style: italic; }
p { color: var(--muted); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.eyebrow-light { color: rgba(255,255,255,0.7); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  margin-top: 16px;
  color: var(--muted);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn-dark {
  background: #111;
  color: #fff;
}
.btn-dark:hover { background: #333; }
.btn-light {
  background: #fff;
  color: #111;
}
.btn-light:hover { background: #eee; }
.btn-outline {
  border: 1px solid #111;
  color: #111;
  background: transparent;
}
.btn-outline:hover { background: #111; color: #fff; }

/* HEADER */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-badge img {
  width: 130%;
  height: 130%;
  object-fit: cover;
  object-position: center;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.nav { display: flex; gap: 32px; }
.nav a {
  text-decoration: none;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}
.hero-overlay {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-left: 10%;
  padding: 48px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.hero-overlay h1 {
  margin-bottom: 24px;
  max-width: 16ch;
}
.hero-lead {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* SECTIONS */
.section {
  padding: 120px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-dark {
  background: #111;
  color: #fff;
  max-width: none;
  padding: 120px 40px;
}
.section-dark .section-lead { color: rgba(255,255,255,0.7); }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { color: rgba(255,255,255,0.5); }

/* PHOTO BLOCK */
.photo-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  margin-bottom: 80px;
}
.photo-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
.photo-side {
  display: grid;
  gap: 12px;
}
.photo-side img {
  width: 100%;
  height: 254px;
  object-fit: cover;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}
.feature h3 { margin-bottom: 12px; }
.feature p { line-height: 1.7; }

/* CTA BLOCK */
.cta-block {
  text-align: center;
  padding: 60px 0 0;
}
.cta-block p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 24px;
}

/* EVENT GRID */
.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 80px;
}
.event-card {
  border: 1px solid rgba(255,255,255,0.15);
  padding: 36px;
}
.event-card h3 { color: #fff; margin-bottom: 12px; }
.event-card p { color: rgba(255,255,255,0.65); line-height: 1.7; }

/* PARTY PHOTOS */
.party-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.party-photos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* PARTY GALLERY */
.party-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}
.party-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* CONTACT */
.contact-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-info {
  margin: 40px 0 32px;
}
.contact-info p {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.contact-info a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WEDDING INCLUDED */
.included-block {
  text-align: center;
  padding-top: 40px;
  margin-bottom: 20px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}
.included-item {
  text-align: center;
}
.included-item h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.included-item p {
  line-height: 1.6;
  font-size: 0.95rem;
}

/* WHY VIIBE */
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.difference-item h3 {
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}
.difference-item p {
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  background: #111;
  padding: 36px;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 16px;
}
.testimonial-name {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

/* INSTAGRAM */
.ig-embed {
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.ig-embed iframe {
  display: block;
}
.footer {
  text-align: center;
  padding: 60px 40px;
  border-top: 1px solid var(--line);
}
.footer-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.footer p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 840px) {
  .topbar { padding: 16px 24px; }
  .nav { gap: 14px; }
  .nav a { font-size: 0.8rem; }
  .brand-name { font-size: 1.2rem; }
  .brand-badge { width: 32px; height: 32px; }
  .hero-overlay { margin: 0 20px; padding: 32px 24px; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .photo-block { grid-template-columns: 1fr; }
  .photo-main img { height: 300px; }
  .photo-side { grid-template-columns: 1fr 1fr; }
  .photo-side img { height: 150px; }
  .features { grid-template-columns: 1fr; gap: 28px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .difference-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .event-grid { grid-template-columns: 1fr; }
  .party-photos { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  .section-dark { padding: 80px 24px; }
  .cta-block { padding: 40px 0 0; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 600px) {
  .topbar { padding: 14px 16px; }
  .nav { display: none; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  h3 { font-size: 1.3rem; }
  .hero { min-height: auto; }
  .hero-bg img { min-height: 400px; }
  .hero-overlay { margin: 0 12px; padding: 24px 18px; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .photo-side { grid-template-columns: 1fr; }
  .photo-side img { height: 200px; }
  .included-grid { grid-template-columns: 1fr; }
  .difference-grid { grid-template-columns: 1fr; }
  .party-photos { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 16px; }
  .section-dark { padding: 60px 16px; }
  .section-lead { font-size: 1.1rem; }
  .footer { padding: 40px 16px; }
}
