/* ============================================================
   One Heart Wedding Films — Main Stylesheet
   Palette: gold #C9A84C | light gold #E8D5A3 | dark #111
   Fonts: Cormorant Garamond (headings) | Montserrat (body)
   ============================================================ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #a07830;
  --dark:        #111111;
  --dark-mid:    #1e1e1e;
  --off-white:   #f8f6f2;
  --white:       #ffffff;
  --text:        #3a3028;
  --text-light:  #7a6e64;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', 'Helvetica Neue', sans-serif;
  --transition:  0.35s ease;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-subtitle {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--text-light);
  max-width: 540px;
}
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 3rem;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-light));
}
.divider::after { background: linear-gradient(to left, transparent, var(--gold-light)); }
.divider span {
  font-size: 1rem;
  color: var(--gold);
  line-height: 1;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.5rem;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold {
  color: var(--gold);
  border-color: var(--gold);
  background: transparent;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-white {
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  background: transparent;
}
.btn-white:hover {
  background: var(--white);
  color: var(--dark);
}
.btn-dark {
  color: var(--white);
  border-color: var(--dark);
  background: var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
}
.btn-gold-solid {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
}
.btn-gold-solid:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

/* ════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 0;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.nav__logo { justify-self: start; }
.nav__links { justify-self: center; }
.nav__hamburger { justify-self: end; }
.nav.pinned .nav__inner {
  grid-template-columns: auto 1fr;
}
.nav.pinned .nav__links {
  justify-self: end;
}
#navSentinel {
  height: 0;
  visibility: hidden;
}
.nav__logo img {
  height: 56px;
  width: auto;
  opacity: 0;
  transition: opacity var(--transition);
}
.nav.pinned .nav__logo img {
  opacity: 1;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { transform: scaleX(1); }
.nav.scrolled .nav__links a { color: var(--dark); }
.nav__links .nav-cta a {
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 0.5rem 1.25rem;
}
.nav__links .nav-cta a:hover {
  background: var(--gold);
  color: var(--white) !important;
}
.nav__links .nav-cta a::after { display: none; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav__hamburger span:nth-child(1) { width: 32px; }
.nav__hamburger span:nth-child(2) { width: 32px; }
.nav__hamburger span:nth-child(3) { width: 32px; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 28px; }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 28px; }

/* ════════════════════════════════════════
   HERO — light theme
   ════════════════════════════════════════ */
.hero {
  background: var(--dark);
  display: flex;
  justify-content: center;
  line-height: 0;
}
.hero__video {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
}

/* ════════════════════════════════════════
   INTRO STRIP
   ════════════════════════════════════════ */
.intro {
  background: var(--dark);
  position: relative;
  padding: 5rem 0;
  text-align: center;
}
.intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 0;
}
.intro__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 100%;
  padding: 0 2rem;
}
.intro__inner > img,
.intro__inner > h2,
.intro__inner > p,
.intro__inner > .intro__line {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.intro__logo {
  width: min(275px, 62.5vw);
  margin-bottom: 1.5rem;
}
.intro__tagline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.25;
  color: var(--off-white);
  margin-bottom: 0.5rem;
}
.intro__tagline em {
  font-style: normal;
  color: var(--gold);
}
.intro p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
}
.intro p strong {
  font-style: normal;
  font-weight: 600;
  color: var(--gold);
}
.intro__line {
  background: var(--gold);
}
.intro__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 2.75rem auto;
}
.callout {
  padding: 5rem 0;
  background: var(--dark);
  text-align: center;
}
.callout__text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  font-style: normal;
  font-weight: 600;
  color: var(--gold-dark);
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto;
}
.intro__callout {
  margin: 2.75rem auto 0;
  max-width: 900px;
  padding: 2.5rem 2.5rem 2.5rem;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  text-align: left;
  background: var(--off-white) url('../assets/hero-bg-light.jpg') center center / cover no-repeat;
}
.intro__callout::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248,246,242,0.35);
  z-index: 0;
  pointer-events: none;
}
.intro__callout > * {
  position: relative;
  z-index: 1;
}
.intro__callout::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.intro__callout-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: normal !important;
  font-weight: 600 !important;
  color: var(--gold-dark) !important;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.01em;
}
.intro__callout-text strong {
  font-weight: 600 !important;
  font-style: normal !important;
  color: #7a5a1e !important;
  font-size: 140% !important;
  line-height: 1 !important;
}

