/* ═══════════════════════════════════════════
   HETZEL PRODUCTIONS - SHARED STYLES
   ═══════════════════════════════════════════ */

:root {
  --bg-deep: #0a0a0a;
  --bg-card: #111111;
  --bg-elevated: #1a1a1a;
  --text-primary: #f0ece4;
  --text-secondary: #8a857d;
  --text-muted: #9b9690;
  --accent: #c9a96e;
  --accent-hover: #dfc08a;
  --accent-dim: rgba(201,169,110,0.12);
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(255,255,255,0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--sans);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: var(--bg-deep); }
a { color: inherit; }

/* ══ TOP CONTACT BAR ══ */
#top-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  transition: transform 0.35s ease;
}
#top-bar-left { display: flex; align-items: center; gap: 1.5rem; }
#top-bar a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: 0.04em;
}
#top-bar a:hover { color: var(--accent); }
#top-bar svg { width: 13px; height: 13px; flex-shrink: 0; }
#top-bar-right { display: flex; align-items: center; gap: 1rem; }
#top-bar-right span {
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.social-icon {
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s;
  border: 1px solid transparent;
}
.social-icon:hover { color: var(--accent); border-color: var(--accent); }

/* ══ NAVBAR ══ */
#navbar {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
#navbar.scrolled { padding: 0.7rem 3rem; background: rgba(10,10,10,0.94); top: 0; }
#nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  text-decoration: none;
}
#nav-logo em { color: var(--accent); font-style: italic; font-weight: 400; }
#nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
#nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s;
  position: relative;
}
#nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
#nav-links a:hover { color: var(--text-primary); }
#nav-links a:hover::after { width: 100%; }
#nav-links a.active { color: var(--text-primary); }
#nav-links a.active::after { width: 100%; }
.nav-cta {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
  padding: 0.5rem 1.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--sans);
  font-weight: 400;
}
.nav-cta:hover { background: var(--accent); color: var(--bg-deep) !important; }
.nav-cta::after { display: none !important; }

/* ══ SHARED ELEMENTS ══ */
section { padding: 6rem 3rem; position: relative; }
.section-label {
  font-size: 0.63rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.8rem; font-weight: 400;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.15;
  margin-bottom: 0.8rem;
}
.section-desc {
  color: var(--text-secondary); font-weight: 200;
  font-size: 0.92rem; line-height: 1.7;
  max-width: 620px;
}
.section-center {
  text-align: center; max-width: 650px;
  margin-left: auto; margin-right: auto;
}
.section-center .section-desc { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--sans); font-size: 0.72rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.35s ease; font-weight: 400;
}
.btn-primary { background: var(--accent); color: var(--bg-deep); }
.btn-primary:hover {
  background: var(--accent-hover); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.25);
}
.btn-outline { background: transparent; color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══ PAGE HEADER (non-home pages) ══ */
#page-header {
  padding: 10rem 3rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#page-header-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top center, rgba(201,169,110,0.06), transparent 70%);
  pointer-events: none;
}
#page-header .section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
#page-header .section-desc {
  margin: 0.5rem auto 0;
  text-align: center;
}
#page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--accent);
  opacity: 0.3;
}

/* ══ REVIEWS ══ */
#reviews-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
#reviews-header { text-align: center; margin-bottom: 3rem; }
#reviews-track {
  display: flex; gap: 1.3rem; max-width: 1200px;
  margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.review-card {
  background: var(--bg-deep); padding: 2.2rem;
  border: 1px solid var(--border);
  flex: 1; min-width: 290px; max-width: 380px;
  transition: all 0.4s ease;
}
.review-card:hover { border-color: rgba(201,169,110,0.2); transform: translateY(-3px); }
.review-stars { color: var(--accent); font-size: 0.8rem; letter-spacing: 0.08em; margin-bottom: 1rem; }
.review-text {
  font-family: var(--serif); font-size: 1.05rem;
  font-weight: 300; font-style: italic;
  line-height: 1.6; color: var(--text-primary);
  margin-bottom: 1.3rem; opacity: 0.9;
}
.review-author { display: flex; align-items: center; gap: 0.7rem; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 0.85rem; color: var(--accent);
}
.review-name { font-size: 0.78rem; font-weight: 400; }
.review-type { font-size: 0.62rem; color: var(--text-muted); letter-spacing: 0.1em; text-transform: uppercase; }

/* ══ FOOTER ══ */
#footer {
  padding: 2.5rem 3rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1.2rem;
}
#footer-brand {
  font-family: var(--serif); font-size: 1rem;
  font-weight: 300; color: var(--text-secondary);
}
#footer-brand em { color: var(--accent); font-style: italic; }
#footer-nav { display: flex; gap: 1.8rem; align-items: center; }
#footer-nav a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; transition: color 0.3s;
}
#footer-nav a:hover { color: var(--accent); }
#footer-socials { display: flex; gap: 0.8rem; align-items: center; }
.footer-social {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); text-decoration: none;
  transition: all 0.3s;
}
.footer-social:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.footer-social svg { width: 14px; height: 14px; }
#footer-bottom {
  width: 100%; text-align: center;
  padding-top: 1.5rem; margin-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.06em;
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }

/* ══ HAMBURGER ══ */
#hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 1001;
  background: none; border: none; padding: 4px;
}
#hamburger span { width: 22px; height: 1.5px; background: var(--text-primary); transition: all 0.3s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 900px) {
  #top-bar { padding: 0.5rem 1.5rem; font-size: 0.65rem; }
  #top-bar-left { gap: 0.8rem; }
  #top-bar-url { display: none; }
  #hamburger { display: flex; }
  #nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 5rem 2rem 2rem; gap: 1.5rem;
    border-left: 1px solid var(--border);
    transition: right 0.4s ease;
  }
  #nav-links.open { right: 0; }
  section { padding: 4rem 1.5rem; }
  #navbar { padding: 0.8rem 1.5rem; }
  #footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  #footer-nav { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  #page-header { padding: 8rem 1.5rem 3rem; }
  .review-card { min-width: 0; width: 100%; max-width: none; }
}
@media (max-width: 500px) {
  #top-bar { flex-direction: column; gap: 0.3rem; padding: 0.4rem 1rem; }
  #top-bar-email { font-size: 0.6rem; }
  section { padding: 3rem 1rem; }
  #footer { padding: 1.5rem 1rem; }
  #footer-nav { gap: 0.7rem; }
  #footer-nav a { font-size: 0.6rem; }
}

/* ======================================================
   PAGE HEADER MOSAIC (services, about)
   ====================================================== */

/* ══ PAGE HEADER MOSAIC ══ */
  .header-mosaic {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
    opacity: 1;
  }
  .header-mosaic .htile {
    background-size: cover; background-position: center;
    position: relative;
  }
  .header-mosaic .htile::after {
    content: ''; position: absolute; inset: 0;
    background: var(--bg-deep); opacity: 0.15;
  }
  .header-mosaic .htile:nth-child(1) { grid-column: span 2; }
  .header-mosaic .htile:nth-child(5) { grid-column: span 2; }
  .header-mosaic .htile:nth-child(10) { grid-column: span 2; }
  .header-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.9) 70%),
      linear-gradient(to bottom, transparent 60%, var(--bg-deep) 100%);
    z-index: 1;
  }
  #page-header .section-label,
  #page-header .section-title,
  #page-header .section-desc { position: relative; z-index: 2; }

