/* ─────────────────────────────────────────────
   EVERLASTING FOCUS · styles.css
   Palette: Cream · Warm Gold · Dusty Rose · Deep Mocha
───────────────────────────────────────────── */

:root {
  --cream:      #faf6f1;
  --cream-dark: #f0e8df;
  --gold:       #b8965a;
  --gold-light: #d4b483;
  --rose:       #c9a49a;
  --mocha:      #3b2a20;
  --mocha-soft: #6b4f3a;
  --white:      #ffffff;
  --shadow:     0 8px 40px rgba(59,42,32,0.10);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --transition: 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--mocha);
  line-height: 1.75;
  overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── SHARED ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 100px 0; }

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

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--mocha);
  margin-bottom: 1.25rem;
}
h2.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--mocha-soft);
  max-width: 480px;
  margin-bottom: 3rem;
}

/* Buttons */
.btn-solid {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 1.4rem 2.5rem;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(250,246,241,0.96);
  backdrop-filter: blur(12px);
  padding: 0.9rem 2.5rem;
  box-shadow: 0 2px 24px rgba(59,42,32,0.08);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: contain;
  border-radius: 50%;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: 0.8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold-light);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--mocha); }
#navbar.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta {
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  color: var(--white) !important;
  letter-spacing: 0.16em;
  transition: background var(--transition), border-color var(--transition) !important;
}
.nav-cta:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: var(--white) !important;
}
.nav-cta::after { display: none !important; }
#navbar.scrolled .nav-cta {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
#navbar.scrolled .nav-cta:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: background var(--transition);
}
#navbar.scrolled .burger span { background: var(--mocha); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1.04);
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: slowZoom 8s ease forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(30,18,10,0.35) 0%,
    rgba(30,18,10,0.50) 60%,
    rgba(30,18,10,0.65) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
}
.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s 0.7s forwards;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1s 1s forwards;
}
.hero-content .btn-ghost {
  opacity: 0;
  animation: fadeUp 1s 1.3s forwards;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  margin: 0 auto;
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0; transform: scaleY(0.5); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 560px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 86%;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 52%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}
.about-text h2 { margin-bottom: 0.25rem; }
.about-names {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.about-text p {
  color: var(--mocha-soft);
  margin-bottom: 1.1rem;
  font-size: 0.97rem;
}
.about-text .btn-solid { margin-top: 1rem; }

/* ─────────────────────────────────────────────
   PORTFOLIOS
───────────────────────────────────────────── */
#portfolios { background: var(--cream-dark); }

.portfolios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.portfolio-card {
  background: var(--white);
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--cream-dark);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(59,42,32,0.14);
}

.portfolio-card:hover::before {
  opacity: 1;
}

.portfolio-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--cream-dark), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}

.portfolio-card:hover .portfolio-card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}

.portfolio-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--mocha);
  margin-bottom: 0.4rem;
}

.portfolio-desc {
  font-size: 0.85rem;
  color: var(--mocha-soft);
  line-height: 1.5;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--cream-dark);
}

.portfolio-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.portfolio-links li a {
  font-size: 0.88rem;
  color: var(--mocha-soft);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid transparent;
}

.portfolio-links li a .link-text {
  font-weight: 500;
}

.portfolio-links li a .link-arrow {
  font-size: 1.1rem;
  color: var(--gold);
  transition: transform var(--transition);
  margin-left: 0.5rem;
}

.portfolio-links li a:hover {
  background: var(--cream-dark);
  color: var(--mocha);
  border-color: var(--gold-light);
}

.portfolio-links li a:hover .link-arrow {
  transform: translateX(4px);
}

.no-photos {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  background: linear-gradient(135deg, rgba(201,164,154,0.1), rgba(201,164,154,0.05));
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  display: inline-block;
  margin-top: auto;
}

@media (max-width: 1024px) {
  .portfolios-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .portfolios-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .portfolio-card { padding: 2rem 1.5rem 1.5rem; }
}

/* ─────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────── */
#gallery {
  background: var(--cream-dark);
  padding-bottom: 0;
}
#gallery .container { text-align: center; margin-bottom: 3rem; }
#gallery h2 { margin-bottom: 0.5rem; }

