/* ============================================================
   wavproductions.de – Hauptstylesheet
   Einbinden: <link rel="stylesheet" href="style.css">
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg:           #0d0d0d;
  --bg-card:      #161616;
  --bg-card-2:    #1e1e1e;
  --border:       rgba(255,255,255,0.08);
  --text:         #ffffff;
  --text-muted:   #888888;
  --accent:       #e8b86d;
  --accent-hover: #d4a558;
  --radius:       12px;
  --max-w:        1100px;
  --nav-h:        68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ── Navigation ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: var(--max-w); width: 100%; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: #000 !important;
  padding: 8px 18px;
  border-radius: 7px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--accent-hover) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── Layout ── */
main { padding-top: var(--nav-h); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* ── Typography helpers ── */
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.8px; margin-bottom: 16px;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; border: none; text-decoration: none; font-family: inherit;
}
.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(255,255,255,0.25); background: var(--bg-card); }

/* ── HERO ── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,184,109,0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { max-width: 700px; }
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px; font-size: 14px; color: var(--text-muted);
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--accent);
}
.hero h1 {
  font-size: clamp(40px, 6.5vw, 72px); font-weight: 800;
  line-height: 1.03; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-desc {
  font-size: 18px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 40px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 40px;
  padding-top: 40px; border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hero-stat .val { display: block; font-size: 26px; font-weight: 800; margin-bottom: 2px; }
.hero-stat .lbl { font-size: 13px; color: var(--text-muted); }

/* ── Quick tiles ── */
.quick-nav {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-top: 60px;
}
.quick-tile {
  background: var(--bg-card); padding: 22px 24px;
  display: flex; flex-direction: column; gap: 5px;
  transition: background 0.2s; cursor: pointer; text-decoration: none; color: inherit;
}
.quick-tile:hover { background: var(--bg-card-2); }
.qt-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1px; }
.qt-title { font-size: 15px; font-weight: 600; }
.qt-desc { font-size: 13px; color: var(--text-muted); }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 48px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px; transition: border-color 0.2s;
}
.service-card:hover { border-color: rgba(232,184,109,0.3); }
.service-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; margin-bottom: 16px; display: block; }
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.3px; }
.service-card p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ── About teaser ── */
.about-teaser { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-visual { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5;
  background: var(--bg-card); border-radius: var(--radius);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img-placeholder { font-size: 64px; opacity: 0.15; }
.about-badge {
  position: absolute; bottom: -20px; right: -16px;
  background: var(--accent); color: #000; border-radius: 10px;
  padding: 14px 18px; font-weight: 700; font-size: 14px; line-height: 1.3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ── Testimonials ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.stars { color: var(--accent); font-size: 13px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(232,184,109,0.12);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: var(--accent); flex-shrink: 0;
}
.author-name { font-size: 14px; font-weight: 600; }
.author-service { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin-top: 48px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 16px; font-weight: 600;
  text-align: left; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-icon {
  flex-shrink: 0; width: 26px; height: 26px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; font-weight: 300; color: var(--text-muted);
  transition: all 0.25s;
}
.faq-item.open .faq-icon { border-color: var(--accent); color: var(--accent); transform: rotate(45deg); }
.faq-answer {
  display: none; padding: 0 40px 22px 0;
  font-size: 15px; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA Banner ── */
.cta-section {
  text-align: center;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 80px 40px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,184,109,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .section-title { margin-bottom: 16px; }
.cta-section .section-desc { margin: 0 auto 40px; }
.cta-meta {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-top: 32px;
}
.cta-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
}
.cta-meta-item::before { content: '\2713'; color: var(--accent); font-weight: 700; }

/* ── Wedding Banner ── */
.wedding-banner {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 40px;
}
.wedding-banner p { font-size: 15px; color: var(--text-muted); }
.wedding-banner p strong { color: var(--text); }
.wedding-banner a { font-size: 14px; font-weight: 600; color: var(--accent); white-space: nowrap; transition: opacity 0.2s; }
.wedding-banner a:hover { opacity: 0.75; }

/* ── Footer ── */
footer { border-top: 1px solid var(--border); padding: 64px 0 32px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin: 12px 0 20px; max-width: 240px; line-height: 1.6; }
.footer-logo { font-size: 18px; font-weight: 800; letter-spacing: -0.5px; }
.footer-logo span { color: var(--accent); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--accent); background: rgba(232,184,109,0.06); }
.footer-col h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  color: var(--text-muted); text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 48px); max-width: 680px;
  background: #1c1c1c; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; z-index: 200; box-shadow: 0 16px 48px rgba(0,0,0,0.6); display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.cookie-banner > p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.6; }
.cookie-banner > p a { color: var(--accent); }
.cookie-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-top: 1px solid var(--border); font-size: 14px;
}
.cookie-row:last-of-type { border-bottom: 1px solid var(--border); margin-bottom: 16px; }
.cookie-label strong { display: block; font-size: 14px; margin-bottom: 2px; }
.cookie-label span { font-size: 12px; color: var(--text-muted); }
.cookie-tag {
  background: rgba(232,184,109,0.15); color: var(--accent);
  border: none; padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn-all {
  background: var(--accent); color: #000; border: none;
  padding: 10px 20px; border-radius: 7px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.2s;
}
.cookie-btn-all:hover { background: var(--accent-hover); }
.cookie-btn-min {
  background: var(--bg-card); color: var(--text);
  border: 1px solid var(--border); padding: 10px 20px; border-radius: 7px;
  font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
  transition: background 0.2s;
}
.cookie-btn-min:hover { background: var(--bg-card-2); }

/* ── Page Hero (Unterseiten) ── */
.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--border); margin-bottom: 72px; }
.page-hero .section-label { margin-bottom: 10px; }
.page-hero h1 { font-size: clamp(36px, 5.5vw, 58px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; margin-bottom: 16px; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { font-size: 17px; color: var(--text-muted); max-width: 520px; line-height: 1.75; }

/* ── Portfolio ── */
.portfolio-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border);
  background: transparent; color: var(--text-muted); font-family: inherit;
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }
.filter-btn.active { background: var(--accent); color: #000; border-color: var(--accent); font-weight: 700; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.portfolio-item {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; background: var(--bg-card);
}
.portfolio-item.landscape { aspect-ratio: 4/3; }
.portfolio-item.square    { aspect-ratio: 1/1; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 50%, transparent 68%);
  opacity: 0; transition: opacity 0.35s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.portfolio-overlay p  { font-size: 13px; color: rgba(255,255,255,0.7); }
.portfolio-item[data-hidden="true"] { display: none; }

/* ── Portfolio Vorschau (Startseiten) ── */
.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 40px;
}
.portfolio-preview-item {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--radius); cursor: pointer; display: block;
}
.portfolio-preview-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.portfolio-preview-item:hover img { transform: scale(1.07); }
.preview-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 16px;
  font-size: 13px; font-weight: 600; color: #fff;
}
.portfolio-preview-item:hover .preview-overlay { opacity: 1; }

