:root {
  --ink:      #1a1714;
  --ink-soft: #2e2a27;
  --ivory:    #f7f4ef;
  --warm:     #ede8e0;
  --gold:     #c9a96e;
  --gold-dim: #a8885a;
  --rose:     #d4b8a8;
  --muted:    #7a7068;
  --white:    #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --radius: 2px;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--ivory); color: var(--ink); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.eyebrow { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.section__header { text-align: center; max-width: 640px; margin: 0 auto 4rem; }
.section__header h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2; color: var(--ink); margin-bottom: 1rem; }
.section__sub { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.btn { display: inline-block; padding: 0.85rem 2rem; font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; transition: all 0.3s var(--ease); border: 1px solid transparent; border-radius: var(--radius); }
.btn--dark { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink-soft); }
.btn--light { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn--light:hover { background: var(--warm); }
.btn--ghost { background: transparent; color: var(--ivory); border-color: rgba(247,244,239,0.5); }
.btn--ghost:hover { border-color: var(--ivory); }
.btn--gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dim); }
.btn--full { width: 100%; text-align: center; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2.5rem; transition: background 0.4s var(--ease), padding 0.4s var(--ease); }
.nav.scrolled { background: rgba(26,23,20,0.97); backdrop-filter: blur(8px); padding: 1rem 2.5rem; }
.nav__logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; letter-spacing: 0.06em; color: var(--ivory); }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__links a { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,244,239,0.8); transition: color 0.2s; }
.nav__links a:hover { color: var(--ivory); }
.nav__cta { padding: 0.55rem 1.4rem !important; border: 1px solid rgba(247,244,239,0.4) !important; border-radius: var(--radius); }
.nav__cta:hover { border-color: var(--ivory) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 1.5px; background: var(--ivory); transition: all 0.3s; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(135deg, #1a1714 0%, #2e2218 100%); }
.hero__bg { position: absolute; inset: 0; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,23,20,0.35) 0%, rgba(26,23,20,0.55) 50%, rgba(26,23,20,0.75) 100%); }
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 760px; padding: 0 2rem; }
.hero__eyebrow { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.hero__headline { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 300; line-height: 1.05; color: var(--ivory); margin-bottom: 1.5rem; }
.hero__headline em { font-style: italic; color: var(--rose); }
.hero__sub { font-size: 1rem; color: rgba(247,244,239,0.75); margin-bottom: 2.5rem; line-height: 1.6; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(247,244,239,0.5); }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* PROOF BAR */
.proof-bar { background: var(--ink); padding: 2rem 0; }
.proof-bar__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.proof-bar__item { display: flex; flex-direction: column; align-items: center; padding: 0.5rem 3rem; gap: 0.25rem; }
.proof-bar__item strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; color: var(--gold); line-height: 1; }
.proof-bar__item span { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.5); }
.proof-bar__divider { width: 1px; height: 36px; background: rgba(247,244,239,0.12); }

/* WORK */
.work { background: var(--ivory); }
.work__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.film-card { position: relative; overflow: hidden; border-radius: var(--radius); }
.film-card__thumb { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--warm); }
.film-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.film-card:hover .film-card__thumb img { transform: scale(1.04); }
.film-card__play { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: rgba(26,23,20,0.3); transition: background 0.3s; }
.film-card__play:hover { background: rgba(26,23,20,0.5); }
.film-card__play svg { width: 52px; height: 52px; color: var(--ivory); filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.film-card__info { padding: 1.25rem 0 0.5rem; }
.film-card__info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; color: var(--ink); margin-bottom: 0.25rem; }
.film-card__info p { font-size: 0.78rem; color: var(--muted); letter-spacing: 0.05em; }

/* APPROACH */
.approach { background: var(--warm); }
.approach__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.approach__visual { position: relative; }
.approach__visual img { width: 100%; border-radius: var(--radius); position: relative; z-index: 1; }
.approach__accent-block { position: absolute; bottom: -1.5rem; right: -1.5rem; width: 60%; height: 60%; background: var(--gold); opacity: 0.15; border-radius: var(--radius); z-index: 0; }
.approach__copy h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
.approach__copy p { color: var(--muted); margin-bottom: 1.25rem; font-size: 0.97rem; }
.approach__list { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.approach__list li { display: flex; align-items: flex-start; gap: 0.85rem; font-size: 0.9rem; color: var(--ink-soft); }
.approach__icon { color: var(--gold); font-size: 0.45rem; margin-top: 0.55rem; flex-shrink: 0; }

/* TESTIMONIALS */
.testimonials { background: var(--ink); }
.testimonials .section__header h2 { color: var(--ivory); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--radius); padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem; }
.testimonial p { font-family: var(--font-display); font-size: 1.1rem; font-style: italic; line-height: 1.65; color: rgba(247,244,239,0.85); font-weight: 300; }
.testimonial footer { display: flex; flex-direction: column; gap: 0.25rem; }
.testimonial cite { font-style: normal; font-size: 0.85rem; font-weight: 500; color: var(--ivory); }
.testimonial__venue { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--gold); }

