/* ============================================================
   TRENDING MEDIA — style.css
   Premium wedding videography — Ottawa, ON
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --navy-mid:    #142133;
  --navy-light:  #1e3a5f;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-dim:    #a8893c;
  --white:       #ffffff;
  --cream:       #faf8f5;
  --cream-dark:  #f0ebe4;
  --gray:        #6b7280;
  --gray-light:  #9ca3af;
  --text:        #1a2332;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;

  --nav-h:       80px;
  --radius:      4px;
  --radius-lg:   12px;
  --shadow:      0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.18);

  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --transition:  .35s var(--ease-out);
}

/* ── Reset / Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ── Utility ────────────────────────────────────────────── */
.section {
  padding-block: clamp(5rem, 10vw, 9rem);
}
.section--dark  { background: var(--navy); }
.section--cream { background: var(--cream); }

.section__header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section__eyebrow--light { color: var(--gold-light); }

.section__heading {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.15;
  color: var(--navy);
}
.section__heading em {
  font-style: italic;
  color: var(--gold);
}
.section__heading--light { color: var(--white); }

.section__rule {
  width: 64px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-top: 1.25rem;
  border-radius: 2px;
}
.section__rule--center { margin-inline: auto; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 2px solid var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn--full { width: 100%; justify-content: center; }

/* ── Scroll Animations ──────────────────────────────────── */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

.fade-up.visible,
.fade-left.visible,
.fade-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children inside grids */
.packages__grid   .fade-up:nth-child(2) { transition-delay: .1s; }
.packages__grid   .fade-up:nth-child(3) { transition-delay: .2s; }
.portfolio__grid  .fade-up:nth-child(2) { transition-delay: .08s; }
.portfolio__grid  .fade-up:nth-child(3) { transition-delay: .16s; }
.portfolio__grid  .fade-up:nth-child(4) { transition-delay: .24s; }
.portfolio__grid  .fade-up:nth-child(5) { transition-delay: .32s; }
.portfolio__grid  .fade-up:nth-child(6) { transition-delay: .40s; }
.testimonials__grid .fade-up:nth-child(2) { transition-delay: .12s; }
.testimonials__grid .fade-up:nth-child(3) { transition-delay: .24s; }


/* ================================================================
   NAV
================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(13,27,42,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: .03em;
  flex-shrink: 0;
  margin-right: auto;
  transition: color var(--transition);
}
.nav__logo:hover { color: var(--gold-light); }

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.5vw, 2rem);
}
.nav__links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { flex-shrink: 0; font-size: .78rem; padding: .6rem 1.4rem; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,27,42,.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-menu__links a {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
  transition: color var(--transition);
}
.mobile-menu__links a:hover { color: var(--gold); }
.mobile-menu__links .btn {
  font-family: var(--font-sans);
  font-size: .875rem;
  margin-top: 1rem;
}


/* ================================================================
   HERO
================================================================ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  animation: heroZoom 14s var(--ease-out) forwards;
}
@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,.45) 0%,
    rgba(13,27,42,.65) 50%,
    rgba(13,27,42,.8) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding-top: var(--nav-h);
}

.hero__eyebrow {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .9s var(--ease-out) .3s both;
}

.hero__headline {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .9s var(--ease-out) .5s both;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp .9s var(--ease-out) .7s both;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeSlideUp .9s var(--ease-out) .9s both;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin-inline: auto;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}

.hero__br { display: none; }
@media (min-width: 600px) { .hero__br { display: block; } }


/* ================================================================
   ABOUT
================================================================ */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

@media (min-width: 768px) {
  .about__grid { grid-template-columns: 1fr 1fr; }
}

.about__image-wrap {
  position: relative;
}

.about__image {
  width: 100%;
  height: clamp(360px, 55vw, 600px);
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .5;
}

.about__text .section__heading { margin-bottom: 0; }

.about__copy {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray);
  margin-top: 1.25rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.about__stat-num {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--gold);
  line-height: 1;
}
.about__stat-label {
  display: block;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: .35rem;
}


/* ================================================================
   PACKAGES
================================================================ */
.packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .packages__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.package-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border-color: var(--gold-dim);
}

.package-card--featured {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 12px 48px rgba(201,168,76,.15);
}

.package-card__badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 0 var(--radius-lg) 0 var(--radius-lg);
}

.package-card__name {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--white);
}