/* ── Video frames ── */
.intro__frames {
  position: relative;
  width: 300px;
  height: 340px;
  flex-shrink: 0;
}
.intro__frame {
  position: absolute;
  width: 160px;
  aspect-ratio: 9/16;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  border: 3px solid #fff;
}
.intro__frame--1 {
  top: 0;
  left: 0;
  transform: rotate(-5deg);
  z-index: 1;
}
.intro__frame--2 {
  bottom: 0;
  right: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.intro__frame-placeholder {
  width: 100%;
  height: 100%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}

/* ════════════════════════════════════════
   PORTFOLIO
   ════════════════════════════════════════ */
.portfolio {
  padding: 7rem 0;
  background: var(--off-white);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.portfolio::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('../assets/hero-bg-light.jpg') center center / cover no-repeat;
  transform: scale(1.25);
  z-index: 0;
  pointer-events: none;
}
.portfolio::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  z-index: 1;
  pointer-events: none;
}
.portfolio .container {
  position: relative;
  z-index: 2;
}
.portfolio__header {
  text-align: center;
  margin-bottom: 1rem;
}
.portfolio__header .section-title { color: var(--dark); }
.portfolio__header .section-subtitle {
  margin: 0 auto;
  text-align: center;
  color: var(--text-light);
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
}
.film-card {
  background: var(--white);
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.film-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.film-card__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--dark-mid);
}
.film-card__embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.film-card__embed::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46px;
  background: var(--white);
  z-index: 3;
}
.film-card__info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46px;
  z-index: 4;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  border-bottom: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.film-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.08);
  transition: background var(--transition);
}
.film-card__overlay:hover {
  background: rgba(0,0,0,0.22);
}
.film-card__overlay:hover .film-card__play {
  transform: scale(1.1);
  background: var(--gold);
  border-color: var(--gold);
}
.film-card__play { display: none; }
.film-card__play svg { display: none; }

/* ── VIDEO LIGHTBOX MODAL ── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal.open { display: flex; }
.modal__content {
  position: relative;
  width: 100%;
  max-width: 960px;
}
.modal__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}
.modal__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.modal__close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity var(--transition);
  padding: 0.25rem 0.5rem;
}
.modal__close:hover { opacity: 1; }
.film-card__names {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.film-card__meta {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ════════════════════════════════════════
   REVIEWS
   ════════════════════════════════════════ */
.reviews {
  padding: 7rem 0;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.reviews__header {
  text-align: center;
  margin-bottom: 1rem;
}
.reviews__header .section-label { color: var(--gold); }
.reviews__header .section-title { color: var(--off-white); }
.reviews__header .section-title em { color: var(--gold); }
.reviews__header .divider::before { background: linear-gradient(to right, transparent, rgba(201,168,76,0.4)); }
.reviews__header .divider::after  { background: linear-gradient(to left,  transparent, rgba(201,168,76,0.4)); }
.reviews__header .divider span    { color: var(--gold); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.review {
  border: 3px solid var(--gold-dark);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
  padding: 3.25rem 2rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.review::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-dark);
  opacity: 0.45;
}
.review__stars {
  font-size: 0.9rem;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
}
.review__quote {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  border: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.review__name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}
.review__source {
  color: var(--text-light);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.review__gbadge {
  position: absolute;
  top: 1.9rem;
  right: 1.75rem;
  width: 24px;
  height: 24px;
  line-height: 0;
}
.review__gbadge svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ════════════════════════════════════════
   PRICING
   ════════════════════════════════════════ */
.pricing {
  padding: 7rem 0;
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  inset: -10%;
  background: url('../assets/hero-bg-light.jpg') center center / cover no-repeat;
  transform: scale(1.25);
  z-index: 0;
  pointer-events: none;
}
.pricing::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.25);
  z-index: 1;
  pointer-events: none;
}
.pricing .container {
  position: relative;
  z-index: 2;
}
.pricing__header { text-align: center; margin-bottom: 1rem; }
.pricing__header .section-subtitle { margin: 0 auto; text-align: center; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.price-card {
  border: 1px solid var(--gold);
  padding: 2.5rem 2rem;
  position: relative;
  background: rgba(255,255,255,0.75);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.price-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.price-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,0.15);
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1.25rem;
}
.price-card__tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  text-align: center;
}
.price-card__name {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}
.price-card__amount {
  font-family: var(--serif);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.25rem;
  text-align: center;
}
.price-card__amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  font-weight: 400;
}
.price-card__note {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}
.price-card__divider {
  height: 1px;
  background: #ede9e2;
  margin: 1.75rem 0;
}
.price-card.featured .price-card__divider { background: var(--gold-light); }
.price-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.5;
}
.price-card__emphasis {
  color: var(--gold-dark);
  font-weight: 600;
}
.price-card__features li::before {
  content: '';
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23C9A84C'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") center / contain no-repeat;
}
.price-card__cta { width: 100%; text-align: center; }
.pricing__note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.8rem;
  color: var(--text-light);
}
.pricing__note a { color: var(--gold); text-decoration: none; }
.pricing__note a:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   CONTACT LEAD-IN
   ════════════════════════════════════════ */
.contact-leadin {
  padding: 5rem 0;
  background: var(--dark);
  text-align: center;
}
.contact-leadin__text {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.8;
  max-width: 780px;
  margin: 0 auto 1.5rem;
}
.contact-leadin__text:last-child { margin-bottom: 0; }

/* ════════════════════════════════════════
   CONTACT
   ════════════════════════════════════════ */
