/* ═══════════════════════════════════════════════════
   BLACKBIRD VIDEO – Shared Styles
   ═══════════════════════════════════════════════════ */

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

:root {
  --black: #0a0a0a;
  --dark: #141414;
  --dark-mid: #1a1a1a;
  --mid: #2a2a2a;
  --gray: #666;
  --light-gray: #999;
  --silver: #bbb;
  --off-white: #e8e4e0;
  --white: #f5f2ee;
  --accent: #d4c5b0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── LOADING SCREEN ─── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  width: 80px; height: 80px;
  animation: pulse 1.5s ease-in-out infinite;
  filter: brightness(0) invert(1);
}
@keyframes pulse { 0%,100% { opacity: 0.3; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1); } }

/* ─── NAVIGATION ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s ease, padding 0.4s ease;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
  transition: height 0.4s ease;
}
nav.scrolled .nav-logo img { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--silver);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

/* Portfolio Dropdown */
.dropdown { position: relative; }
.dropdown-toggle { cursor: pointer; display: flex; align-items: center; gap: 0.4rem; }
.dropdown-toggle svg { width: 10px; transition: transform 0.3s ease; }
.dropdown.open .dropdown-toggle svg { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 1rem); left: 50%; transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.6rem 0;
  min-width: 240px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  transform: translateX(-50%) translateY(8px);
}
.dropdown.open .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 0.7rem 1.4rem;
  font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: none; white-space: nowrap;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); }

/* Mobile menu */
.mobile-toggle {
  display: none; cursor: pointer;
  width: 28px; height: 20px;
  position: relative; background: none; border: none;
}
.mobile-toggle span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--white); transition: all 0.3s ease;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-toggle span:nth-child(3) { bottom: 0; }
.mobile-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ─── HERO (Homepage) ─── */
.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: var(--black); }
.hero-bg iframe {
  position: absolute; top: 50%; left: 50%;
  width: 200vw; height: 200vh;
  transform: translate(-50%, -50%);
  border: 0; pointer-events: none;
  filter: grayscale(100%) brightness(0.4) contrast(1.1);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 1;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.2) 40%, rgba(10,10,10,0.3) 70%, rgba(10,10,10,0.95) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 2rem;
}
.hero-label {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 1s 0.5s ease forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.15;
  letter-spacing: 0.02em; color: var(--white);
  max-width: 800px; margin: 0 auto;
  opacity: 0; animation: fadeUp 1.2s 0.8s ease forwards;
}
.hero-title em { font-style: italic; font-weight: 400; }
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  color: var(--silver); margin-top: 1.8rem;
  letter-spacing: 0.06em;
  opacity: 0; animation: fadeUp 1s 1.2s ease forwards;
}
.hero-cta {
  margin-top: 2.5rem;
  opacity: 0; animation: fadeUp 1s 1.5s ease forwards;
}
.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  opacity: 0; animation: fadeUp 1s 2s ease forwards;
}
.scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gray);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── SUBPAGE HERO ─── */
.page-hero {
  position: relative;
  height: 70vh; min-height: 450px;
  display: flex; align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.page-hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  filter: grayscale(100%) brightness(0.45) contrast(1.1);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.page-hero.loaded .page-hero-img { transform: scale(1); }
.page-hero .hero-grain { z-index: 1; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 30%, rgba(10,10,10,0.6) 70%, rgba(10,10,10,1) 100%);
  z-index: 2;
}
.page-hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 2rem 4rem;
  opacity: 0; animation: fadeUp 1s 0.3s ease forwards;
}
.page-hero-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300; line-height: 1.15;
  color: var(--white);
}
.page-hero-title em { font-style: italic; font-weight: 400; }
.page-hero-sub {
  font-size: 0.9rem; font-weight: 300;
  color: var(--silver); margin-top: 1rem;
  letter-spacing: 0.04em;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
  white-space: nowrap; cursor: pointer;
  background: transparent;
}
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--white);
  transform: translateY(101%);
  transition: transform 0.4s ease;
}
.btn:hover { color: var(--black); border-color: var(--white); }
.btn:hover::before { transform: translateY(0); }
.btn span { position: relative; z-index: 1; }