/* ======================================================
   HOME PAGE
   ====================================================== */


  /* ══ HOME-SPECIFIC STYLES ══ */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 90px;
  }
  #hero-mosaic {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    opacity: 1;
  }
  #hero-mosaic .tile { background-size: cover; background-position: center; position: relative; }
  #hero-mosaic .tile::after { content: ''; position: absolute; inset: 0; background: var(--bg-deep); opacity: 0.15; }
  #hero-mosaic .tile:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  #hero-mosaic .tile:nth-child(5) { grid-column: span 2; }
  #hero-mosaic .tile:nth-child(8) { grid-column: span 2; }
  #hero-mosaic .tile:nth-child(11) { grid-column: span 2; }
  #hero-overlay {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at center, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.88) 70%),
      linear-gradient(to bottom, transparent 60%, var(--bg-deep) 100%);
    z-index: 1;
  }
  #hero-content {
    position: relative; z-index: 2;
    text-align: center; padding: 2rem;
    animation: fadeUp 1.2s ease-out both;
  }
  #hero-skyline { width: 220px; height: auto; opacity: 0.55; color: var(--accent); }
  #hero-logo-script {
    font-family: var(--serif); font-style: italic;
    font-size: 1.8rem; font-weight: 300;
    color: var(--accent); margin-top: -0.6rem;
    display: block; margin-bottom: 1.2rem;
  }
  #hero-tagline {
    font-size: 0.68rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.5rem; font-weight: 400;
  }
  #hero-title {
    font-family: var(--serif);
    font-size: clamp(2.8rem, 7vw, 6.5rem);
    font-weight: 300; line-height: 1.05;
    margin-bottom: 0.3em; letter-spacing: -0.02em;
  }
  #hero-title em { font-style: italic; color: var(--accent); font-weight: 400; }
  #hero-subtitle {
    font-size: 0.95rem; color: var(--text-secondary);
    font-weight: 200; letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
    max-width: 500px; margin-left: auto; margin-right: auto;
    line-height: 1.65;
  }
  #hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  /* ══ GALLERY PREVIEW ══ */
  #gallery-section { padding-bottom: 4rem; }
  #gallery-header { text-align: center; margin-bottom: 3rem; }
  #gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 270px;
    gap: 5px;
    max-width: 1400px;
    margin: 0 auto;
  }
  .gallery-item {
    position: relative; overflow: hidden;
    background: var(--bg-elevated); cursor: pointer;
  }
  .gallery-item::before {
    content: attr(data-category);
    position: absolute; bottom: 1rem; left: 1rem;
    font-size: 0.58rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: white; z-index: 2;
    opacity: 0; transform: translateY(8px);
    transition: all 0.3s ease 0.1s;
  }
  .gallery-item::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.3s ease;
  }
  .gallery-item:hover::after { opacity: 1; }
  .gallery-item:hover::before { opacity: 1; transform: translateY(0); }
  .gallery-item:hover .gallery-img { transform: scale(1.06); }
  #gallery-item-1 { grid-column: span 2; grid-row: span 2; }
  #gallery-item-5 { grid-column: span 2; }
  #gallery-item-8 { grid-row: span 2; }
  #gallery-item-10 { grid-column: span 2; }
  .gallery-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; }
  #gallery-cta { text-align: center; margin-top: 2.5rem; }

  /* ══ HOME LIGHTBOX ══ */
  #home-lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 2000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
  }
  #home-lightbox.active { display: flex; }
  #home-lightbox img {
    max-width: 90vw; max-height: 85vh; object-fit: contain;
  }
  #home-lightbox button {
    position: absolute; background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  #home-lightbox button:hover { border-color: var(--accent); color: var(--accent); }
  #home-lb-close { top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; font-size: 1.2rem; }
  #home-lb-prev, #home-lb-next { top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
  #home-lb-prev { left: 1.5rem; }
  #home-lb-next { right: 1.5rem; }
  #home-lb-prev svg, #home-lb-next svg { width: 18px; height: 18px; }
  #home-lb-counter {
    position: absolute; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-muted);
  }

  /* ══ BRIEF ABOUT PREVIEW ══ */
  #home-about {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  #home-about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3.5rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
  }
  #home-about-image {
    width: 200px; height: 260px;
    background: url('images/profile.jpg') center center / cover;
    position: relative;
    flex-shrink: 0;
  }
  #home-about-image::before {
    content: '';
    display: none;
  }
  #home-about-image::after {
    content: ''; position: absolute;
    top: -10px; left: -10px;
    width: 50px; height: 50px;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
    opacity: 0.3;
  }
  #home-about-text h2 {
    font-family: var(--serif);
    font-size: 1.6rem; font-weight: 300;
    margin-bottom: 0.8rem; line-height: 1.2;
  }
  #home-about-text p {
    color: var(--text-secondary);
    font-size: 0.88rem; font-weight: 200;
    line-height: 1.7; margin-bottom: 1.5rem;
    max-width: 540px;
  }

  /* ══ HOME SECONDARY SERVICES ══ */
  #home-secondary {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 1rem;
  }
  .services-row-label {
    font-size: 0.6rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 0.8rem; text-align: center;
  }
  .services-row {
    display: flex; gap: 1rem; justify-content: center;
    flex-wrap: wrap; margin-bottom: 1.5rem;
  }
  .svc-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: 1px solid var(--border-light);
    color: var(--text-primary); background: transparent;
    cursor: pointer; transition: all 0.35s ease;
  }
  .svc-btn:hover {
    border-color: var(--accent); color: var(--accent);
    transform: translateY(-2px); background: var(--accent-dim);
  }
  .svc-btn svg { width: 15px; height: 15px; }
  .svc-btn-sm {
    padding: 0.6rem 1.3rem; font-size: 0.7rem;
    border-color: var(--border); color: var(--text-secondary);
  }
  .svc-btn-sm:hover { color: var(--accent); }

  @media (max-width: 900px) {
    #gallery-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
    #gallery-item-1 { grid-column: span 2; grid-row: span 1; }
    #gallery-item-5, #gallery-item-10 { grid-column: span 1; }
    #gallery-item-8 { grid-row: span 1; }
    #home-about-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
    #home-about-image { margin: 0 auto; width: 160px; height: 210px; }
    #home-about-text p { margin-left: auto; margin-right: auto; }
    .services-row { gap: 0.6rem; }
    .svc-btn { padding: 0.65rem 1.2rem; font-size: 0.68rem; }
    #hero-content { padding: 1.5rem; }
  }
  @media (max-width: 500px) {
    #hero-title { font-size: 2.4rem; }
    #gallery-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    #gallery-item-1, #gallery-item-5, #gallery-item-10 { grid-column: span 1; }
    #hero-buttons { flex-direction: column; gap: 0.8rem; }
    #hero-buttons .btn { width: 100%; justify-content: center; }
    .svc-btn { width: 100%; justify-content: center; }
  }


/* ======================================================
   SERVICES PAGE
   ====================================================== */

