/* ==========================================================
   THE PERSIAN WEDDING
   Editorial Luxury Stylesheet
   ========================================================== */

:root {
  --ivory: #F8F6F1;
  --beige: #EFE9DF;
  --gold:  #C8B38A;
  --gold-soft: #D9C8A6;
  --charcoal: #171717;
  --charcoal-soft: #2A2A2A;
  --muted: rgba(23,23,23,0.55);
  --line: rgba(23,23,23,0.12);
  --line-light: rgba(248,246,241,0.18);

  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(80px, 12vw, 180px);
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  font-weight: 300;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }

::selection { background: var(--gold); color: var(--ivory); }

/* ============ TYPOGRAPHY ============ */
.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.5vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.display em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.display--light { color: var(--ivory); }
.display--light em { color: var(--gold-soft); }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 400;
  padding-bottom: 18px;
  position: relative;
}
.eyebrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 6px;
  width: 36px; height: 1px;
  background: var(--gold);
}
.eyebrow--light { color: var(--ivory); }
.eyebrow--light::after { background: var(--gold); }

.lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.55;
  font-weight: 300;
  color: var(--charcoal-soft);
  max-width: 720px;
  margin-top: 28px;
  font-style: italic;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid transparent;
  position: relative;
  transition: all 0.5s var(--ease);
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--ivory);
}
.btn--gold:hover {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn--ghost {
  border-color: rgba(248,246,241,0.45);
  color: var(--ivory);
}
.btn--ghost:hover {
  background: var(--ivory);
  color: var(--charcoal);
  border-color: var(--ivory);
}
.btn--full { width: 100%; }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s var(--ease) 0.4s, visibility 1s var(--ease) 0.4s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.preloader__logo {
  width: clamp(180px, 26vw, 300px);
  height: auto;
  opacity: 0.95;
  animation: fadeInUp 1.2s var(--ease) both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 0.95; transform: translateY(0); }
}
.preloader__line {
  width: 1px;
  height: 80px;
  background: var(--charcoal);
  transform-origin: top;
  animation: lineDraw 1.6s var(--ease) infinite;
}
@keyframes lineDraw {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px var(--pad-x);
  transition: all 0.5s var(--ease);
  color: var(--ivory);
}
.nav.is-scrolled {
  background: rgba(248,246,241,0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--pad-x);
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav__brand {
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 52px;
  width: auto;
  display: block;
  transition: height 0.5s var(--ease), filter 0.4s var(--ease);
}
.nav.is-scrolled .nav__logo {
  height: 40px;
}
.nav__links {
  display: flex;
  gap: 38px;
}
.nav__links a {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
  transition: opacity 0.3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.nav__links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav__cta {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid currentColor;
  transition: all 0.4s var(--ease);
}
.nav__cta:hover {
  background: currentColor;
}
.nav__cta:hover {
  color: var(--ivory);
}
.nav.is-scrolled .nav__cta:hover {
  color: var(--ivory);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.nav__toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: all 0.4s var(--ease);
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ============ MOBILE MENU ============ */
.menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--ease);
  padding: 120px var(--pad-x) 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.menu.is-open {
  opacity: 1;
  visibility: visible;
}
.menu__links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.menu__links a {
  font-family: var(--serif);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  transition: color 0.3s var(--ease);
}
.menu__links a:hover {
  color: var(--gold);
  font-style: italic;
}
.menu__foot {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  padding: 0 var(--pad-x);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.hero__image {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenburns 18s ease-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.05) translate3d(0, 0, 0); }
  100% { transform: scale(1.15) translate3d(-1%, -1.5%, 0); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23,23,23,0.3) 0%, rgba(23,23,23,0.15) 40%, rgba(23,23,23,0.55) 100%),
    radial-gradient(ellipse at center, rgba(23,23,23,0.1) 0%, rgba(23,23,23,0.45) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero__logo {
  display: block;
  width: clamp(260px, 36vw, 480px);
  height: auto;
  margin: 36px auto 0;
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.35));
}
.hero__h1 {
  margin: 32px auto 0;
  max-width: 880px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
  color: rgba(248,246,241,0.95);
  font-style: normal;
  text-align: center;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold-soft);
}
.hero__sub {
  margin-top: 44px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  font-weight: 300;
  color: rgba(248,246,241,0.92);
}
.hero__desc {
  margin: 26px auto 0;
  max-width: 620px;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
  color: rgba(248,246,241,0.85);
}
.hero__actions {
  margin-top: 48px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.7);
  z-index: 3;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(248,246,241,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold);
  animation: scrollLine 2.5s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { top: -100%; }
  100% { top: 100%; }
}