.btn-accent {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-accent::before { background: var(--accent); }
.btn-accent:hover { color: var(--black); }

/* ─── SECTION COMMONS ─── */
section { padding: 7rem 2rem; }
.section-container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 1rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300; line-height: 1.2;
  color: var(--white); margin-bottom: 1.5rem;
}
.section-heading em { font-style: italic; font-weight: 400; }
.section-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--silver); font-weight: 300;
  max-width: 650px;
}
.divider { width: 50px; height: 1px; background: var(--mid); margin: 5rem auto; }

/* ─── PORTFOLIO GRID (Homepage) ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 4rem;
}
.portfolio-card {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.portfolio-card-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.5);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.portfolio-card:hover .portfolio-card-bg {
  filter: grayscale(30%) brightness(0.6) saturate(0.8);
  transform: scale(1.05);
}
.portfolio-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.1) 60%);
  z-index: 1;
}
.portfolio-card-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2; padding: 2rem 2.5rem;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-content { transform: translateY(0); }
.portfolio-card-number {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 300;
  color: rgba(255,255,255,0.15); line-height: 1;
}
.portfolio-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300; color: var(--white);
  margin: 0.3rem 0 0.5rem;
}
.portfolio-card-title em { font-style: italic; }
.portfolio-card-cta {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-cta {
  opacity: 1; transform: translateY(0);
}

/* ─── COUPLE SUBPAGE VIDEO ─── */
.couple-video-section {
  padding: 4rem 2rem 5rem;
  max-width: 960px; margin: 0 auto;
}
.video-wrapper {
  position: relative; width: 100%;
  padding-top: 56.25%;
  background: var(--dark);
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
}
.video-wrapper iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

/* ─── COUPLE STORY ─── */
.couple-story-section {
  padding: 0 2rem 6rem;
  max-width: 760px; margin: 0 auto;
  text-align: center;
}
.couple-story-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300; font-style: italic;
  line-height: 1.7; color: var(--silver);
  margin-bottom: 3rem;
}
.couple-divider {
  display: flex; align-items: center;
  justify-content: center; gap: 1.5rem;
  margin-bottom: 3rem;
}
.couple-divider-line { width: 60px; height: 1px; background: var(--mid); }
.couple-divider-icon { color: var(--accent); font-size: 0.9rem; }

/* ─── COUPLE GALLERY ─── */
.couple-gallery {
  padding: 0 2rem 6rem;
  max-width: 1000px; margin: 0 auto;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.gallery-item:hover img {
  filter: grayscale(60%);
  transform: scale(1.05);
}

/* ─── COUPLE CTA ─── */
.couple-cta-section {
  padding: 5rem 2rem 7rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.couple-cta-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 1rem;
}
.couple-cta-heading em { font-style: italic; font-weight: 400; }
.couple-cta-text {
  font-size: 0.95rem; line-height: 1.7;
  color: var(--silver); font-weight: 300;
  max-width: 500px; margin: 0 auto 2.5rem;
}

/* ─── COUPLE NAV (prev/next) ─── */
.couple-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px; margin: 0 auto;
  padding: 3rem 2rem 3rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.couple-nav a {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none; color: var(--silver);
  transition: color 0.3s ease;
}
.couple-nav a:hover { color: var(--white); }
.couple-nav-label {
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); display: block;
}
.couple-nav-name {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 300;
  display: block; margin-top: 0.2rem;
}
.couple-nav-name em { font-style: italic; }
.couple-nav svg { width: 24px; height: 24px; flex-shrink: 0; }
.couple-nav-next { text-align: right; }