/* ABOUT */
.about { background: var(--warm); }
.about__inner { display: grid; grid-template-columns: 5fr 7fr; gap: 6rem; align-items: center; }
.about__img-wrap { position: relative; }
/* FIX: natural portrait orientation, no stretching */
.about__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.about__img-tag { position: absolute; bottom: -1.5rem; right: -1.5rem; background: var(--gold); color: var(--ink); padding: 1.25rem 1.5rem; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.5; border-radius: var(--radius); }
.about__copy h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 300; line-height: 1.15; margin-bottom: 1.5rem; }
.about__copy p { color: var(--muted); margin-bottom: 1.1rem; font-size: 0.97rem; line-height: 1.75; }
.about__gear { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(26,23,20,0.1); }
.about__gear h4 { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.gear__list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.gear__tag { background: rgba(26,23,20,0.06); border-radius: 999px; padding: 0.3rem 0.85rem; font-size: 0.78rem; color: var(--ink-soft); }

/* PACKAGES */
.packages { background: var(--ivory); }
.packages__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; align-items: start; }
.package-card { background: var(--white); border: 1px solid var(--warm); border-radius: var(--radius); padding: 2.5rem 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; transition: box-shadow 0.3s; }
.package-card:hover { box-shadow: 0 8px 40px rgba(26,23,20,0.08); }
.package-card--featured { background: var(--ink); border-color: var(--ink); transform: translateY(-8px); box-shadow: 0 16px 60px rgba(26,23,20,0.2); }
.package-card__badge { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: rgba(201,169,110,0.12); padding: 0.3rem 0.75rem; border-radius: 999px; align-self: flex-start; margin-bottom: -0.5rem; }
.package-card__tier { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--ink); }
.package-card--featured .package-card__tier { color: var(--ivory); }
.package-card__price { font-size: 0.85rem; color: var(--muted); }
.package-card--featured .package-card__price { color: rgba(247,244,239,0.6); }
.package-card__price strong { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: var(--ink); display: block; line-height: 1.1; }
.package-card--featured .package-card__price strong { color: var(--ivory); }
.package-card__features { display: flex; flex-direction: column; gap: 0.7rem; border-top: 1px solid var(--warm); padding-top: 1.25rem; flex: 1; }
.package-card--featured .package-card__features { border-color: rgba(255,255,255,0.1); }
.package-card__features li { font-size: 0.82rem; color: var(--muted); display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.package-card--featured .package-card__features li { color: rgba(247,244,239,0.7); }
.package-card__features li::before { content: '–'; color: var(--gold); flex-shrink: 0; }
.packages__addons { margin-top: 3rem; background: var(--warm); border-radius: var(--radius); padding: 2.5rem 3rem; }
.packages__addons h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 1.5rem; color: var(--ink); }
.addons__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 0 2rem; }
.addon-item { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid rgba(26,23,20,0.08); font-size: 0.875rem; }
.addon-item span:first-child { color: var(--ink-soft); }
.addon-item span:last-child { color: var(--gold-dim); font-weight: 500; white-space: nowrap; padding-left: 1rem; }
.packages__faqs { margin-top: 3rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.faq-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 0.5rem; color: var(--ink); }
.faq-item p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.packages__note { margin-top: 2.5rem; text-align: center; font-size: 0.85rem; color: var(--muted); }
.packages__note a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* BLOG PREVIEW */
.blog-preview { background: var(--ivory); }
.blog-preview__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--warm); transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.blog-card:hover { box-shadow: 0 12px 48px rgba(26,23,20,0.09); transform: translateY(-3px); }
.blog-card__link { display: block; color: var(--ink); }
.blog-card__img-wrap { overflow: hidden; aspect-ratio: 16/10; background: var(--warm); }
.blog-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.04); }
.blog-card__body { padding: 1.75rem; }
.blog-card__tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.blog-card__body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; line-height: 1.35; margin-bottom: 0.75rem; }
.blog-card__body p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.blog-card__read { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; color: var(--gold); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.blog-card:hover .blog-card__read { border-color: var(--gold); }
.blog-preview__cta { text-align: center; margin-top: 3rem; }

/* CONTACT */
.contact { background: var(--ink); }
.contact__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.contact__copy .eyebrow { color: var(--gold); }
.contact__copy h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 300; color: var(--ivory); line-height: 1.15; margin-bottom: 1.25rem; }
.contact__copy > p { color: rgba(247,244,239,0.6); margin-bottom: 2rem; font-size: 0.97rem; }
.contact__details { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 2rem; }
.contact__details li { font-size: 0.88rem; color: rgba(247,244,239,0.6); }
.contact__details a { color: var(--gold); transition: opacity 0.2s; }
.contact__details a:hover { opacity: 0.75; }
.contact__phone { margin-bottom: 0.5rem; }
.contact__phone a { font-family: var(--font-display); font-size: 1.5rem; color: var(--ivory) !important; font-weight: 300; }
.contact__socials { display: flex; gap: 1.5rem; }
.contact__socials a { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(247,244,239,0.5); border-bottom: 1px solid rgba(247,244,239,0.2); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.contact__socials a:hover { color: var(--gold); border-color: var(--gold); }
.contact__form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.5); }
.field input, .field select, .field textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 0.9rem; color: var(--ivory); outline: none; transition: border-color 0.2s; -webkit-appearance: none; }
.field select option { background: var(--ink); color: var(--ivory); }
.field input::placeholder, .field textarea::placeholder { color: rgba(247,244,239,0.3); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
.footer { background: rgba(0,0,0,0.4); border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
.footer__logo { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--ivory); letter-spacing: 0.05em; }
.footer__tagline { font-size: 0.72rem; color: rgba(247,244,239,0.4); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 0.25rem; }
.footer__nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer__nav a { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(247,244,239,0.5); transition: color 0.2s; }
.footer__nav a:hover { color: var(--ivory); }
.footer__legal { text-align: right; }
.footer__legal p { font-size: 0.75rem; color: rgba(247,244,239,0.35); line-height: 1.6; }
.footer__legal a { color: var(--gold); }

/* VIDEO MODAL */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 999; align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.active { display: flex; }
.modal-inner { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; background: #000; }
.modal-inner iframe { width: 100%; height: 100%; border: none; }
.modal-close { position: absolute; top: -3rem; right: 0; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.modal-close:hover { color: #fff; }

/* BLOG INDEX */
.page-hero { background: var(--ink); padding: 10rem 0 5rem; text-align: center; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); font-weight: 300; color: var(--ivory); line-height: 1.1; margin-bottom: 1rem; }
.page-hero p { color: rgba(247,244,239,0.6); max-width: 560px; margin: 0 auto; font-size: 1rem; }
.blog-index { background: var(--ivory); }
.blog-index__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* SINGLE BLOG */
.blog-post__hero { background: var(--ink); padding: 9rem 0 0; }
.blog-post__hero-img { width: 100%; max-height: 520px; object-fit: cover; margin-top: 3rem; }
.blog-post__content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem 6rem; }
.blog-post__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.blog-post__tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.blog-post__date { font-size: 0.78rem; color: var(--muted); }
.blog-post__content h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 300; line-height: 1.2; margin-bottom: 2rem; color: var(--ink); }
.blog-post__content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin: 2.5rem 0 1rem; color: var(--ink); }
.blog-post__content p { color: var(--muted); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.8; }
.blog-post__content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post__content ul li { color: var(--muted); margin-bottom: 0.5rem; font-size: 1rem; line-height: 1.7; }
.blog-post__cta { background: var(--warm); border-radius: var(--radius); padding: 2.5rem; margin-top: 3rem; text-align: center; }
.blog-post__cta p { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-bottom: 1.25rem; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .packages__grid { grid-template-columns: repeat(2, 1fr); }
  .package-card--featured { transform: none; }
  .packages__faqs { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .work__grid, .testimonials__grid, .blog-preview__grid, .blog-index__grid { grid-template-columns: repeat(2, 1fr); }
  .approach__inner, .contact__inner, .about__inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .nav__links { display: none; position: fixed; inset: 0; background: rgba(26,23,20,0.98); flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; z-index: 99; }
  .nav__links.open { display: flex; }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: flex; z-index: 100; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .proof-bar__item { padding: 0.75rem 1.5rem; }
  .proof-bar__divider { display: none; }
  .work__grid, .testimonials__grid, .blog-preview__grid, .blog-index__grid { grid-template-columns: 1fr; }
  .packages__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__legal { text-align: left; }
  .section { padding: 4rem 0; }
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }
