@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400&family=Inter:wght@300;400&display=swap');

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

:root {
  --gold: #c9a96e;
  --gold-light: #d4a574;
  --gold-dark: #b8954f;
  --black: #1a1a1a;
  --white: #ffffff;
  --cream: #faf9f7;
  --warm-gray: #f2f0ec;
  --text-gray: #6b6b6b;
  --text-light: #9a9a9a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, box-shadow 0.5s;
  padding: 0 3rem;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo img { height: 64px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
  color: white;
}
.navbar.scrolled .nav-links a { color: var(--black); }
.nav-links a:hover,
.nav-links a.active { color: var(--gold-light) !important; }
.nav-cta {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid white;
  color: white;
  transition: all 0.3s;
}
.navbar.scrolled .nav-cta {
  border-color: var(--black);
  color: var(--black);
}
.nav-cta:hover {
  background: white;
  color: var(--black) !important;
}
.navbar.scrolled .nav-cta:hover {
  background: var(--black);
  color: white !important;
}

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: all 0.3s;
}
.navbar.scrolled .hamburger span { background: var(--black); }
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: white;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .close-btn {
  position: absolute;
  top: 28px; right: 24px;
  background: none; border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--black);
}

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 800px;
}
.page-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin-bottom: 1rem;
}
.page-hero-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}

/* ─── SECTION HEADING ─── */
.section-heading {
  text-align: center;
  margin-bottom: 4rem;
}
.section-heading .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.section-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--black);
  margin-bottom: 1.25rem;
}
.section-heading h2.light { color: white; }
.section-heading p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-gray);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}
.section-heading p.light { color: rgba(255,255,255,0.7); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.btn-gold { background: var(--gold); color: white; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-dark { background: var(--black); color: white; }
.btn-dark:hover { background: #333; }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.4); color: white; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ─── HERO SLIDESHOW ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.75));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content h1 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  color: white;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-family: 'Playfair Display', serif;
}
.hero-content .hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 1rem;
  line-height: 1.7;
}
.hero-content .hero-sub2 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.hero-dot {
  height: 2px;
  background: rgba(255,255,255,0.4);
  width: 24px;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  padding: 0;
}
.hero-dot.active { width: 48px; background: var(--gold-light); }

/* ─── HOME SECTIONS ─── */
.about-preview {
  padding: 6rem 3rem;
  background: white;
}
.about-preview-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-preview-img { position: relative; }
.about-preview-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-preview-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.about-preview-text .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.about-preview-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.about-preview-text p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.services-section {
  padding: 6rem 3rem;
  background: var(--cream);
}
.services-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.service-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.service-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}
.service-card-overlay .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-card-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 0.5rem;
}
.service-card-overlay p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.editorial-banner {
  padding: 5rem 3rem;
  background: var(--black);
  text-align: center;
}
.editorial-banner-inner { max-width: 900px; margin: 0 auto; }
.editorial-banner p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: white;
  line-height: 1.5;
  font-style: italic;
}
.editorial-banner span { color: var(--gold); font-style: normal; }

.process-section {
  padding: 6rem 3rem;
  background: white;
}
.process-inner { max-width: 1400px; margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}
.process-step { text-align: center; }
.process-step .num {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.process-step p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.testimonials-section {
  padding: 6rem 3rem;
  background: var(--black);
  overflow: hidden;
}
.testimonials-inner { max-width: 900px; margin: 0 auto; }
.testimonial-track { min-height: 280px; display: flex; align-items: center; }
.testimonial-slide {
  display: none;
  text-align: center;
  animation: fadeIn 0.5s ease;
}
.testimonial-slide.active { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: white;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
}
.testimonial-name {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.testimonial-detail {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  font-size: 1.25rem;
  transition: color 0.3s;
  padding: 0.5rem;
}
.testimonial-btn:hover { color: var(--gold-light); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.t-dot {
  height: 2px;
  background: rgba(255,255,255,0.2);
  width: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.5s;
  padding: 0;
}
.t-dot.active { width: 40px; background: var(--gold-light); }

.cta-section {
  position: relative;
  padding: 8rem 3rem;
  overflow: hidden;
}
.cta-section img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}
.cta-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

/* ─── WEDDINGS PAGE ─── */
.experience-section {
  padding: 5rem 3rem;
}
.experience-inner { max-width: 1400px; margin: 0 auto; }
.experience-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.experience-item:last-child { border-bottom: none; }
.experience-item.reverse .exp-img { order: 2; }
.experience-item.reverse .exp-text { order: 1; }
.exp-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.exp-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.exp-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1.25rem;
}
.exp-text p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.85;
}

