/* ═══════════════════════════════════════════════
   ARII — Persian Wedding Ceremony
   Shared Stylesheet
═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&family=Amiri:ital,wght@0,400;0,700;1,400&family=Noto+Nastaliq+Urdu:wght@400;700&display=swap');

/* ── Variables ─────────────────────────────────── */
:root {
  --gold:          #C9A84C;
  --gold-light:    #E8C97A;
  --gold-pale:     #F5E6B8;
  --gold-dim:      rgba(201,168,76,0.15);
  --ivory:         #FAF6EF;
  --ivory-dark:    #F0E6D2;
  --burgundy:      #4A0E1A;
  --burgundy-mid:  #6B1A2A;
  --burgundy-light:#8B2E42;
  --charcoal:      #1C1C1C;
  --charcoal-mid:  #252520;
  --charcoal-light:#333330;
  --text:          #2C2218;
  --text-mid:      #5A4A38;
  --text-light:    #8A7A68;
  --white:         #FFFFFF;

  --ff-display:   'Cormorant Garamond', Georgia, serif;
  --ff-body:      'Montserrat', system-ui, sans-serif;
  --ff-persian:   'Noto Nastaliq Urdu', 'Amiri', Georgia, serif;
  --ff-nastaliq:  'Noto Nastaliq Urdu', 'Amiri', Georgia, serif;

  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow:     0 6px 28px rgba(0,0,0,0.12);
  --shadow-md:  0 12px 48px rgba(0,0,0,0.18);
  --shadow-gold:0 4px 24px rgba(201,168,76,0.25);
  --transition: 0.3s ease;

  --nav-height: 88px;
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; }

/* ── Utility ───────────────────────────────────── */
.container   { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section     { padding: 6rem 0; }
.section-alt { background: var(--ivory-dark); }
.section-dark {
  background: linear-gradient(160deg, var(--charcoal) 0%, #1A1008 50%, var(--burgundy) 100%);
  color: var(--ivory);
}
.center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: var(--gold-light); }

h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.18; }

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 1.2rem;
}
.section-title-light { color: var(--ivory); }

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  margin-bottom: 3.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.section-intro-light {
  color: rgba(250,246,239,0.75);
}
.section-intro.center { margin-left: auto; margin-right: auto; }

/* Persian text */
.farsi {
  font-family: var(--ff-nastaliq);
  direction: rtl;
  unicode-bidi: embed;
  line-height: 2;
}

/* Nastaliq renders optically larger — scale down inside headings */
h1 .farsi, h2 .farsi, h3 .farsi,
.page-hero-title .farsi,
.section-title .farsi,
.hero-tagline-farsi {
  font-size: 0.82em;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
}

/* Standalone Persian tagline in hero */
.hero-tagline-farsi {
  font-size: 1.1rem;
  display: block;
  line-height: 2;
}

/* ── Gold Ornament Divider ─────────────────────── */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  margin: 1.2rem 0;
}
.ornament-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.ornament-line.rev {
  background: linear-gradient(to left, transparent, var(--gold));
}
.ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 10px;
  flex-shrink: 0;
}
.ornament-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 6px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  border-radius: 2px;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(201,168,76,0.55);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border-color: rgba(28,28,28,0.35);
}
.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.btn-burgundy {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}
.btn-burgundy:hover {
  background: var(--burgundy-mid);
  border-color: var(--burgundy-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(74,14,26,0.3);
}

/* ── Navigation ────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.site-header.scrolled {
  background: rgba(20,14,10,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  height: 72px;
}
.nav-container {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 62px;
  width: auto;
  transition: height var(--transition);
}
.site-header.scrolled .nav-logo-img { height: 50px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold-light);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}
.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.75);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}
.nav-link:hover::after,
.nav-link.active::after { right: 0; }
.nav-cta {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.55rem 1.5rem;
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ── Hero (Homepage) ───────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 25% 75%, rgba(74,14,26,0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 25%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(155deg, #1C1C1C 0%, #1A1008 45%, #1C0A0F 75%, #1C1C1C 100%);
}
.hero-particles-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: calc(var(--nav-height) + 2rem) 2rem 4rem;
}
.hero-ornament-svg {
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  opacity: 0.9;
}
.hero-brand {
  font-family: var(--ff-display);
  font-size: clamp(4.5rem, 10vw, 8rem);
  font-weight: 300;
  color: var(--ivory);
  letter-spacing: 0.22em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}
.hero-tagline-farsi {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: rgba(232,201,122,0.65);
  direction: rtl;
  margin-bottom: 1.8rem;
}
.hero-sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250,246,239,0.6);
  letter-spacing: 0.06em;
  max-width: 520px;
  margin: 0 auto 2.8rem;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero-scroll span.scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}
.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.5; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.15); }
}

/* ── Inner Page Hero ───────────────────────────── */
.page-hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(74,14,26,0.5) 0%, transparent 60%),
    linear-gradient(155deg, #1C1C1C 0%, #1A1008 50%, #1C0A0F 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-bg-text);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--ff-display);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 600;
  color: rgba(201,168,76,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.page-hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 0.8rem;
}
.page-hero-sub {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.55);
  letter-spacing: 0.1em;
  font-weight: 300;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(250,246,239,0.4);
  text-transform: uppercase;
}
.page-hero-breadcrumb a { color: var(--gold); transition: color var(--transition); }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }
.page-hero-breadcrumb span { color: rgba(201,168,76,0.4); }