/* Gallery horizontal scroll */
.gallery-scroll-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;   /* clips the track so it doesn't break page layout */
}
.gallery-track {
  display: flex;
  flex-direction: row;      /* explicit — prevents mobile vertical fallback */
  flex-wrap: nowrap;        /* explicit — items must stay in one row */
  align-items: stretch;
  gap: 6px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;        /* Firefox */
  cursor: grab;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track.dragging { cursor: grabbing; scroll-snap-type: none; }

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 300px;      /* flex-grow:0, flex-shrink:0, explicit width */
  height: 440px;
  scroll-snap-align: start;
}
.gallery-item.wide { flex-basis: 480px; }

.gallery-item img {
  transition: transform 0.65s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(59,42,32,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.7);
  padding: 0.5rem 1.2rem;
}

/* Arrow buttons */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(250,246,241,0.92);
  border: 1px solid var(--cream-dark);
  color: var(--mocha);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(59,42,32,0.12);
  transition: background var(--transition), color var(--transition), opacity var(--transition);
  opacity: 0.85;
}
.gallery-arrow:hover { background: var(--gold); color: var(--white); opacity: 1; }
.gallery-arrow-prev { left: 1rem; }
.gallery-arrow-next { right: 1rem; }
.gallery-arrow.hidden { opacity: 0; pointer-events: none; }

/* ─────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(22,14,8,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-content img {
  max-width: 88vw;
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}
#lb-caption {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  margin-top: 1rem;
  letter-spacing: 0.06em;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 1.5rem;
  transition: color var(--transition), transform var(--transition);
  z-index: 1001;
}
.lb-close { top: 1.8rem; right: 2rem; font-size: 2.2rem; line-height: 1; }
.lb-close:hover { color: var(--white); transform: rotate(90deg); }
.lb-prev { left: 2rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-next { right: 2rem; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-prev:hover, .lb-next:hover { color: var(--gold-light); }

/* ─────────────────────────────────────────────
   SERVICES
───────────────────────────────────────────── */
#services {
  position: relative;
  padding: 120px 0;
}
.services-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.services-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,18,10,0.82) 0%, rgba(59,42,32,0.72) 100%);
}
.services-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.services-content h2 { margin-bottom: 3rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  padding: 2.5rem 1.8rem;
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
}
.service-icon {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.9rem;
}
.service-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
}

/* ─────────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────────── */
#testimonials {
  background: var(--cream);
  text-align: center;
}
#testimonials h2 { margin-bottom: 3rem; }
.testimonials-track {
  position: relative;
  max-width: 700px;
  margin: 0 auto 2rem;
  min-height: 240px;
}
.testimonial {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.testimonial.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  position: relative;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
  opacity: 0.5;
}
.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-style: italic;
  color: var(--mocha-soft);
  line-height: 1.85;
  margin-bottom: 1.8rem;
}
.testimonial-author strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mocha);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gold);
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 1.5px solid var(--gold-light);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
#contact { background: var(--cream-dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p {
  color: var(--mocha-soft);
  font-size: 0.96rem;
  margin-bottom: 2.2rem;
}
.contact-details { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-details li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-details strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.contact-details a, .contact-details span {
  font-size: 0.95rem;
  color: var(--mocha-soft);
  transition: color var(--transition);
}
.contact-details a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--white);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { margin-bottom: 1.4rem; }