.hero__corner {
  position: absolute;
  z-index: 3;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.7);
}
.hero__corner--tl { display: none; }
.hero__corner--tr { display: none; }
.hero__corner--bl { bottom: 32px; left: var(--pad-x); }
.hero__corner--br { bottom: 32px; right: var(--pad-x); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 26px 0;
  overflow: hidden;
  border-top: 1px solid rgba(248,246,241,0.05);
  border-bottom: 1px solid rgba(248,246,241,0.05);
}
.marquee__track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.04em;
}
.marquee__track span:nth-child(even) {
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ WHY THE PERSIAN WEDDING ============ */
.why {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.why__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why__head {
  margin-bottom: 80px;
  max-width: 760px;
}
.why__body {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 720px;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  line-height: 1.55;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-soft);
}
.why__body p:first-child {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  color: var(--charcoal);
}

.manifesto {
  margin-top: clamp(60px, 9vw, 120px);
  padding-top: clamp(40px, 6vw, 80px);
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.manifesto__line {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.manifesto__line em {
  font-style: italic;
  color: var(--muted);
}
.manifesto__line--gold {
  color: var(--gold);
  margin-top: 8px;
}
.manifesto__line--gold em {
  color: var(--gold);
  font-style: italic;
}

/* ============ FOUNDERS (MEET LEILA & DARMAN) ============ */
.founders {
  padding: var(--pad-y) var(--pad-x);
  background: var(--beige);
}
.founders__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
}
.founder {
  display: flex;
  flex-direction: column;
}
.founder__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  background-color: var(--charcoal);
  transition: transform 1.2s var(--ease);
}
.founder:hover .founder__image {
  transform: scale(0.98);
}
.founder__body {
  padding: 40px 0 0;
}
.founder__label {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.founder__name {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.founder__intro {
  margin-top: 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 460px;
}
.founder__list {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 28px;
}
.founder__list li {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 400;
  position: relative;
  padding-left: 18px;
}
.founder__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 1px;
  background: var(--gold);
}

/* ============ SOFREH AGHD ============ */
.sofreh {
  background: var(--ivory);
  padding-bottom: var(--pad-y);
}
.sofreh__visual {
  position: relative;
  width: 100%;
  height: clamp(420px, 70vh, 720px);
  overflow: hidden;
}
.sofreh__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenburns 22s ease-out infinite alternate;
}
.sofreh__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0.15) 0%, rgba(23,23,23,0) 30%, rgba(23,23,23,0) 60%, rgba(23,23,23,0.4) 100%);
}
.sofreh__caption {
  position: absolute;
  bottom: 32px;
  left: var(--pad-x);
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ivory);
}
.sofreh__inner {
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--pad-x) 0;
}
.sofreh__head {
  max-width: 760px;
  margin-bottom: 60px;
}
.sofreh__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.65;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-soft);
  margin-bottom: clamp(80px, 10vw, 140px);
}
.sofreh__body p:first-child {
  color: var(--charcoal);
}

.sofreh__symbols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.symbol {
  padding: 44px 36px 44px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.5s var(--ease);
}
.symbol:nth-child(3n) { border-right: none; }
.symbol:nth-last-child(-n+3) { border-bottom: none; }
.symbol:hover { padding-left: 12px; padding-right: 24px; }
.symbol__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 14px;
  padding-left: 36px;
}
.symbol__name {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1;
  padding-left: 36px;
  color: var(--charcoal);
}
.symbol__english {
  margin-top: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 36px;
}
.symbol p {
  margin-top: 18px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 320px;
  padding-left: 36px;
}