/* ─── INFORMATIONEN (services grid) ─── */
#info {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.info-header { text-align: center; margin-bottom: 5rem; }
.info-header .section-text { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.04);
  margin-bottom: 5rem;
}
.service-card {
  background: var(--dark);
  padding: 2.8rem 2.2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.4s ease;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { background: var(--dark-mid); }
.service-icon { width: 36px; height: 36px; margin-bottom: 1.5rem; color: var(--accent); }
.service-title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400;
  color: var(--white); margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.service-text {
  font-size: 0.88rem; line-height: 1.75;
  color: var(--light-gray); font-weight: 300;
}

/* Team */
.team-section {
  text-align: center;
  max-width: 700px; margin: 0 auto;
}
.team-label {
  font-family: var(--font-body);
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 1.2rem;
}
.team-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300; color: var(--white);
  margin-bottom: 1.2rem;
}
.team-heading em { font-style: italic; font-weight: 400; }
.team-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--silver); font-weight: 300;
}
.team-names {
  display: flex; justify-content: center;
  gap: 3rem; margin-top: 2rem;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 300;
  font-style: italic; color: var(--accent);
}

/* ─── KONTAKT ─── */
#kontakt { padding: 7rem 2rem 5rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.contact-info { padding-top: 1rem; }
.contact-info .section-heading { margin-bottom: 1.2rem; }
.contact-text {
  font-size: 0.95rem; line-height: 1.8;
  color: var(--silver); font-weight: 300;
  margin-bottom: 2.5rem;
}
.contact-detail { margin-bottom: 1.5rem; }
.contact-detail-label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 0.4rem;
}
.contact-detail a {
  color: var(--white); text-decoration: none;
  font-size: 0.95rem; font-weight: 300;
  transition: color 0.3s ease;
}
.contact-detail a:hover { color: var(--accent); }

.form-row { margin-bottom: 1.5rem; }
.form-row label {
  display: block; font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gray); margin-bottom: 0.6rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300;
  color: var(--white); background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; outline: none;
  transition: border-color 0.3s ease;
}
.form-row input::placeholder,
.form-row textarea::placeholder { color: var(--gray); }
.form-row input:focus,
.form-row textarea:focus { border-color: rgba(255,255,255,0.3); }
.form-row textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; text-align: center; }

/* Form Status Messages */
.form-status {
  padding: 1rem 1.2rem;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.form-status.success {
  background: rgba(100, 180, 100, 0.12);
  border: 1px solid rgba(100, 180, 100, 0.3);
  color: #8dca8d;
}
.form-status.error {
  background: rgba(200, 100, 100, 0.12);
  border: 1px solid rgba(200, 100, 100, 0.3);
  color: #d48a8a;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 2rem; text-align: center;
}
.footer-content {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo img {
  height: 30px; filter: brightness(0) invert(1); opacity: 0.4;
}
.footer-text {
  font-size: 0.72rem; color: var(--gray); letter-spacing: 0.08em;
}
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a {
  color: var(--gray); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--white); }

/* ─── ANIMATIONS ─── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .mobile-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(14, 14, 14, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 5rem 2rem 2rem; gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid rgba(255,255,255,0.05);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block; padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 0.85rem;
  }
  .nav-links a::after { display: none; }
  .dropdown-menu {
    position: static; transform: none;
    background: transparent; border: none;
    backdrop-filter: none; padding: 0 0 0 1rem;
    display: none;
    opacity: 1; visibility: visible;
  }
  .dropdown.open .dropdown-menu { display: block; transform: none; }
  .dropdown-menu a { padding: 0.6rem 0; border-bottom: none; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-content { flex-direction: column; gap: 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  section { padding: 5rem 1.5rem; }
  .page-hero { height: 55vh; min-height: 350px; }
  .couple-nav-name { font-size: 1rem; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 2.2rem; }
  .services-grid { border: none; background: none; gap: 1px; }
  .service-card { padding: 2rem 1.5rem; border: 1px solid rgba(255,255,255,0.04); margin-bottom: 1px; }
  .page-hero { height: 50vh; }
  .page-hero-title { font-size: 2.2rem; }
  .gallery-grid { gap: 2px; }
}