label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mocha-soft);
}
input, select, textarea {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--mocha);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  padding: 0.78rem 1rem;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  border-radius: 0;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
textarea { resize: vertical; min-height: 120px; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23b8965a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.form-submit { width: 100%; margin-top: 0.5rem; border: 2px solid var(--gold); cursor: pointer; font-family: var(--font-sans); }
.form-feedback {
  margin-top: 1rem;
  font-size: 0.88rem;
  text-align: center;
  min-height: 1.4rem;
}
.form-feedback.success { color: #6a9f6a; }
.form-feedback.error   { color: #b85a5a; }

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
#footer {
  background: var(--mocha);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 3.5rem 2rem;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.footer-logo img {
  width: 60px; height: 60px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.9;
}
.footer-logo p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 0.06em;
}
.footer-logo em {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-light);
}
.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.5rem;
  letter-spacing: 0.08em;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────
   PACKAGES
───────────────────────────────────────────── */
#packages { background: var(--cream); }
#packages .section-sub { margin-bottom: 3.5rem; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  padding: 2.8rem 2.2rem 2.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(59,42,32,0.14);
}
.package-card.featured {
  border-color: var(--gold);
  background: var(--cream);
}
.package-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.28rem 1.1rem;
  white-space: nowrap;
}
.package-num {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.package-card h3 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--mocha);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}
.package-type {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1rem;
}
.package-intro {
  font-size: 0.9rem;
  color: var(--mocha-soft);
  line-height: 1.7;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--cream-dark);
  margin-bottom: 1.4rem;
}
.package-includes {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}
.package-includes li {
  font-size: 0.87rem;
  color: var(--mocha-soft);
  padding-left: 1.3rem;
  position: relative;
  line-height: 1.5;
}
.package-includes li::before {
  content: '★';
  position: absolute;
  left: 0;
  font-size: 0.52rem;
  color: var(--gold-light);
  top: 4px;
}
.package-includes li span { font-weight: 500; color: var(--mocha); }
.package-includes em { color: var(--gold); font-style: normal; }
.package-includes li.package-film-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.6rem;
  padding-left: 0;
}
.package-includes li.package-film-title::before { display: none; }

.package-gifts {
  background: var(--cream-dark);
  padding: 1rem 1.2rem;
  margin-bottom: 1.8rem;
  border-left: 2px solid var(--gold-light);
}
.package-gifts-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.package-gifts p {
  font-size: 0.84rem;
  color: var(--mocha-soft);
  line-height: 1.65;
}
.package-gifts em { color: var(--gold); font-style: normal; }
.package-card .btn-solid { text-align: center; width: 100%; }

/* ─────────────────────────────────────────────
   PROCESS
───────────────────────────────────────────── */
#process { background: var(--cream-dark); }
.process-header {
  max-width: 620px;
  margin-bottom: 4rem;
}
.process-header h2 {
  margin-bottom: 1.1rem;
}
.process-header h2 em {
  font-style: italic;
  color: var(--gold);
}
.process-intro {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--mocha-soft);
  line-height: 1.9;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.process-icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.process-item h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--mocha);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.process-item p {
  font-size: 0.87rem;
  color: var(--mocha-soft);
  line-height: 1.85;
}
.process-cta { text-align: center; }

/* Form required asterisk */
.req { color: var(--gold); font-style: normal; }

/* ─────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.22s; }
.reveal-delay-3 { transition-delay: 0.34s; }
.reveal-delay-4 { transition-delay: 0.46s; }

/* ─────────────────────────────────────────────
   GLOBAL TOUCH IMPROVEMENTS
───────────────────────────────────────────── */
button, a, input, select, textarea {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
/* Ensure all interactive elements meet 44px minimum touch target */
.dot { min-width: 28px; min-height: 28px; display: flex; align-items: center; justify-content: center; }

/* ─────────────────────────────────────────────
   MOBILE NAV  ≤ 900px
───────────────────────────────────────────── */
@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  #navbar.scrolled { padding: 0.75rem 1.5rem; }

  .nav-logo img { height: 44px; width: 44px; }

  /* Burger visible + animated to ✕ */
  .burger {
    display: flex;
    padding: 10px;
    z-index: 810;
    position: relative;
  }
  .burger span {
    transition: transform 0.32s ease, opacity 0.22s ease, background var(--transition);
  }
  .burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* Full-screen slide-in drawer */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(80vw, 320px);
    height: 100dvh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2.5rem 3rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    z-index: 800;
    box-shadow: -8px 0 40px rgba(59,42,32,0.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--cream-dark); }
  .nav-links a {
    display: block;
    font-size: 1rem;
    color: var(--mocha) !important;
    padding: 1.1rem 0;
    letter-spacing: 0.12em;
  }
  .nav-links a::after { display: none; }
  .nav-cta {
    margin-top: 1.5rem;
    border: 1.5px solid var(--gold) !important;
    color: var(--gold) !important;
    text-align: center;
    border-radius: 0;
    padding: 0.9rem 0 !important;
    width: 100%;
  }

  /* Overlay behind drawer */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(59,42,32,0.35);
    z-index: 799;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.open { display: block; }
}