/* ══ SERVICES PAGE STYLES ══ */
  #services-intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
  }
  #photography-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.8rem;
    width: 100%; max-width: 500px;
    padding: 1.3rem 2rem;
    background: linear-gradient(135deg, var(--accent), #b8943e);
    color: var(--bg-deep);
    font-family: var(--serif); font-size: 1.6rem; font-weight: 400;
    letter-spacing: 0.06em;
    border: none; cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    position: relative; overflow: hidden;
  }
  #photography-btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15));
    opacity: 0; transition: opacity 0.4s;
  }
  #photography-btn:hover::before { opacity: 1; }
  #photography-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,169,110,0.35); }
  #photography-btn svg { width: 26px; height: 26px; }
  #photography-desc {
    margin-top: 2rem; color: var(--text-secondary);
    font-weight: 200; font-size: 0.9rem; line-height: 1.75;
    max-width: 660px; margin-left: auto; margin-right: auto;
    text-align: left;
  }
  #photography-desc p + p { margin-top: 1rem; }
  #photography-desc a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

  #categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
  }
  .cat-card-link {
    text-decoration: none; color: inherit; display: block;
  }
  .cat-card {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative; overflow: hidden;
  }
  .cat-card:hover { border-color: rgba(201,169,110,0.25); transform: translateY(-3px); }
  .cat-card-img {
    width: 100%; height: 200px;
    background: var(--bg-elevated) center / cover no-repeat;
    transition: transform 0.6s ease;
  }
  .cat-card:hover .cat-card-img { transform: scale(1.04); }
  .cat-card-body {
    padding: 1.4rem 1.6rem 1.5rem;
  }
  .cat-card-title-row {
    display: flex; align-items: center; gap: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .cat-card-icon {
    width: 32px; height: 32px; flex-shrink: 0;
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent); transition: all 0.3s;
  }
  .cat-card:hover .cat-card-icon { border-color: var(--accent); background: var(--accent-dim); }
  .cat-card-icon svg { width: 16px; height: 16px; }
  .cat-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; }
  .cat-card p { color: var(--text-muted); font-size: 0.76rem; font-weight: 300; line-height: 1.5; }

  #secondary-services { max-width: 800px; margin: 0 auto; }
  .services-row-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; text-align: center; }
  .services-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
  .svc-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
    letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; border: 1px solid var(--border-light);
    color: var(--text-primary); background: transparent;
    cursor: pointer; transition: all 0.35s ease;
  }
  .svc-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); background: var(--accent-dim); }
  .svc-btn svg { width: 15px; height: 15px; }
  .svc-btn-sm { padding: 0.6rem 1.3rem; font-size: 0.7rem; border-color: var(--border); color: var(--text-secondary); }
  .svc-btn-sm:hover { color: var(--accent); }

  #services-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  #services-cta p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 200;
    line-height: 1.7;
    margin-bottom: 1.5rem;
  }

  @media (max-width: 900px) {
    #categories-grid { grid-template-columns: 1fr; }
    .services-row { gap: 0.6rem; }
    .svc-btn { padding: 0.65rem 1.2rem; font-size: 0.68rem; }
  }
  @media (max-width: 500px) {
    .svc-btn { width: 100%; justify-content: center; }
  }

/* ======================================================
   ABOUT PAGE
   ====================================================== */

    #about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: 4.5rem; max-width: 1100px; margin: 0 auto;
    align-items: center;
  }
  #about-image {
    aspect-ratio: 3/4;
    background: url('images/profile.jpg') center center / cover;
    position: relative; overflow: hidden;
  }
  #about-image::before {
    content: ''; display: none;
  }
  #about-image::after {
    content: ''; position: absolute;
    top: -12px; left: -12px;
    width: 70px; height: 70px;
    border-top: 1px solid var(--accent);
    border-left: 1px solid var(--accent);
    opacity: 0.35;
  }
  #about-text .section-desc { margin-bottom: 1.2rem; }
  #about-text .section-desc:last-of-type { margin-bottom: 2rem; }
  #about-stats {
    display: flex; gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--accent); line-height: 1; }
  .stat-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.35rem; }

  /* Timeline */
  #timeline-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  #timeline-header { text-align: center; margin-bottom: 3.5rem; }
  #timeline {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    padding-left: 2.5rem;
  }
  #timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 0; bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--accent), var(--border), var(--accent));
  }
  .timeline-item {
    position: relative;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-dot {
    position: absolute;
    left: -2.5rem; top: 0.15rem;
    width: 15px; height: 15px;
    background: var(--bg-deep);
    border: 2px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
  }
  .timeline-item:first-child .timeline-dot,
  .timeline-item:last-child .timeline-dot {
    background: var(--accent);
  }
  .timeline-year {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--accent);
    margin-bottom: 0.3rem;
  }
  .timeline-title {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
  }
  .timeline-desc {
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 200;
    line-height: 1.7;
  }

  /* Mission section */
  #mission-section {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  #mission-content {
    max-width: 750px; margin: 0 auto;
    text-align: center;
  }
  #mission-text {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-primary);
    opacity: 0.9;
    margin-top: 1.5rem;
    position: relative;
  }
  #mission-text::before {
    content: '\201C';
    font-family: var(--serif);
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: -1.5rem; left: -0.5rem;
    line-height: 1;
  }
  #about-cta {
    text-align: center;
    padding: 4rem 3rem;
  }
  #about-cta p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 200;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 900px) {
    #about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    #timeline { padding-left: 2rem; }
    #timeline::before { left: 5px; }
    .timeline-dot { left: -2rem; }
  }