/* ── Feature Cards ─────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.feature-card {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,168,76,0.15);
  border-top: 2px solid var(--gold);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
  display: block;
}
.feature-card h3 {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  font-weight: 400;
}
.feature-card p {
  color: var(--text-mid);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ── Services / Package Cards ──────────────────── */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}
.package-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.18);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.package-card.featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, #fffbf2 0%, var(--white) 100%);
}
.package-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
}
.package-header {
  padding: 2.5rem 2.2rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.package-header .eyebrow { margin-bottom: 0.4rem; }
.package-name {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.2rem;
}
.package-name-farsi {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: 1.1rem;
  color: var(--gold);
  direction: rtl;
}
.package-price {
  margin-top: 1rem;
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--burgundy);
  font-weight: 300;
}
.package-price span {
  font-size: 1rem;
  color: var(--text-light);
  font-family: var(--ff-body);
  font-weight: 400;
}
.package-body { padding: 2rem 2.2rem; }
.package-features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.package-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-mid);
}
.package-feature-icon {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.package-feature-icon.no { color: var(--text-light); }

/* ── Quote / Testimonial ───────────────────────── */
.quote-section {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(74,14,26,0.4) 0%, transparent 55%),
    linear-gradient(150deg, #1C1C1C 0%, #1A100A 50%, #140A0E 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-ornament-top,
.quote-ornament-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.06;
  font-family: var(--ff-display);
  font-size: 18rem;
  color: var(--gold);
  line-height: 1;
  pointer-events: none;
  font-weight: 600;
}
.quote-ornament-top  { top: -3rem; }
.quote-ornament-bottom { bottom: -3rem; }

blockquote.persian-quote {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.quote-mark {
  font-family: var(--ff-display);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 0;
  display: block;
  margin-bottom: 1rem;
}
.quote-text-farsi {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--ivory);
  direction: rtl;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.quote-text-en {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.quote-attribution {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.55);
}

/* ── About Page Sections ───────────────────────── */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split-grid.reverse .split-image { order: 2; }
.split-grid.reverse .split-content { order: 1; }

.split-image-inner {
  position: relative;
  height: 520px;
}
.split-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--charcoal-mid) 0%, #2A1810 60%, var(--burgundy) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.2rem;
}
.image-frame-ornament {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}
.image-frame-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.image-accent-border {
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  pointer-events: none;
}
.image-gold-tag {
  position: absolute;
  bottom: -1px; right: -1px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
}

.split-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--charcoal);
  margin-bottom: 1.2rem;
  font-weight: 400;
}
.split-content h2 em {
  font-style: italic;
  color: var(--burgundy);
}
.split-content p {
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.85;
  font-weight: 300;
}
.farsi-excerpt {
  background: linear-gradient(135deg, var(--burgundy), #2A1010);
  color: var(--ivory);
  padding: 1.8rem 2rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--gold);
  font-family: var(--ff-nastaliq);
  font-size: 1.2rem;
  direction: rtl;
  line-height: 2.4;
  position: relative;
}
.farsi-excerpt::before {
  content: '"';
  position: absolute;
  top: 0.2rem; right: 0.8rem;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: var(--ff-display);
}

