/* ============================================
   WEDDING MARRAKECH - Premium Wedding Photography
   Color Palette: #000, #fff, #f5f0eb, #c9a96e
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #000000;
  --white: #ffffff;
  --beige: #f5f0eb;
  --beige-dark: #e8ddd3;
  --gold: #c9a96e;
  --gold-dark: #b08d4f;
  --gray: #888888;
  --gray-light: #f9f9f9;
  --text: #333333;
  --text-light: #666666;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 60px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--black);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.bg-beige { background: var(--beige); }
.bg-black { background: var(--black); }
.bg-white { background: var(--white); }

.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

.section-lg {
  padding: 8rem 0;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}

.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .nav-cta {
  color: var(--black);
}

.navbar.scrolled .nav-cta {
  border-color: var(--black);
}

.navbar.scrolled .nav-cta:hover {
  background: var(--black);
  color: var(--white);
}

.navbar.scrolled .hamburger span {
  background: var(--black);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 55px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition);
}

.navbar.scrolled .nav-logo img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  font-weight: 400;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.6rem 1.5rem !important;
  border: 1px solid var(--white);
  font-size: 0.75rem !important;
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-budget {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0.5rem;
}

.navbar.scrolled .nav-budget {
  color: var(--text-light);
}

.nav-budget:hover {
  color: var(--gold);
}

/* Dark navbar for inner pages */
.navbar-dark {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar-dark .nav-logo,
.navbar-dark .nav-links a {
  color: var(--black);
}

.navbar-dark .nav-logo img {
  filter: none;
}

.navbar-dark .nav-cta {
  border-color: var(--black);
  color: var(--black) !important;
}

.navbar-dark .nav-cta:hover {
  background: var(--black);
  color: var(--white) !important;
}

.navbar-dark .hamburger span {
  background: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--black);
}

.mobile-nav a:hover {
  color: var(--gold);
}

/* --- Hero Section --- */
/* Not full-bleed: the hero stops short of the viewport so the section below
   peeks in. 80vh is the floor at which the headline, buttons and scroll cue
   still clear the fixed navbar on a typical laptop. */
.hero {
  position: relative;
  height: 80vh;
  min-height: 640px;
  max-height: 860px;
  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;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 2rem;
}

.hero-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero .btn-group {
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll .scroll-line {
  width: 1px;
  height: 40px;
  background: var(--white);
  animation: scrollPulse 2s infinite;
}

/* Page Hero (inner pages) */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
  background: var(--beige);
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.breadcrumbs a {
  color: var(--gold);
}

.breadcrumbs a:hover {
  color: var(--gold-dark);
}

/* --- Introduction Section --- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro-image {
  position: relative;
  overflow: hidden;
}

.intro-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.intro-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}

.intro-content {
  padding: 2rem 0;
}

.intro-content .section-label {
  text-align: left;
}

.intro-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.signature {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin-top: 1rem;
}

/* --- Featured Portfolio --- */
.portfolio-grid {
  display: grid;
  gap: 1rem;
}

.portfolio-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* Portfolio Gallery — Masonry */
.portfolio-gallery {
  columns: 3;
  column-gap: 0.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  margin-bottom: 0.5rem;
  border-radius: 4px;
  min-height: 150px;
  background: #f5f5f5;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  padding: 2rem 1rem 0.75rem;
}

.gallery-overlay-content h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.gallery-overlay-content p {
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  margin: 0;
  font-weight: 500;
}

.gallery-size {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  font-family: var(--font-sans);
}

.filter-count {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  padding: 0.1rem 0.45rem;
  border-radius: 10px;
  margin-left: 0.3rem;
  vertical-align: middle;
  line-height: 1.4;
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--beige-dark);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-sans);
  color: var(--text);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* --- Services --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  padding: 3rem 2rem;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  transition: all var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --- Testimonials --- */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  text-align: center;
  padding: 2rem;
  display: none;
}

.testimonial-slide.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  opacity: 0.3;
}

.testimonial-author {
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.testimonial-location {
  color: var(--gold);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  letter-spacing: 0.2em;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--beige-dark);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* --- Destination Section --- */
.destination-section {
  position: relative;
  overflow: hidden;
}

.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 600px;
}

.destination-image {
  position: relative;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.destination-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
  background: var(--black);
  color: var(--white);
}

.destination-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.destination-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.destination-features {
  margin: 2rem 0;
}

.destination-features li {
  padding: 0.5rem 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.destination-features li::before {
  content: '—';
  color: var(--gold);
}

/* --- Instagram Section --- */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item .ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .ig-overlay {
  opacity: 1;
}

.ig-overlay span {
  color: var(--white);
  font-size: 1.5rem;
}

.instagram-handle {
  text-align: center;
  padding: 2rem 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.instagram-handle a {
  color: var(--gold);
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- About Page --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

.about-image .experience-badge {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem 2rem;
  text-align: center;
}

.experience-badge .number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  display: block;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--beige-dark);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* Philosophy Section */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.philosophy-item {
  text-align: center;
  padding: 2rem;
}

.philosophy-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--beige-dark);
  margin-bottom: 1rem;
}