.package-card__price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.package-card__price-amount {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
}
.package-card__price-currency {
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: .08em;
}

.package-card__features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.package-card__features li {
  font-size: .9rem;
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.5;
}
.check {
  color: var(--gold);
  font-size: .65rem;
  flex-shrink: 0;
  margin-top: .3rem;
}

.packages__note {
  text-align: center;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
}


/* ================================================================
   PORTFOLIO
================================================================ */
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.portfolio__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 220px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .portfolio__item { min-height: 260px; }
}

.portfolio__thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .65s var(--ease-out);
}
.portfolio__item:hover .portfolio__thumb { transform: scale(1.03); }

.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,17,28,.88) 0%, rgba(7,17,28,.35) 45%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: background var(--transition);
}
.portfolio__item:hover .portfolio__overlay {
  background: linear-gradient(to top, rgba(7,17,28,.92) 0%, rgba(7,17,28,.5) 50%, rgba(7,17,28,.1) 100%);
}

.portfolio__play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition);
  flex-shrink: 0;
}
.portfolio__item:hover .portfolio__play {
  background: rgba(255,255,255,.32);
  border-color: var(--white);
  transform: scale(1.08);
  box-shadow: 0 0 32px rgba(255,255,255,.2);
}
.portfolio__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px; /* optical center for play triangle */
}

.portfolio__label {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  right: 1.25rem;
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 1;
  pointer-events: none;
}


/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid var(--gold);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  line-height: .8;
  opacity: .25;
  position: absolute;
  top: 1.25rem;
  left: 1.75rem;
  pointer-events: none;
}

.testimonial-card__text {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--gray);
  flex: 1;
  padding-top: 1.5rem;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-card__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
.testimonial-card__detail {
  font-size: .78rem;
  color: var(--gray-light);
  margin-top: .2rem;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
}


/* ================================================================
   FAQ
================================================================ */
.faq__inner {
  max-width: 780px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1rem;
}

.faq__item {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  gap: 1rem;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--gold); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item.open .faq__icon { transform: rotate(45deg); }
.faq__item.open .faq__question { color: var(--gold); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), padding .5s var(--ease-out);
}
.faq__answer p {
  padding: 0 1.5rem 1.25rem;
  font-size: .92rem;
  line-height: 1.8;
  color: var(--gray);
}
.faq__item.open .faq__answer {
  max-height: 300px;
}


/* ================================================================
   CONTACT
================================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
@media (min-width: 768px) {
  .contact__grid { grid-template-columns: 1fr 1.4fr; }
}

.contact__tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
}
.contact__details a {
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
}
.contact__details a:hover { color: var(--gold); }

.contact__icon {
  font-size: 1.1rem;
  color: var(--gold);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact__social {
  display: flex;
  gap: 1rem;
}
.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.contact__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

/* Form */
.contact__form-wrap {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 520px) {
  .form__row { grid-template-columns: 1fr 1fr; }
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form__group label {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.form__group input,
.form__group select,
.form__group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: .8rem 1rem;
  color: var(--white);
  font-size: .92rem;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.form__group input::placeholder,
.form__group textarea::placeholder {
  color: rgba(255,255,255,.25);
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}
.form__group select option {
  background: var(--navy-mid);
  color: var(--white);
}
.form__group select {
  cursor: pointer;
  color: rgba(255,255,255,.7);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.5);
  cursor: pointer;
}

.form__success {
  text-align: center;
  font-size: .9rem;
  color: var(--gold-light);
  min-height: 1.4em;
}


/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: #07111c;
  padding-block: 4rem 2.5rem;
  border-top: 1px solid rgba(201,168,76,.15);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  transition: color var(--transition);
}
.footer__logo:hover { color: var(--gold-light); }

.footer__tagline {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
  font-style: italic;
  margin-top: .3rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.75rem;
  justify-content: center;
}
.footer__nav a {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: .85rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.footer__social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer__copy {
  font-size: .75rem;
  color: rgba(255,255,255,.25);
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.06);
  width: 100%;
  text-align: center;
}