/* ── Lightbox ── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 300; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute; top: 20px; right: 20px;
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1); border: none; color: #fff;
  width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; font-size: 22px;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.2); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── Über mich ── */
.about-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.about-page-text p { font-size: 16px; color: var(--text-muted); line-height: 1.85; margin-bottom: 22px; }
.about-page-text strong { color: var(--text); }
.timeline { position: relative; padding-left: 24px; border-left: 2px solid var(--border); margin-top: 36px; }
.timeline-item { position: relative; margin-bottom: 24px; }
.timeline-item::before {
  content: ''; position: absolute; left: -29px; top: 5px;
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg);
}
.timeline-year { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 1px; margin-bottom: 4px; }
.timeline-desc { font-size: 15px; font-weight: 600; color: var(--text); }
.skills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 0; }
.skill-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; transition: border-color 0.2s;
}
.skill-card:hover { border-color: rgba(232,184,109,0.3); }
.skill-num { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; margin-bottom: 12px; display: block; }
.skill-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.skill-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

/* ── Kontakt ── */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 22px;
  display: flex; align-items: flex-start; gap: 14px; transition: border-color 0.2s;
}
.contact-card:hover { border-color: rgba(232,184,109,0.3); }
.contact-icon {
  width: 44px; height: 44px; background: rgba(232,184,109,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-card-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 4px; }
.contact-card-value { font-size: 15px; font-weight: 500; }
.contact-card-value a:hover { color: var(--accent); }
.contact-badges { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }
.contact-badge {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  font-size: 14px; color: var(--text-muted);
}
.contact-badge::before { content: '\2713'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

.form-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px;
}
.form-box h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.form-subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-muted); margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: #0a0a0a; border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: inherit;
  font-size: 15px; padding: 12px 15px; transition: border-color 0.2s; outline: none;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(232,184,109,0.45); }
.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 40px;
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); margin-bottom: 24px; cursor: pointer;
}
.form-checkbox input { width: 16px; height: 16px; accent-color: var(--accent); flex-shrink: 0; margin-top: 2px; cursor: pointer; }
.form-checkbox a { color: var(--accent); }
.form-msg { padding: 14px 16px; border-radius: 8px; font-size: 15px; margin-bottom: 18px; display: none; }
.form-msg.success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: #4ade80; }
.form-msg.error   { background: rgba(239,68,68,0.1);  border: 1px solid rgba(239,68,68,0.2);  color: #f87171; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: #0d0d0d; border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 0;
  }
  .nav-links.open li a { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--border); color: var(--text); }
  .nav-links.open li:last-child a { border: none; }
  .nav-links.open .nav-cta { padding: 12px 0; display: block; color: var(--accent) !important; background: transparent !important; font-weight: 700; }
  .nav-links.open .nav-cta:hover { opacity: 0.75; }

  .hero { padding: 56px 0; min-height: auto; }
  .quick-nav { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 16/9; }
  .about-badge { right: 0; bottom: -16px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .skills-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-preview { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-section { padding: 56px 24px; border-radius: 16px; }
}

@media (max-width: 600px) {
  section { padding: 52px 0; }
  .hero h1 { font-size: 36px; letter-spacing: -1.2px; }
  .hero-stats { gap: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .quick-nav { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-item { aspect-ratio: 1/1 !important; }
  .portfolio-preview { grid-template-columns: repeat(2, 1fr); }
  .portfolio-preview-item { aspect-ratio: 1/1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-meta { gap: 16px; justify-content: flex-start; }
  .form-box { padding: 24px 20px; }
  .wedding-banner { flex-direction: column; gap: 12px; }
}