/* ============ STORY (legacy, kept for safety) ============ */
.story {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.story__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}
.story__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.story__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.5s var(--ease);
}
.story__visual:hover .story__image {
  transform: scale(1);
}
.story__caption {
  position: absolute;
  bottom: 24px; left: 24px;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 8px 14px;
  background: rgba(23,23,23,0.45);
  backdrop-filter: blur(6px);
}
.story__body {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--charcoal-soft);
}
.story__meta {
  margin-top: 56px;
  display: flex;
  gap: 44px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 32px;
}
.story__meta div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.story__meta span {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.story__meta small {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============ SECTION HEAD ============ */
.section-head {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 0 80px;
}

/* ============ ESSAY (long-form SEO sections) ============ */
.essay {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.essay--ivory { background: var(--ivory); }
.essay--beige { background: var(--beige); }
.essay__inner {
  max-width: 820px;
  margin: 0 auto;
}
.essay__body {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  line-height: 1.7;
  font-weight: 300;
  color: var(--charcoal-soft);
}
.essay__body em { font-style: italic; color: var(--gold); }
.essay__body p { margin: 0; }
.essay__lede {
  font-size: clamp(1.35rem, 1.95vw, 1.7rem) !important;
  line-height: 1.5;
  font-style: italic;
  color: var(--charcoal);
  padding-bottom: 12px;
}
.essay__body h3 {
  margin: 24px 0 -4px;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  font-weight: 400;
  font-style: italic;
  color: var(--charcoal);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.essay__close {
  margin-top: 40px !important;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  line-height: 1.55;
  color: var(--charcoal);
}
.essay__cta {
  margin-top: 24px !important;
}
.essay__link {
  display: inline-block;
  margin-top: 32px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
  transition: all 0.4s var(--ease);
}
.essay__link:hover {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
  letter-spacing: 0.35em;
}
.essay__link--light {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.essay__link--light:hover {
  color: var(--ivory);
  border-bottom-color: var(--ivory);
}
.essay__link--center {
  display: block;
  margin: 64px auto 0;
  width: fit-content;
}

/* ============ PERSIAN WEDDING TRADITIONS ============ */
.traditions {
  padding: var(--pad-y) var(--pad-x);
  background: var(--beige);
}
.traditions__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.tradition {
  padding: 48px 36px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.5s var(--ease);
}
.tradition:nth-child(3n) { border-right: none; }
.tradition:hover { background: var(--ivory); }
.tradition__index {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.tradition h3 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.tradition p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 320px;
}

/* ============ WHY EUROPE ============ */
.europe {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.europe__list {
  margin: 64px 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.europe__list li {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.europe__list h3 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.europe__list p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  line-height: 1.6;
  color: var(--charcoal-soft);
  font-weight: 300;
  margin: 0;
  max-width: 620px;
}

/* ============ VENUES ============ */
.venues {
  padding: var(--pad-y) var(--pad-x);
  background: var(--beige);
}
.venues__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.venue {
  padding: 44px 36px 44px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.venue:nth-child(2n) { border-right: none; padding-right: 0; padding-left: 36px; }
.venue:last-child, .venue:nth-last-child(2) { border-bottom: none; }
.venue__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.venue h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 12px;
}
.venue p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--charcoal-soft);
  max-width: 420px;
}

/* ============ PARTNER EXTENSIONS ============ */
.partner__text {
  margin-top: 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(248,246,241,0.78);
  max-width: 520px;
}
.partner--dark .partner__text { color: var(--charcoal-soft); }

/* ============ DESTINATIONS ============ */
.destinations {
  padding: var(--pad-y) var(--pad-x);
  background: var(--beige);
}
.destinations__list {
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.destination {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 240px;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: padding 0.5s var(--ease);
}
.destination:hover { padding-left: 24px; }
.destination__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.destination__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: font-style 0.4s var(--ease), color 0.4s var(--ease);
}
.destination:hover .destination__name {
  font-style: italic;
  color: var(--gold);
}
.destination__region {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.destination__image {
  position: absolute;
  right: 0;
  top: 50%;
  width: 280px;
  height: 180px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.92);
  transition: opacity 0.6s var(--ease), transform 0.7s var(--ease);
  z-index: 5;
}
.destination:hover .destination__image {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ============ REAL WEDDINGS GALLERY ============ */
.weddings {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.gallery {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 360px;
  gap: 24px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease);
}
.gallery__item:hover .gallery__image {
  transform: scale(1.12);
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23,23,23,0) 50%, rgba(23,23,23,0.6) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  color: var(--ivory);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--ease);
}
.gallery__item:hover figcaption {
  transform: translateY(0);
  opacity: 1;
}
.gallery__item figcaption span {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
}
.gallery__item figcaption em {
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 6px;
  display: inline-block;
}

/* ============ CONCIERGE ============ */
.concierge {
  padding: var(--pad-y) var(--pad-x);
  background: var(--beige);
}
.concierge__inner {
  max-width: 1480px;
  margin: 0 auto;
}
.concierge__head {
  max-width: 760px;
  margin-bottom: 80px;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.service {
  padding: 44px 36px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: background 0.5s var(--ease);
  position: relative;
}
.service:nth-child(3n) { border-right: none; }
.service:hover {
  background: var(--ivory);
}
.service span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
}
.service h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin: 16px 0 12px;
  letter-spacing: -0.01em;
}
.service p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  line-height: 1.65;
  max-width: 320px;
}

/* ============ ENTERTAINMENT ============ */
.entertainment {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--pad-y) var(--pad-x);
}
.entertainment__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}
.entertainment__quote {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.3;
  color: var(--gold);
  position: relative;
}
.entertainment__quote span {
  font-size: 1.4em;
  color: var(--gold);
  font-style: normal;
  display: inline-block;
  transform: translateY(0.15em);
  margin: 0 4px;
}
.entertainment__body {
  margin-top: 28px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248,246,241,0.75);
  max-width: 520px;
}
.entertainment__visual {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.entertainment__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.3) brightness(0.9);
  transform: scale(1.05);
  transition: transform 1.5s var(--ease), filter 1s var(--ease);
}
.entertainment__visual:hover .entertainment__image {
  transform: scale(1);
  filter: grayscale(0) brightness(1);
}