.philosophy-item h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.philosophy-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Services Page --- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--beige-dark);
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-detail-content h3 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.service-detail-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.service-includes {
  margin: 1.5rem 0;
}

.service-includes li {
  padding: 0.4rem 0;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.95rem;
}

.service-includes li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
}

/* Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.package-card {
  border: 1px solid var(--beige-dark);
  padding: 3rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

.package-card.featured {
  border-color: var(--gold);
  transform: scale(1.05);
}

.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--white);
  padding: 0.3rem 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-card:hover {
  box-shadow: var(--shadow-lg);
}

.package-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.package-price {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--gold);
  margin: 1rem 0;
}

.package-price span {
  font-size: 0.9rem;
  color: var(--gray);
}

.package-features {
  margin: 2rem 0;
  text-align: left;
}

.package-features li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.package-features li::before {
  content: '—';
  color: var(--gold);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--beige-dark);
}

.faq-question {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  border: 1px solid var(--beige-dark);
  overflow: hidden;
  transition: all var(--transition);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  height: 250px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-meta {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.blog-card-content h3 a:hover {
  color: var(--gold);
}

.blog-card-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

.blog-read-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.blog-read-more:hover {
  color: var(--gold-dark);
}

/* Blog Post */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.blog-post h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blog-post-meta {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--beige-dark);
}

.blog-post h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
}

.blog-post h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.8rem;
}

.blog-post p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.blog-post ul, .blog-post ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.9;
}

.blog-post li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.blog-post ol li {
  list-style: decimal;
}

.blog-post img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.blog-post blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 2rem;
  margin: 2rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  background: var(--beige);
}

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

.blog-post a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-form {
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--beige-dark);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--beige-dark);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 3rem;
  background: var(--black);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.contact-item-icon {
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item-text h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-item-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.contact-item-text a {
  color: var(--gold);
}

.contact-item-text a:hover {
  color: var(--gold-dark);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* Featured Logos */
.featured-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* The three badges have very different aspect ratios — two are circular (1:1),
   the MyWed wordmark is 2.45:1. Sizing them all to the same box makes the wide
   one look much smaller, so they are matched by optical area instead: circular
   badges at 150x150, wide marks at a height that yields the same area. */
.featured-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.featured-logo:hover {
  opacity: 1;
}

.featured-logo img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}

/* Wide wordmarks: ~150x150 of visual area rather than 150px of height. */
.featured-logo--wide {
  height: 96px;
}

@media (max-width: 768px) {
  .featured-logos {
    gap: 2rem;
  }
  .featured-logo {
    height: 110px;
  }
  .featured-logo--wide {
    height: 70px;
  }
}

/* Map */
.map-section {
  height: 400px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-brand .nav-logo img {
  height: 45px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* --- WhatsApp Button --- */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 998;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-sans);
  z-index: 2001;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 1rem;
  z-index: 2001;
}

.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* --- Animations --- */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .intro { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image::after { display: none; }
  .intro-image img { height: 400px; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image img { height: 500px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .package-card.featured { transform: none; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-content { padding: 3rem 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail:nth-child(even) { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .section { padding: 4rem 0; }
  .section-lg { padding: 5rem 0; }

  .hero { min-height: 560px; }
  .hero-subtitle { font-size: 1rem; }

  .portfolio-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .portfolio-gallery { columns: 2; }

  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .blog-grid { grid-template-columns: 1fr; }

  .instagram-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .btn-group { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 300px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .experience-badge { right: 1rem; }

  .page-hero { padding: 8rem 0 3rem; }
}

@media (max-width: 480px) {
  .container, .container-wide { padding: 0 1.2rem; }
  .section-lg { padding: 4rem 0; }
  .portfolio-grid-3 { grid-template-columns: 1fr; }
  .portfolio-gallery { columns: 1; column-gap: 0.5rem; }
  .portfolio-gallery .gallery-item { min-height: 200px; margin-bottom: 0.5rem; }
  .gallery-item .gallery-overlay { opacity: 1; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .contact-info { padding: 1.5rem; }
}

/* ---- Wedding Marrakech wordmark ---- */
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  transition: color var(--transition);
}

.brand-sub {
  margin-top: 0.4rem;
  padding-left: 0.25em;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
}

.navbar.scrolled .brand-name,
.navbar-dark .brand-name {
  color: var(--black);
}

.footer .brand-name {
  color: var(--white);
}

@media (max-width: 768px) {
  .brand-name { font-size: 1.05rem; letter-spacing: 0.1em; }
  .brand-sub  { font-size: 0.5rem; letter-spacing: 0.35em; margin-top: 0.3rem; }
}

/* Featured grid (homepage): keep a uniform 2:3 frame regardless of source aspect */
.portfolio-grid .gallery-item {
  aspect-ratio: 2 / 3;
}

.portfolio-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Buttons inside article bodies: `.blog-post a` (0,1,1) outranks `.btn-primary`
   (0,1,0), which rendered gold text on a gold button. Restore button colours. */
.blog-post a.btn {
  color: var(--white);
  text-decoration: none;
}

.blog-post a.btn:hover {
  color: var(--white);
  text-decoration: none;
}

.blog-post a.btn-outline-dark,
.blog-post a.btn-outline-dark:hover {
  color: var(--black);
}