/* ─── PHOTO BOOTH PAGE ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.feature-card {
  background: var(--cream);
  padding: 3rem;
}
.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.feature-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ─── ABOUT PAGE ─── */
.team-section { padding: 6rem 3rem; background: white; }
.team-inner { max-width: 1400px; margin: 0 auto; }
.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 6rem;
}
.team-member:last-child { margin-bottom: 0; }
.team-member.reverse .member-img { order: 2; }
.team-member.reverse .member-text { order: 1; }
.member-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.member-role {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.member-text h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 2rem;
}
.member-text p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.values-section { padding: 6rem 3rem; background: var(--warm-gray); }
.values-inner { max-width: 1400px; margin: 0 auto; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.value-card { background: white; padding: 3rem; }
.value-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 2rem; }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.value-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ─── SERVICES PAGE ─── */
.packages-section { padding: 6rem 3rem; background: white; }
.packages-inner { max-width: 1400px; margin: 0 auto; }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 4rem;
}
.package-card {
  padding: 3.5rem;
  border: 1px solid rgba(0,0,0,0.08);
}
.package-card:first-child { border-right: none; }
.package-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.package-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.package-desc {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
.package-includes {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.package-list { list-style: none; }
.package-list li {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--text-gray);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-left: 1rem;
  position: relative;
}
.package-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

.enhancements-section { padding: 6rem 3rem; background: var(--cream); }
.enhancements-inner { max-width: 1400px; margin: 0 auto; }
.enhancements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.enhancement-card { background: white; padding: 2.5rem; }
.enhancement-card.featured { grid-column: span 1; }
.enhancement-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  margin-bottom: 1.5rem;
}
.enhancement-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.enhancement-price {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.enhancement-card p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-gray);
  line-height: 1.8;
}

/* ─── CONTACT PAGE ─── */
.contact-section { padding: 6rem 3rem; background: white; }
.contact-inner { max-width: 760px; margin: 0 auto; }
.contact-heading-wrap { text-align: center; margin-bottom: 4rem; }
.hb-embed { min-height: 400px; }
.contact-divider {
  border: none;
  border-top: 1px solid var(--warm-gray);
  margin: 4rem 0;
}
.contact-direct { text-align: center; }
.contact-direct .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.contact-direct h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-gray);
}
.contact-links a { transition: color 0.3s; }
.contact-links a:hover { color: var(--gold); }
.contact-links .dot { color: rgba(0,0,0,0.2); }
.contact-info-bar {
  padding: 4rem 3rem;
  background: var(--cream);
}
.contact-info-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.contact-info-item svg { width: 24px; height: 24px; color: var(--gold); margin: 0 auto 0.75rem; display: block; }
.contact-info-item p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--black);
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  color: white;
  padding: 5rem 3rem 2rem;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo img { height: 80px; width: auto; margin-bottom: 1.5rem; }
.footer-logo p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}
.footer-contact a {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.3s;
  margin-top: 1rem;
  display: inline-block;
}
.footer-contact a:hover { color: white; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-bottom p,
.footer-bottom a,
.footer-bottom span {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom .footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.floating-cta.visible { opacity: 1; pointer-events: all; }
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--gold);
  color: white;
  padding: 1rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  transition: background 0.3s;
}
.floating-cta a:hover { background: var(--gold-dark); }

/* ─── UTILITIES ─── */
.container { max-width: 1400px; margin: 0 auto; }
.py-section { padding: 6rem 3rem; }
.bg-white { background: white; }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm-gray); }
.bg-dark { background: var(--black); }
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-16 { margin-top: 4rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .navbar { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .about-preview-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-preview-img::after { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .experience-item,
  .experience-item.reverse { grid-template-columns: 1fr; }
  .experience-item.reverse .exp-img,
  .experience-item.reverse .exp-text { order: unset; }
  .features-grid { grid-template-columns: 1fr; }
  .team-member,
  .team-member.reverse { grid-template-columns: 1fr; }
  .team-member.reverse .member-img,
  .team-member.reverse .member-text { order: unset; }
  .values-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card:first-child { border-right: 1px solid rgba(0,0,0,0.08); border-bottom: none; }
  .enhancements-grid { grid-template-columns: 1fr; }
  .contact-info-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .py-section { padding: 4rem 1.5rem; }
  .services-section,
  .about-preview,
  .editorial-banner,
  .process-section,
  .testimonials-section,
  .team-section,
  .values-section,
  .packages-section,
  .enhancements-section,
  .contact-section,
  .contact-info-bar,
  footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .experience-section { padding: 3rem 1.5rem; }
  .cta-section { padding: 5rem 1.5rem; }
}

@media (max-width: 640px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .process-steps { grid-template-columns: 1fr; }
  .contact-links { flex-direction: column; gap: 0.75rem; }
  .contact-links .dot { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-cta { bottom: 1rem; right: 1rem; }
}