/* ============ PARTNER CARD ============ */
.partner {
  margin-top: 48px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line-light);
}
.partner--dark { border-top: 1px solid var(--line); }
.partner__label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.partner__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.partner__role {
  font-size: 0.85rem;
  margin-top: 4px;
  color: rgba(248,246,241,0.7);
}
.partner--dark .partner__role { color: var(--muted); }
.partner__tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.partner__tags li {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--line-light);
  color: rgba(248,246,241,0.8);
  transition: all 0.3s var(--ease);
}
.partner--dark .partner__tags li {
  border-color: var(--line);
  color: var(--charcoal-soft);
}
.partner__tags li:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============ PHOTOGRAPHY ============ */
.photography {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.photography__grid {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(40px, 7vw, 120px);
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
}
.photography__visual {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.photography__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 1.5s var(--ease);
}
.photography__visual:hover .photography__image { transform: scale(1); }
.photography__quote {
  margin-top: 36px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.3vw, 2rem);
  line-height: 1.35;
  color: var(--gold);
}
.photography__body {
  margin-top: 26px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal-soft);
  max-width: 520px;
}

/* ============ JOURNAL ============ */
.journal {
  padding: var(--pad-y) var(--pad-x);
  background: var(--beige);
}
.journal__cats {
  max-width: 1480px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.journal__cats li {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--ivory);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.journal__cats li:hover {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.journal__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.article {
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}
.article:hover { transform: translateY(-6px); }
.article__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  transition: filter 0.6s var(--ease);
}
.article:hover .article__image {
  filter: brightness(0.95);
}
.article__meta {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.article__title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.article__sub {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.6;
}

/* ============ TESTIMONIALS ============ */
.testimonials {
  background: var(--charcoal);
  color: var(--ivory);
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '“';
  position: absolute;
  top: -60px; left: 5%;
  font-family: var(--serif);
  font-size: 22rem;
  color: rgba(200,179,138,0.08);
  line-height: 1;
  pointer-events: none;
}
.testimonials__inner {
  max-width: 1480px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.testimonials__track {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.45;
  color: var(--ivory);
  font-weight: 300;
}
.quote figcaption {
  margin-top: 28px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ CONTACT ============ */
.contact {
  padding: var(--pad-y) var(--pad-x);
  background: var(--ivory);
}
.contact__grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 120px);
}
.contact__info {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.contact__info div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact__info small {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact__info a, .contact__info span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}
.contact__info a:hover { color: var(--gold); font-style: italic; }

/* ============ FORM ============ */
.form {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--beige);
  padding: clamp(32px, 4vw, 56px);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form label span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}
.form input,
.form textarea {
  font-family: var(--sans);
  font-size: 1rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--charcoal);
  transition: border-color 0.4s var(--ease);
  resize: none;
}
.form input:focus,
.form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.form input::placeholder,
.form textarea::placeholder {
  color: rgba(23,23,23,0.35);
  font-family: var(--serif);
  font-style: italic;
}
.form__success {
  display: none;
  font-size: 0.85rem;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.1em;
}
.form__success.is-visible { display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: var(--ivory);
  padding: clamp(60px, 8vw, 100px) var(--pad-x) 36px;
}
.footer__top {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line-light);
}
.footer__logo {
  width: clamp(200px, 22vw, 300px);
  height: auto;
  display: block;
  margin-bottom: 8px;
}
.footer__brand p {
  margin-top: 12px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.6);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.footer__cols div {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__cols small {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer__cols a {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(248,246,241,0.85);
  transition: color 0.3s var(--ease);
}
.footer__cols a:hover { color: var(--gold); font-style: italic; }

.footer__bottom {
  max-width: 1480px;
  margin: 36px auto 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a:hover { color: var(--gold); }

/* ============ REVEAL ANIMATIONS ============ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s var(--ease-out), transform 1.2s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .gallery__item--wide { grid-column: span 2; }
  .journal__grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(3n) { border-right: 1px solid var(--line); }
  .service:nth-child(2n) { border-right: none; }
  .sofreh__symbols { grid-template-columns: repeat(2, 1fr); }
  .symbol:nth-child(3n) { border-right: 1px solid var(--line); }
  .symbol:nth-child(2n) { border-right: none; }
  .symbol:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .symbol:nth-last-child(-n+2) { border-bottom: none; }
  .traditions__grid { grid-template-columns: repeat(2, 1fr); }
  .tradition:nth-child(3n) { border-right: 1px solid var(--line); }
  .tradition:nth-child(2n) { border-right: none; }
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav { padding: 22px var(--pad-x); }

  .story__grid,
  .entertainment__grid,
  .photography__grid,
  .contact__grid,
  .founders__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .photography__visual { order: -1; }
  .founder__list { grid-template-columns: 1fr; gap: 12px; }

  .destination {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
  }
  .destination__region { grid-column: 2; }
  .destination__image { display: none; }

  .testimonials__track { grid-template-columns: 1fr; gap: 60px; }

  .form__row { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; }

  .europe__list li { grid-template-columns: 1fr; gap: 14px; padding: 28px 0; }
  .venues__grid { grid-template-columns: 1fr; }
  .venue { padding: 36px 0 !important; border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .venue:last-child { border-bottom: none !important; }

  .hero__corner--tl, .hero__corner--tr { display: none; }
}

@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery__item--wide,
  .gallery__item--tall { grid-column: auto; grid-row: auto; }
  .journal__grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .service { border-right: none !important; }
  .sofreh__symbols { grid-template-columns: 1fr; }
  .symbol { border-right: none !important; padding-right: 0; }
  .symbol:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
  .symbol:last-child { border-bottom: none; }
  .traditions__grid { grid-template-columns: 1fr; }
  .tradition { border-right: none !important; }
  .tradition:last-child { border-bottom: none; }
  .marquee__track { font-size: 1.1rem; gap: 36px; }
  .hero { min-height: 600px; }
  .hero__corner { font-size: 0.55rem; }
  .hero__corner { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}