/* ======================================================
   CONTACT PAGE
   ====================================================== */


  #contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
  }

  /* Left: Info column */
  #contact-info { padding-top: 0.5rem; }
  #contact-info .section-desc { margin-bottom: 1.5rem; }

  #contact-channels {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }
  .contact-channel {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.35s ease;
  }
  .contact-channel:hover {
    border-color: rgba(201,169,110,0.3);
    transform: translateX(4px);
    background: var(--bg-elevated);
  }
  .channel-icon {
    width: 44px; height: 44px;
    border: 1px solid var(--border-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    transition: all 0.3s;
  }
  .contact-channel:hover .channel-icon { border-color: var(--accent); background: var(--accent-dim); }
  .channel-icon svg { width: 20px; height: 20px; }
  .channel-label {
    font-size: 0.62rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
  }
  .channel-value {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 300;
  }

  #contact-hours {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  #contact-hours h3 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
  }
  #contact-hours p {
    color: var(--text-secondary);
    font-size: 0.84rem;
    font-weight: 200;
    line-height: 1.7;
  }

  /* Right: Contact Form */
  #contact-cta-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.5rem;
    position: relative;
  }
  #contact-cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
  }
  #cta-card-title {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 0.6rem;
    line-height: 1.2;
  }
  #cta-card-title em { color: var(--accent); font-style: italic; }
  #cta-card-subtitle {
    color: var(--text-muted); font-size: 0.78rem;
    font-weight: 300; margin-bottom: 2rem;
  }

  /* Form fields */
  .form-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem; margin-bottom: 1rem;
  }
  .form-row.full { grid-template-columns: 1fr; }
  .form-group { display: flex; flex-direction: column; }
  .form-group label {
    font-size: 0.62rem; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--text-muted);
    margin-bottom: 0.45rem; font-weight: 400;
  }
  .form-group label .req { color: var(--accent); }
  .form-group input,
  .form-group select,
  .form-group textarea {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--sans);
    font-size: 0.85rem; font-weight: 300;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--accent);
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted); font-weight: 200;
  }
  .form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
  }
  .form-group select option {
    background: var(--bg-deep); color: var(--text-primary);
  }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .form-note {
    font-size: 0.72rem; color: var(--text-muted);
    font-weight: 300; font-style: italic;
    margin-top: -0.4rem; margin-bottom: 1rem;
  }

  /* Location radio group */
  .form-radios {
    display: flex; gap: 0.6rem; flex-wrap: wrap;
  }
  .form-radio {
    position: relative;
  }
  .form-radio input {
    position: absolute; opacity: 0; width: 0; height: 0;
  }
  .form-radio label {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border: 1px solid var(--border);
    background: var(--bg-deep);
    color: var(--text-secondary);
    font-size: 0.78rem; font-weight: 300;
    text-transform: none; letter-spacing: 0;
    cursor: pointer; transition: all 0.3s;
    margin-bottom: 0;
  }
  .form-radio input:checked + label {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
  }
  .form-radio label:hover {
    border-color: rgba(201,169,110,0.4);
  }

  /* Submit */
  #contact-submit {
    display: flex; align-items: center; justify-content: center; gap: 0.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--bg-deep);
    font-family: var(--sans);
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.14em; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: all 0.35s ease;
    margin-top: 0.5rem;
  }
  #contact-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,169,110,0.3);
  }
  #contact-submit:disabled {
    opacity: 0.5; cursor: not-allowed; transform: none;
    box-shadow: none;
  }
  #contact-submit svg { width: 17px; height: 17px; }

  #form-status {
    text-align: center; margin-top: 1rem;
    font-size: 0.82rem; font-weight: 300;
    min-height: 1.5rem;
  }
  #form-status.success { color: #6fbf73; }
  #form-status.error { color: #e57373; }

  #social-strip {
    background: var(--bg-card);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  #social-strip-title {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }
  #social-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  .social-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.9rem 2rem;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.35s ease;
  }
  .social-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    background: var(--accent-dim);
  }
  .social-btn svg { width: 16px; height: 16px; }

  @media (max-width: 900px) {
    #contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  }
  @media (max-width: 500px) {
    #contact-cta-card { padding: 1.5rem; }
    .form-row { grid-template-columns: 1fr; }
    .form-radios { flex-direction: column; }
    .form-radio label { width: 100%; justify-content: center; }
  }


/* ======================================================
   PORTFOLIO PAGE
   ====================================================== */


  /* ══ PORTFOLIO HERO ══ */
  /* ══ GALLERY CATEGORIES ══ */
  #galleries-section { max-width: 1300px; margin: 0 auto; }

  .gallery-category {
    border-bottom: 1px solid var(--border);
    position: relative;
  }
  .gallery-category:last-child { border-bottom: none; }

  .gallery-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.8rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
    color: var(--text-primary);
    transition: all 0.3s;
  }
  .gallery-trigger:hover { color: var(--accent); }
  .gallery-trigger-left {
    display: flex;
    align-items: center;
    gap: 1.2rem;
  }
  .gallery-trigger-num {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 2rem;
  }
  .gallery-trigger-name {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
  }
  .gallery-trigger-count {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-left: 0.8rem;
    font-family: var(--sans);
    font-weight: 300;
    transition: color 0.3s;
  }
  .gallery-trigger:hover .gallery-trigger-count { color: var(--text-secondary); }
  .gallery-trigger-arrow {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.4s ease;
    flex-shrink: 0;
  }
  .gallery-trigger-arrow svg {
    width: 14px; height: 14px;
    transition: transform 0.4s ease;
    color: var(--text-secondary);
  }
  .gallery-category.open .gallery-trigger-arrow {
    border-color: var(--accent);
    background: var(--accent-dim);
  }
  .gallery-category.open .gallery-trigger-arrow svg {
    transform: rotate(180deg);
    color: var(--accent);
  }
  .gallery-category.open .gallery-trigger-name { color: var(--accent); }

  .gallery-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .gallery-panel-inner {
    padding: 0.5rem 0 2.5rem;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 6px;
  }
  .gallery-thumb {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-elevated);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }
  .gallery-thumb::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
    opacity: 0; transition: opacity 0.3s;
  }
  .gallery-thumb:hover::after { opacity: 1; }
  .gallery-thumb:hover { transform: scale(1.02); z-index: 1; }
  .gallery-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
  }
  /* placeholder when no images loaded yet */
  .gallery-thumb-placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 0.6rem; letter-spacing: 0.2em;
    color: var(--text-muted); text-transform: uppercase;
  }

  .gallery-empty {
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 200;
    font-style: italic;
  }

  /* ══ LIGHTBOX ══ */
  #lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
  }
  #lightbox.active { display: flex; }
  #lightbox-img {
    max-width: 90vw; max-height: 85vh;
    object-fit: contain;
  }
  #lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    background: none; border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
  }
  #lightbox-close:hover { border-color: var(--accent); color: var(--accent); }
  #lightbox-prev, #lightbox-next {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: none; border: 1px solid rgba(255,255,255,0.15);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  #lightbox-prev { left: 1.5rem; }
  #lightbox-next { right: 1.5rem; }
  #lightbox-prev:hover, #lightbox-next:hover {
    border-color: var(--accent); color: var(--accent);
  }
  #lightbox-prev svg, #lightbox-next svg { width: 18px; height: 18px; }
  #lightbox-counter {
    position: absolute; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem; letter-spacing: 0.1em;
    color: var(--text-muted);
  }

  /* ══ CTA ══ */
  #portfolio-cta {
    text-align: center;
    border-top: 1px solid var(--border);
  }
  #portfolio-cta p {
    color: var(--text-secondary);
    font-size: 0.9rem; font-weight: 200;
    line-height: 1.7; margin-bottom: 1.5rem;
    max-width: 450px;
    margin-left: auto; margin-right: auto;
  }

  @media (max-width: 900px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-trigger-name { font-size: 1.2rem; }
  }
  @media (max-width: 500px) {
    .gallery-grid { grid-template-columns: 1fr; }
  }


