/* ============================================================
   ARTE FOTO BODAS — Hoja de estilos principal
   Tipografía: Cormorant Garamond (headings) + Raleway (body)
   Paleta: Negro profundo, blanco cálido, dorado
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --bg:         #0c0c0c;
  --bg-alt:     #111111;
  --card:       #171717;
  --text:       #f0ebe3;
  --text-muted: #9a9080;
  --gold:       #c8a97e;
  --gold-light: #dfc099;
  --gold-dark:  #a0845a;
  --border:     rgba(200,169,126,0.18);
  --white:      #ffffff;
  --radius:     2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'Raleway', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { color: var(--text-muted); font-weight: 300; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

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

/* ── UTILITY ─────────────────────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.text-gold  { color: var(--gold) !important; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.ornament {
  display: block;
  text-align: center;
  color: var(--gold);
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
  font-weight: 300;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span { color: var(--gold); font-size: 0.9rem; }

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover {
  background: var(--gold-light);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,169,126,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s ease;
}
.site-header.scrolled {
  background: rgba(12,12,12,0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  text-decoration: none;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.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, .nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.7rem !important;
  letter-spacing: 0.2em;
  padding: 0.7rem 1.6rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--bg) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1008 0%, #0c0c0c 50%, #0a0f14 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(200,169,126,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(200,169,126,0.05) 0%, transparent 50%);
}

.hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(12,12,12,0.2) 0%,
    rgba(12,12,12,0.5) 60%,
    rgba(12,12,12,0.9) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeInUp 1.2s ease both;
}

.hero-pre {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(240,235,227,0.7);
  font-weight: 300;
  letter-spacing: 0.06em;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.5s both;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ── FEATURED GALLERY (HOME) ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 4px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
  background: var(--card);
}
.gallery-item:nth-child(3n+2) { aspect-ratio: 1/1; }
.gallery-item:nth-child(4n)   { aspect-ratio: 4/3; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
}

/* ── MASONRY GALLERY PAGE ────────────────────────────────── */
.masonry-grid {
  columns: 3;
  column-gap: 6px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.masonry-item img {
  display: block;
  width: 100%;
  transition: transform 0.7s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { color: white; width: 36px; height: 36px; }

/* ── GALLERY CATEGORIES ──────────────────────────────────── */
.gallery-categories {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.gallery-cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}
.gallery-cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.gallery-cat-card:hover img { transform: scale(1.06); }
.gallery-cat-card-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all var(--transition);
}
.gallery-cat-card-info h3 {
  font-size: 1.8rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.3rem;
}
.gallery-cat-card-info span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}
.about-img-1 {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  object-fit: cover;
}
.about-img-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border: 6px solid var(--bg);
}
.about-accent {
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 120px; height: 120px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.about-text-content { padding: 2rem 0; }
.about-text-content p { margin: 1.2rem 0; font-size: 1.05rem; }

/* ── SERVICES SECTION ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.service-card {
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: background var(--transition);
}
.service-card:hover { background: var(--card); }
.service-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.service-card p { font-size: 0.9rem; }

/* ── CONTACT SECTION ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p  { margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-detail svg { color: var(--gold); width: 18px; height: 18px; flex-shrink: 0; }

.contact-social { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

/* ── FORM STYLES ─────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: rgba(154,144,128,0.5); }

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ── ALBUM SECTION ───────────────────────────────────────── */
.album-access-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem;
}

.album-access-card {
  max-width: 460px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3.5rem 3rem;
  text-align: center;
}

.album-access-card .album-cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: 2rem;
}

.album-access-card h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.album-access-card p  { margin-bottom: 2rem; }

/* Album view */
.album-view-header {
  text-align: center;
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}

.album-download-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--gold);
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.album-photo-grid {
  columns: 3;
  column-gap: 6px;
}
.album-photo-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.album-photo-item img {
  display: block;
  width: 100%;
  transition: transform 0.6s ease;
}
.album-photo-item:hover img { transform: scale(1.04); }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.lightbox.open { display: flex; }

.lightbox-inner {
  position: relative;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
}
.lightbox-inner img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  animation: fadeIn 0.3s ease;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(200,169,126,0.15);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  color: var(--bg);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; width: 44px; height: 44px; font-size: 1.2rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; }

.lightbox-counter {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ── ALERTS ──────────────────────────────────────────────── */
.alert {
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid;
  font-size: 0.9rem;
}
.alert-success { background: rgba(34,197,94,0.1); border-color: #22c55e; color: #86efac; }
.alert-error   { background: rgba(239,68,68,0.1); border-color: #ef4444; color: #fca5a5; }
.alert-info    { background: rgba(200,169,126,0.1); border-color: var(--gold); color: var(--gold); }

/* ── PAGE HEADER ─────────────────────────────────────────── */
.page-header {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200,169,126,0.06) 0%, transparent 70%);
}
.page-header h1 { margin-bottom: 1rem; }
.page-header p  { font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin: 1.2rem 0 1.5rem; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(154,144,128,0.6); }

/* ── PLACEHOLDER IMAGES ──────────────────────────────────── */
.img-placeholder {
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem; left: 2rem;
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  color: rgba(200,169,126,0.2);
}
.testimonial-text { font-style: italic; margin-bottom: 1.5rem; font-size: 0.95rem; position: relative; }
.testimonial-author { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ── LOADING SPINNER ─────────────────────────────────────── */
.spinner {
  width: 30px; height: 30px;
  border: 2px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-section    { grid-template-columns: 1fr; gap: 3rem; }
  .about-images     { height: 420px; }
  .contact-layout   { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .masonry-grid     { columns: 2; }
  .album-photo-grid { columns: 2; }
}

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

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; letter-spacing: 0.15em; }
  .nav-links.open .nav-cta { font-size: 1rem !important; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .gallery-item { aspect-ratio: 1/1 !important; }

  .services-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .masonry-grid     { columns: 2; }
  .album-photo-grid { columns: 2; }

  .form-row { grid-template-columns: 1fr; }

  .album-download-banner { flex-direction: column; text-align: center; }

  .section { padding: 70px 0; }
  .gallery-categories { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .masonry-grid { columns: 1; }
  .album-photo-grid { columns: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .album-access-card { padding: 2.5rem 1.5rem; }
}