.contact {
  padding: 7rem 0;
  background: var(--dark);
}
/* ── Contact dark theme (revert: delete this block + set bg back to var(--off-white)) ── */
.contact .section-title { color: var(--off-white); }
.contact .section-title em { color: var(--gold); }
.contact .section-subtitle { color: rgba(255,255,255,0.7); }
.contact .contact__item-text strong { color: var(--gold); }
.contact .contact__item-text span { color: var(--gold); }
/* ── end contact dark theme ── */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact__info .section-label,
.contact__info .section-title { text-align: center; }
.contact__info .section-subtitle {
  margin-bottom: 2.5rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.contact__item-text { text-align: center; }
.contact__map {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0.5rem;
  border: 1px solid var(--gold-light);
  border-radius: 4px;
}
.contact__icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact__icon svg { width: 16px; height: 16px; }
.contact__item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.contact__item-text span, .contact__item-text a {
  font-size: 0.9rem;
  color: var(--text);
  text-decoration: none;
}
.contact__item-text a:hover { color: var(--gold); }
.contact__form {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.form__group label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--dark);
  background: var(--off-white);
  border: 1px solid #ede9e2;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  width: 100%;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form__group textarea { resize: vertical; min-height: 120px; }
.form__submit { margin-top: 0.5rem; }
.form__submit .btn { width: 100%; }
.form__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-dark);
}
.form__success svg { width: 48px; height: 48px; margin: 0 auto 1rem; display: block; }

/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq {
  padding: 7rem 0;
  background: var(--white);
  border-top: 2px solid var(--gold);
}
.faq__header { text-align: center; margin-bottom: 1rem; }
.faq__list {
  max-width: 760px;
  margin: 3rem auto 0;
}
.faq__item {
  border-bottom: 1px solid var(--gold-light);
}
.faq__item:first-child {
  border-top: 1px solid var(--gold-light);
}
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0.25rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--dark);
  transition: color var(--transition);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-dark); }
.faq__q::after {
  content: '+';
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold-dark);
  transition: transform var(--transition);
}
.faq__item[open] .faq__q::after {
  content: '\2212';
}
.faq__a {
  padding: 0 0.25rem 1.75rem;
}
.faq__a p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer__logo img {
  height: 52px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer__nav {
  display: flex;
  list-style: none;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__nav a {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold); }
.footer__divider {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.08);
}
.footer__copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.05em;
}
.footer__copy a {
  color: var(--gold);
  text-decoration: none;
  opacity: 0.8;
}

/* ════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ════════════════════════════════════════
   MOBILE / RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro__callout {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    text-align: center !important;
    padding: 2rem 1.25rem !important;
  }
  .intro__frames {
    order: -1;
    width: 272px;
    height: 312px;
    margin: 0 auto 0.5rem;
    justify-self: center;
  }
  .intro__frame { width: 142px; }
}

@media (max-width: 900px) {
  .reviews__grid { grid-template-columns: 1fr; }
  .reviews { background: var(--dark) !important; }
  .reviews__header { text-align: center !important; }
  .reviews__header .section-label,
  .reviews__header .section-title { text-align: center !important; display: block; }
  .review { padding: 2.5rem 1.75rem; overflow: visible; }
  .review::before { display: block; }
}

@media (max-width: 768px) {
  /* Initial state (before scrolling): show nav links as buttons, hide hamburger */
  .nav:not(.pinned) .nav__links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.65rem;
  }
  .nav:not(.pinned) .nav__links a {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }
  .nav:not(.pinned) .nav__links .nav-cta a {
    color: var(--text) !important;
    border: none;
    padding: 0;
  }
  .nav:not(.pinned) .nav__hamburger { display: none; }
  .nav:not(.pinned) .nav__logo { display: none; }
  .nav:not(.pinned) .nav-faq { display: none; }
  .nav:not(.pinned) { padding: 1.35rem 0; }
  .nav:not(.pinned) .nav__inner { grid-template-columns: 1fr; }
  .nav:not(.pinned) .nav__links { justify-self: center; }
  .nav-cta__extra { display: none; }

  /* Scrolled state (pinned): hamburger menu */
  .nav.pinned .nav__links { display: none; flex-direction: column; }
  .nav.pinned .nav__links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--dark);
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    z-index: 999;
    padding: 9rem 2.5rem 0;
  }
  .nav.pinned .nav__links.open::after {
    content: '';
    order: 2;
    width: 60px;
    height: 60px;
    background: url('../assets/logo_graphic.png') center / contain no-repeat;
  }
  .nav.pinned .nav__links.open .nav-faq { order: 1; }
  .nav.pinned .nav__links.open a { font-size: 1rem; color: var(--white) !important; }
  .nav.pinned .nav__links.open .nav-cta a {
    color: var(--white) !important;
    border: none;
    padding: 0;
  }
  .nav.pinned .nav__hamburger { display: flex; z-index: 1001; }
  .nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__hamburger.open span:nth-child(2) { opacity: 0; }
  .nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .portfolio__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .hero__tagline { font-size: clamp(2rem, 8vw, 3rem); }
  .intro__callout { grid-template-columns: 1fr; text-align: center; }
  .intro__frames { order: -1; margin: 0 auto 0.5rem; }
  .portfolio { padding: 4rem 0; }
  .pricing { padding: 4rem 0; }
  .contact { padding: 4rem 0; }
}