/* ======================================================
   PRICING PAGE
   ====================================================== */


  /* ══ PRICING TABLES ══ */
  .pricing-block {
    max-width: 1000px; margin: 0 auto 5rem;
  }
  .pricing-block-header {
    margin-bottom: 2rem;
  }
  .pricing-block-title {
    font-family: var(--serif);
    font-size: 1.8rem; font-weight: 300;
    margin-bottom: 0.5rem;
  }
  .pricing-block-desc {
    color: var(--text-secondary); font-size: 0.88rem;
    font-weight: 200; line-height: 1.7;
  }

  /* Desktop table */
  .pricing-table {
    width: 100%; border-collapse: collapse;
    border: 1px solid var(--border);
    background: var(--bg-deep);
  }
  .pricing-table thead th {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    text-align: left; vertical-align: bottom;
  }
  .pricing-table .tier-name {
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
    font-weight: 400; display: block; margin-bottom: 0.3rem;
  }
  .pricing-table .tier-price {
    font-family: var(--serif);
    font-size: 1.6rem; font-weight: 300;
    color: var(--accent); display: block;
  }
  .pricing-table tbody td {
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    font-size: 0.84rem; font-weight: 300;
    color: var(--text-secondary);
    vertical-align: top;
  }
  .pricing-table tbody tr:hover td {
    background: var(--bg-card);
  }

  .pricing-note {
    margin-top: 1rem;
    font-size: 0.78rem; color: var(--text-muted);
    font-weight: 300; line-height: 1.7;
    font-style: italic;
  }

  /* Add-ons table */
  .addon-table {
    width: 100%; border-collapse: collapse;
    border: 1px solid var(--border);
    background: var(--bg-deep);
    max-width: 600px;
  }
  .addon-table td {
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    font-size: 0.84rem; font-weight: 300;
    color: var(--text-secondary);
  }
  .addon-table td:last-child {
    text-align: right;
    font-family: var(--serif);
    color: var(--accent);
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .addon-table tr:hover td { background: var(--bg-card); }

  /* Wedding packages */
  .wedding-intro {
    color: var(--text-secondary); font-size: 0.9rem;
    font-weight: 200; line-height: 1.8;
    margin-bottom: 2.5rem; max-width: 800px;
  }
  .wedding-pkg {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.2rem;
    transition: border-color 0.3s;
  }
  .wedding-pkg:hover { border-color: rgba(201,169,110,0.25); }
  .wedding-pkg-header {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .wedding-pkg-price {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 300;
    color: var(--accent);
  }
  .wedding-pkg-extra {
    font-size: 0.78rem; color: var(--text-muted); font-weight: 300;
  }
  .wedding-pkg p {
    color: var(--text-secondary); font-size: 0.86rem;
    font-weight: 300; line-height: 1.75;
  }
  .wedding-note {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
  .wedding-note p {
    color: var(--text-secondary); font-size: 0.85rem;
    font-weight: 300; line-height: 1.7;
    font-style: italic;
  }

  /* CTA */
  #pricing-cta {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
  }
  #pricing-cta p {
    font-family: var(--serif); font-style: italic;
    font-size: 1.15rem; font-weight: 300;
    color: var(--text-secondary); line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  /* ══ MOBILE ══ */
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  @media (max-width: 700px) {
    .pricing-table {
      min-width: 580px;
    }
    .pricing-table thead th { padding: 1rem; }
    .pricing-table tbody td { padding: 0.6rem 1rem; font-size: 0.78rem; }
    .pricing-table .tier-price { font-size: 1.3rem; }
    .addon-table td { padding: 0.6rem 1rem; }
    .addon-table td:first-child { font-size: 0.78rem; }
    .pricing-block-title { font-size: 1.4rem; }
    .pricing-block-desc { font-size: 0.82rem; }
    .pricing-note { font-size: 0.72rem; }
    #pricing-section { padding-left: 1rem; padding-right: 1rem; }
  }


/* ======================================================
   SERVICE DETAIL PAGES (shared)
   ====================================================== */


  .svc-back {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--text-muted); text-decoration: none;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    transition: color 0.3s; margin-bottom: 1rem;
  }
  .svc-back:hover { color: var(--accent); }
  .svc-back svg { width: 14px; height: 14px; }

  .svc-description {
    text-align: center; margin-left: auto; margin-right: auto;
    max-width: 750px;
    color: var(--text-secondary); font-size: 0.92rem;
    font-weight: 200; line-height: 1.8;
    margin-bottom: 3rem;
  }

  /* Gallery grid */
  .svc-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 5px;
    margin-bottom: 4rem;
  }
  .svc-gallery-item {
    position: relative; overflow: hidden;
    cursor: pointer; aspect-ratio: 4/3;
    background: var(--bg-elevated);
  }
  .svc-gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  .svc-gallery-item:hover img { transform: scale(1.06); }
  .svc-gallery.collapsed { max-height: var(--gallery-2rows); overflow: hidden; position: relative; }
  .svc-gallery.collapsed::after {
    content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
    background: linear-gradient(to bottom, transparent, var(--bg-deep));
    pointer-events: none;
  }
  .svc-gallery-toggle {
    display: block; margin: 1.5rem auto 3rem; padding: 0.7rem 2rem;
    background: transparent; border: 1px solid var(--border-light);
    color: var(--text-secondary); font-family: var(--sans);
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s;
  }
  .svc-gallery-toggle:hover { border-color: var(--accent); color: var(--accent); }
  /* Mobile-only toggle: hidden by default, shown in <=700px media query */
  .svc-gallery-toggle--mobile { display: none; }
  .svc-gallery-empty {
    grid-column: 1 / -1;
    text-align: center; padding: 3rem;
    color: var(--text-muted); font-size: 0.85rem;
    font-style: italic;
  }

  /* Lightbox */
  .svc-lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 2000;
    align-items: center; justify-content: center;
    backdrop-filter: blur(8px);
  }
  .svc-lightbox.active { display: flex; }
  .svc-lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
  .svc-lightbox button {
    position: absolute; background: none;
    border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }
  .svc-lightbox button:hover { border-color: var(--accent); color: var(--accent); }
  .svc-lb-close { top: 1.5rem; right: 1.5rem; width: 40px; height: 40px; font-size: 1.2rem; }
  .svc-lb-prev, .svc-lb-next { top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
  .svc-lb-prev { left: 1.5rem; }
  .svc-lb-next { right: 1.5rem; }
  .svc-lb-prev svg, .svc-lb-next svg { width: 18px; height: 18px; }
  .svc-lb-counter {
    position: absolute; bottom: 1.5rem; left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem; letter-spacing: 0.1em; color: var(--text-muted);
  }

  /* Pricing section */
  .svc-pricing {
    max-width: 1000px; margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
  }
  .svc-pricing-title {
    font-family: var(--serif);
    font-size: 1.8rem; font-weight: 300;
    margin-bottom: 0.5rem;
  }
  .svc-pricing-subtitle {
    color: var(--text-secondary); font-size: 0.88rem;
    font-weight: 200; line-height: 1.7;
    margin-bottom: 2rem;
  }
  .svc-table-label {
    font-size: 0.65rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
    margin: 2.5rem 0 1rem; font-weight: 400;
  }

  .pricing-table {
    width: 100%; border-collapse: collapse;
    border: 1px solid var(--border);
    background: var(--bg-deep);
  }
  .pricing-table thead th {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    text-align: left; vertical-align: bottom;
  }
  .pricing-table .tier-name {
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--text-muted);
    font-weight: 400; display: block; margin-bottom: 0.3rem;
  }
  .pricing-table .tier-price {
    font-family: var(--serif);
    font-size: 1.6rem; font-weight: 300;
    color: var(--accent); display: block;
  }
  .pricing-table tbody td {
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    font-size: 0.84rem; font-weight: 300;
    color: var(--text-secondary);
    vertical-align: top;
  }
  .pricing-table tbody tr:hover td { background: var(--bg-card); }
  .pricing-note {
    margin-top: 1rem;
    font-size: 0.78rem; color: var(--text-muted);
    font-weight: 300; line-height: 1.7;
    font-style: italic;
  }
  .addon-table {
    width: 100%; border-collapse: collapse;
    border: 1px solid var(--border);
    background: var(--bg-deep);
    max-width: 600px;
  }
  .addon-table td {
    border: 1px solid var(--border);
    padding: 0.75rem 1.5rem;
    font-size: 0.84rem; font-weight: 300;
    color: var(--text-secondary);
  }
  .addon-table td:last-child {
    text-align: right;
    font-family: var(--serif);
    color: var(--accent);
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .addon-table tr:hover td { background: var(--bg-card); }

  .svc-cta {
    text-align: center; margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    max-width: 500px;
    margin-left: auto; margin-right: auto;
  }
  .svc-cta p {
    font-family: var(--serif); font-style: italic;
    font-size: 1.15rem; font-weight: 300;
    color: var(--text-secondary); line-height: 1.6;
    margin-bottom: 1.8rem;
  }

  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  @media (max-width: 700px) {
    .pricing-table { min-width: 580px; }
    .pricing-table thead th { padding: 1rem; }
    .pricing-table tbody td { padding: 0.6rem 1rem; font-size: 0.78rem; }
    .pricing-table .tier-price { font-size: 1.3rem; }
    .addon-table td { padding: 0.6rem 1rem; }
    /* Gallery: break out of section padding for edge-to-edge */
    .svc-gallery {
      grid-template-columns: repeat(3, 1fr);
      gap: 3px;
      margin-left: -1.5rem; margin-right: -1.5rem;
    }
    /* Disable row-collapse on mobile; use item-hiding instead */
    .svc-gallery.collapsed {
      max-height: none !important;
      overflow: visible !important;
    }
    .svc-gallery.collapsed::after { display: none; }
    .svc-gallery-toggle { display: none !important; }
    /* Hide items 9+ on mobile via .mobile-hidden class */
    .svc-gallery-item.mobile-hidden { display: none; }
    .svc-gallery-toggle--mobile {
      display: block; margin: 1.5rem auto 3rem; padding: 0.7rem 2rem;
      background: transparent; border: 1px solid var(--border-light);
      color: var(--text-secondary); font-family: var(--sans);
      font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
      cursor: pointer; transition: all 0.3s;
    }
    .svc-gallery-toggle--mobile:hover { border-color: var(--accent); color: var(--accent); }
    .svc-gallery-item {
      aspect-ratio: 1/1;
      height: 0;
      padding-bottom: 100%;
    }
    .svc-gallery-item img {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
    }
    .svc-description { font-size: 0.85rem; padding: 0 0.5rem; }
    .svc-pricing { padding-top: 2rem; }
    .svc-pricing-title { font-size: 1.4rem; }
    .wedding-pkg { padding: 1.5rem; }
    .wedding-pkg-price { font-size: 1.2rem; }
    .wedding-intro { font-size: 0.84rem; }
    .svc-lb-prev { left: 0.5rem; width: 36px; height: 36px; }
    .svc-lb-next { right: 0.5rem; width: 36px; height: 36px; }
    .svc-lb-close { top: 0.75rem; right: 0.75rem; width: 36px; height: 36px; }
  }
  @media (max-width: 500px) {
    .svc-gallery {
      grid-template-columns: repeat(2, 1fr);
      gap: 2px;
      margin-left: -1rem; margin-right: -1rem;
    }
    .svc-gallery-item {
      aspect-ratio: 1/1;
      padding-bottom: 100%;
    }
    .svc-back { font-size: 0.65rem; }
    .wedding-pkg-header { flex-direction: column; }
  }


/* ======================================================
   WEDDING PACKAGE STYLES
   ====================================================== */

.wedding-intro {
    color: var(--text-secondary); font-size: 0.9rem;
    font-weight: 200; line-height: 1.8;
    margin-bottom: 2.5rem; max-width: 800px;
  }
  .wedding-pkg {
    background: var(--bg-deep);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 1.2rem;
    transition: border-color 0.3s;
  }
  .wedding-pkg:hover { border-color: rgba(201,169,110,0.25); }
  .wedding-pkg-header {
    display: flex; justify-content: space-between; align-items: baseline;
    flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1rem; padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .wedding-pkg-price {
    font-family: var(--serif);
    font-size: 1.4rem; font-weight: 300;
    color: var(--accent);
  }
  .wedding-pkg-extra {
    font-size: 0.78rem; color: var(--text-muted); font-weight: 300;
  }
  .wedding-pkg p {
    color: var(--text-secondary); font-size: 0.86rem;
    font-weight: 300; line-height: 1.75;
  }
  .wedding-note {
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }
  .wedding-note p {
    color: var(--text-secondary); font-size: 0.85rem;
    font-weight: 300; line-height: 1.7;
    font-style: italic;
  }