/* ─────────────────────────────────────────────
   TABLET  ≤ 1024px
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
  .about-grid { gap: 3.5rem; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

/* ─────────────────────────────────────────────
   LARGE MOBILE  ≤ 860px
───────────────────────────────────────────── */
@media (max-width: 860px) {
  section { padding: 80px 0; }
  .container { padding: 0 1.5rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { height: 340px; }
  .about-text { text-align: center; }
  .about-text .about-names { text-align: center; }
  .about-text .btn-solid { display: block; text-align: center; }

  /* Gallery — smaller items on tablet */
  .gallery-item { flex-basis: 240px; height: 360px; }
  .gallery-item.wide { flex-basis: 380px; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info { text-align: center; }
  .contact-details { align-items: flex-start; max-width: 340px; margin: 0 auto; }

  /* Testimonials */
  .testimonials-track { min-height: 300px; }
}

/* ─────────────────────────────────────────────
   MOBILE  ≤ 600px
───────────────────────────────────────────── */
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .container { padding: 0 1.1rem; }
  h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }

  /* Hero */
  .hero-content { padding: 0 1.2rem; }
  .hero-tagline {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }
  .hero-content h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
    margin-bottom: 0.75rem;
  }
  .hero-sub {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
  }
  .hero-scroll-hint { display: none; }

  /* About */
  .about-images { height: 280px; }
  .about-img-main  { width: 72%; height: 92%; }
  .about-img-accent {
    width: 48%;
    height: 54%;
    bottom: -16px;
    right: -4px;
    border: 4px solid var(--cream);
  }
  .about-text p { font-size: 0.93rem; }
  .section-sub { font-size: 0.93rem; margin-bottom: 2rem; }

  /* Gallery — mobile sizes (overlay stays hidden, tap to open) */
  .gallery-item { flex-basis: 200px; height: 280px; }
  .gallery-item.wide { flex-basis: 300px; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 0.9rem; }
  .gallery-arrow-prev { left: 0.4rem; }
  .gallery-arrow-next { right: 0.4rem; }

  /* Packages + Process */
  .packages-grid { max-width: 100%; }
  .package-card { padding: 2.2rem 1.6rem 2rem; }
  .process-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .process-header { margin-bottom: 2.5rem; }

  /* Services */
  #services { padding: 70px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .service-card { padding: 1.8rem 1.4rem; }
  .service-card h3 { font-size: 1.2rem; }

  /* Testimonials */
  .testimonials-track { min-height: 340px; padding: 0 0.3rem; }
  .testimonial p { font-size: 1rem; line-height: 1.8; }
  .testimonial-quote { font-size: 3.5rem; }
  .dot { width: 10px; height: 10px; }

  /* Contact */
  .contact-form-wrap { padding: 1.8rem 1.1rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .form-group { margin-bottom: 1.1rem; }
  /* Prevent iOS auto-zoom on input focus */
  input, select, textarea { font-size: 1rem; padding: 0.85rem 0.9rem; }

  /* Lightbox — move arrows to bottom for thumb reach */
  .lb-prev {
    left: 1.2rem;
    top: auto;
    bottom: 2.5rem;
    transform: none;
    font-size: 1.8rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-next {
    right: 1.2rem;
    top: auto;
    bottom: 2.5rem;
    transform: none;
    font-size: 1.8rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-close {
    top: 1rem;
    right: 1rem;
    font-size: 1.8rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
  }
  .lb-content img {
    max-height: 68vh;
    max-width: 96vw;
  }
  #lb-caption { font-size: 0.85rem; margin-top: 0.75rem; }

  /* Footer */
  #footer { padding: 2.5rem 1.2rem; }
  .footer-logo p { font-size: 1.1rem; }
}

/* ─────────────────────────────────────────────
   SMALL MOBILE  ≤ 400px
───────────────────────────────────────────── */
@media (max-width: 400px) {
  .hero-content h1 { font-size: clamp(2.4rem, 14vw, 3.2rem); }
  .about-images { height: 240px; }
  .gallery-grid { grid-auto-rows: 130px; }
  .contact-form-wrap { padding: 1.5rem 0.9rem; }
  .testimonials-track { min-height: 380px; }
}