/* ================================================================
   VIDEO MODAL
================================================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease-out);
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,17,28,.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-modal__box {
  position: relative;
  z-index: 1;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  transform: scale(.9);
  transition: transform .4s var(--ease-out);
}
.video-modal.open .video-modal__box { transform: scale(1); }

.video-modal__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background var(--transition);
}
.video-modal__close:hover { background: var(--gold); color: var(--navy); }

.video-modal__content {
  aspect-ratio: 16/9;
  background: #070f1a;
}

.video-modal__placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.35);
}
.video-modal__placeholder svg { opacity: .4; }
.video-modal__placeholder p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.video-modal__placeholder span { font-size: .8rem; }

/* YouTube iframe inside modal */
.video-modal__video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal__video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ── Blog Post Modal ─────────────────────────────────── */
.blog-modal {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.blog-modal.open {
  pointer-events: all;
  opacity: 1;
}

.blog-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(4px);
}

.blog-modal__box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  width: min(720px, 94vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition);
  overflow: hidden;
}

.blog-modal.open .blog-modal__box { transform: translateY(0); }

.blog-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  z-index: 2;
  flex-shrink: 0;
}

.blog-modal__close:hover { background: var(--gold); color: var(--navy); }

.blog-modal__content {
  padding: 2.5rem 2.5rem 2rem;
  overflow-y: auto;
  flex: 1;
}

.blog-modal__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.blog-modal__category {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 2px;
}

.blog-modal__date {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--gray);
}

.blog-modal__title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 1.25rem;
}

.blog-modal__title + .section__rule {
  margin-bottom: 1.5rem;
}

.blog-modal__body p {
  font-family: var(--font-sans);
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.blog-modal__body p:last-child { margin-bottom: 0; }

/* card title link reset */
.blog-card__title a {
  color: inherit;
  text-decoration: none;
}

.blog-card__title a:hover { color: var(--gold); }

/* ── Portfolio two-column layout ─────────────────────── */
.portfolio__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2.5rem;
}
.portfolio__col-heading {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gold);
  letter-spacing: .03em;
}

/* ── Packages add-on block ───────────────────────────── */
.packages__addon {
  margin: 2rem auto 0;
  max-width: 600px;
  text-align: center;
  padding: 1.25rem 2rem;
  border: 1px solid rgba(var(--gold-rgb, 197,160,80), .35);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
}
.packages__addon-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: .05em;
}
.packages__addon-item {
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  line-height: 1.6;
}
.packages__addon-item strong { color: #fff; }

/* Two-package grid (centred) */
.packages__grid--two {
  grid-template-columns: repeat(2, minmax(280px, 400px));
  justify-content: center;
}


/* ================================================================
   BLOG
================================================================ */
.blog__subheading {
  font-size: .98rem;
  color: var(--gray);
  max-width: 560px;
  margin-inline: auto;
  margin-top: .85rem;
  line-height: 1.75;
}

.blog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog__grid { grid-template-columns: repeat(3, 1fr); }
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
}

.blog-card__img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  flex-shrink: 0;
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease-out);
}
.blog-card:hover .blog-card__img { transform: scale(1.05); }

.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--navy);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
  z-index: 1;
}

.blog-card__body {
  padding: 1.6rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.blog-card__title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--navy);
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: .88rem;
  line-height: 1.78;
  color: var(--gray);
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid var(--cream-dark);
}

.blog-card__date {
  font-size: .75rem;
  color: var(--gray-light);
  letter-spacing: .03em;
}

.blog-card__read-more {
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  transition: color var(--transition);
}
.blog-card__read-more:hover { color: var(--gold-dim); }

/* Stagger blog cards */
.blog__grid .fade-up:nth-child(2) { transition-delay: .08s; }
.blog__grid .fade-up:nth-child(3) { transition-delay: .16s; }
.blog__grid .fade-up:nth-child(4) { transition-delay: .24s; }


/* ================================================================
   RESPONSIVE OVERRIDES
================================================================ */
@media (max-width: 767px) {
  .nav__links,
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .hero__headline { font-size: clamp(2.4rem, 12vw, 3.5rem); }

  .about__image-accent { display: none; }

  .packages__grid { grid-template-columns: 1fr; }
  .package-card--featured { order: -1; }

  .portfolio__two-col { grid-template-columns: 1fr; gap: 2rem; }
  .portfolio__grid { grid-template-columns: 1fr; }
  .packages__grid--two { grid-template-columns: 1fr; }

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

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

@media (min-width: 768px) and (max-width: 1024px) {
  .nav__links { gap: 1rem; }
  .nav__links a { font-size: .75rem; }
}

/* ── Print ──────────────────────────────────────────────── */
@media print {
  .nav, .hero__scroll-hint, .video-modal { display: none; }
}