/* Pillars for ceremony elements */
.ceremony-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.ceremony-pillar {
  text-align: center;
  padding: 2.2rem 1.5rem;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.ceremony-pillar:hover { transform: translateY(-4px); }
.pillar-icon { font-size: 2.5rem; display: block; margin-bottom: 1rem; }
.ceremony-pillar h4 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.ceremony-pillar p { font-size: 0.85rem; color: var(--text-mid); font-weight: 300; }

/* ── Booking Form ──────────────────────────────── */
.booking-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-form-wrap {
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.booking-form-wrap h2 {
  font-size: 2rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.booking-form-wrap > p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 2.5rem;
  font-weight: 300;
}
.form-section-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  color: var(--charcoal);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(201,168,76,0.25);
  margin: 2rem 0 1.5rem;
  font-weight: 400;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid #e0d8cc;
  background: var(--ivory);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; line-height: 1.65; }
.form-submit-wrap { display: flex; align-items: center; gap: 2rem; margin-top: 0.5rem; flex-wrap: wrap; }
.form-note { font-size: 0.78rem; color: var(--text-light); font-weight: 300; }
.form-success-msg {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  min-height: 1.4rem;
  margin-top: 1rem;
}

.char-counter-wrap {
  text-align: right;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.4rem;
  font-family: var(--ff-body);
}

.booking-sidebar { position: sticky; top: 110px; }
.sidebar-card {
  background: linear-gradient(155deg, var(--charcoal) 0%, #1A1008 60%, var(--burgundy) 100%);
  padding: 2.5rem 2rem;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.sidebar-card h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-weight: 400;
}
.sidebar-card p {
  font-size: 0.88rem;
  color: rgba(250,246,239,0.7);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}
.sidebar-list { display: flex; flex-direction: column; gap: 0.65rem; }
.sidebar-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(250,246,239,0.75);
  font-weight: 300;
}
.sidebar-list li::before {
  content: '◆';
  color: var(--gold);
  font-size: 0.45rem;
  margin-top: 6px;
  flex-shrink: 0;
}

/* ── Contact Page ──────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-block h2 {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 0.8rem;
}
.contact-info-block > p {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact-item-text span,
.contact-item-text a {
  font-size: 0.92rem;
  color: var(--text-mid);
  font-weight: 300;
}
.contact-item-text a:hover { color: var(--gold); }

.social-row { display: flex; gap: 0.8rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.contact-form-wrap {
  background: var(--white);
  padding: 3rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.contact-form-wrap h3 {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  font-weight: 400;
}
.contact-form-wrap > p {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* ── FAQ Accordion ─────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(201,168,76,0.2);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-question-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--charcoal);
  font-weight: 400;
}
.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}

/* ── Add-ons ───────────────────────────────────── */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}
.addon-card {
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.18);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.addon-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.addon-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.addon-card h4 { font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.3rem; font-weight: 400; }
.addon-card p { font-size: 0.83rem; color: var(--text-mid); font-weight: 300; }
.addon-price { font-family: var(--ff-display); color: var(--gold); font-size: 1.1rem; margin-top: 0.5rem; }

/* ── CTA Banner ────────────────────────────────── */
.cta-banner {
  padding: 6rem 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(74,14,26,0.6) 0%, transparent 60%),
    linear-gradient(155deg, #1A1008 0%, #1C1C1C 100%);
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--ivory);
  font-weight: 300;
  margin-bottom: 0.8rem;
}
.cta-banner h2 em { font-style: italic; color: var(--gold-light); }
.cta-banner p {
  color: rgba(250,246,239,0.6);
  font-size: 0.9rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.cta-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
  color: rgba(250,246,239,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .footer-logo-img { height: 56px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.8;
  font-weight: 300;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-social-links { display: flex; gap: 0.6rem; }
.footer-social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(201,168,76,0.6);
  transition: all var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  font-family: var(--ff-body);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col a {
  font-size: 0.85rem;
  color: rgba(250,246,239,0.5);
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 1.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(250,246,239,0.22);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-farsi {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  direction: rtl;
  color: rgba(201,168,76,0.3);
}

/* ── Scroll Animations ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .split-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .split-grid.reverse .split-image { order: 0; }
  .split-grid.reverse .split-content { order: 0; }
  .split-image-inner { height: 380px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .section { padding: 4.5rem 0; }
  .container { padding: 0 1.5rem; }

  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(20,14,10,0.98);
    z-index: 999;
    gap: 2.2rem;
    padding-top: var(--nav-height);
  }
  .nav-menu.open { display: flex; }
  .nav-link { font-size: 0.9rem; }
  .nav-cta { padding: 0.7rem 2rem; font-size: 0.8rem; }

  .form-row { grid-template-columns: 1fr; }
  .booking-form-wrap { padding: 2rem 1.5rem; }
  .contact-form-wrap { padding: 2rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .packages-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-ornament-svg { width: 70px; height: 70px; }
  .hero-brand { letter-spacing: 0.14em; }
}

/* ═══════════════════════════════════════════════
   LOGO & HERO ANIMATIONS
═══════════════════════════════════════════════ */

.hero-letter {
  display: inline-block;
  opacity: 0;
  animation: heroLetterIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  animation-delay: calc(0.5s + var(--i) * 0.2s);
}

@keyframes heroLetterIn {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-brand {
  animation: heroBrandGlow 4s ease-in-out 2.5s infinite alternate;
}

@keyframes heroBrandGlow {
  from { text-shadow: 0 0 0 rgba(201,168,76,0); }
  to   { text-shadow: 0 0 35px rgba(201,168,76,0.45), 0 0 70px rgba(201,168,76,0.15); }
}

.hero-ornament-svg {
  opacity: 0;
  animation: ornamentFadeIn 1.5s cubic-bezier(0.23,1,0.32,1) 0.2s forwards,
             ornamentSpin 28s linear 1.7s infinite;
}

@keyframes ornamentFadeIn {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes ornamentSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.nav-logo-img {
  transition: filter 0.4s ease, transform 0.4s ease;
}
.nav-logo-img:hover {
  filter: drop-shadow(0 0 10px rgba(201,168,76,0.65));
  transform: scale(1.06);
}

@media (prefers-reduced-motion: reduce) {
  .hero-letter, .hero-brand, .hero-ornament-svg { animation: none; opacity: 1; filter: none; }
}

/* ═══════════════════════════════════════════════
   REAL CEREMONY GALLERY
═══════════════════════════════════════════════ */

.gallery-section {
  background: var(--charcoal);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 3rem;
}

.gallery-grid--three {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.12);
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74,14,26,0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,4,2,0.96);
  cursor: pointer;
}

.lightbox-img {
  position: relative;
  z-index: 1;
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.2);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 2;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 2.8rem;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(201,168,76,0.22); }

.lightbox-caption {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  opacity: 0.75;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 2; }
  .lightbox-prev { left: 0.4rem; }
  .lightbox-next { right: 0.4rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .split-image-inner { height: 280px; }
}

/* ═══════════════════════════════════════════════
   INTERACTIVE ENHANCEMENTS & SECTION TRANSITIONS
═══════════════════════════════════════════════ */

/* ── Wave Section Dividers ────────────────────────── */
.wave-sep {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin: 0;
  pointer-events: none;
}
.wave-sep svg {
  display: block;
  width: 100%;
}

/* ── Ornate Gold Section Separator ───────────────── */
.ornate-sep {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  max-width: 560px;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.ornate-sep-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.5));
}
.ornate-sep-line.rev {
  background: linear-gradient(to left, transparent, rgba(201,168,76,0.5));
}
.ornate-sep-motif {
  flex-shrink: 0;
  opacity: 0.8;
}

/* ── Hero bottom fade — softens hero → first section transition ── */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 90px;
  background: linear-gradient(to bottom, transparent 0%, rgba(26,16,8,0.45) 60%, #1C1C1C 100%);
  pointer-events: none;
  z-index: 2;
}

/* ── Floating Booking Button ──────────────────────── */
.float-book-btn {
  position: fixed;
  bottom: 2.2rem;
  right: 2.2rem;
  z-index: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--burgundy);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.85rem 1.6rem 0.85rem 1.1rem;
  font-family: var(--ff-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(74,14,26,0.55), 0 2px 10px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.23,1,0.32,1),
              transform 0.45s cubic-bezier(0.23,1,0.32,1),
              background 0.25s ease,
              box-shadow 0.25s ease,
              color 0.25s ease;
}
.float-book-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}
.float-book-btn:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: 0 10px 40px rgba(201,168,76,0.35), 0 2px 8px rgba(0,0,0,0.2);
  transform: translateY(-3px) scale(1);
}
.float-book-icon {
  width: 26px;
  height: 26px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.6rem;
  line-height: 1;
  animation: floatRingPulse 2.8s ease-in-out infinite;
  transition: border-color 0.25s;
}
.float-book-btn:hover .float-book-icon {
  animation: none;
}
@keyframes floatRingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  55%       { box-shadow: 0 0 0 7px rgba(201,168,76,0); }
}

/* ── Parallax Icons ───────────────────────────────── */
.feature-icon,
.pillar-icon,
.addon-icon {
  will-change: transform;
  transition: transform 0.15s ease-out;
  display: block;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .float-book-btn {
    bottom: 1.4rem;
    right: 1.4rem;
    padding: 0.75rem 1.1rem 0.75rem 0.9rem;
    font-size: 0.65rem;
  }
  .float-book-icon { width: 22px; height: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .float-book-icon { animation: none !important; }
  .feature-icon, .pillar-icon, .addon-icon {
    will-change: auto;
    transform: none !important;
    transition: none;
  }
  .hero::after { display: none; }
}
