/* ================================================================
   ROOT & VARIABLES
================================================================ */
:root {
  --color-bg:        #FFFBF5;
  --color-bg-alt:    #FFF6EA;
  --color-surface:   #FDF0DC;
  --color-card:      #FFFFFF;
  --color-border:    rgba(0, 0, 0, 0.08);
  --color-border-gold: rgba(196, 150, 58, 0.3);

  --color-gold:      #C4963A;
  --color-gold-dark: #A67C28;
  --color-rose:      #D4758A;
  --color-gradient:  linear-gradient(135deg, #C4963A 0%, #D4758A 100%);
  --color-gradient-light: linear-gradient(135deg, #F5E0B0 0%, #F5C8D2 100%);

  --color-text:      #1E1A16;
  --color-muted:     #6B5F52;
  --color-white:     #FFFFFF;

  --font-heading: 'Montserrat', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --section-py:     clamp(4rem, 8vw, 8rem);
  --container-max:  1200px;
  --container-px:   1.5rem;

  --ease:      0.3s ease;
  --ease-slow: 0.65s ease;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --radius-full: 9999px;

  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 6px 24px rgba(196, 150, 58, 0.25);
}

/* ================================================================
   RESET
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}
img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: inherit; }

/* ================================================================
   UTILITIES
================================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Gradient text */
.gradient-text {
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.25rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-gradient);
  color: #fff;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196, 150, 58, 0.4);
}

.btn--outline {
  background: rgba(255,255,255,0.7);
  color: var(--color-text);
  border: 1.5px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn--full { width: 100%; }

/* ================================================================
   SCROLL ANIMATIONS
   Only applied when JS has confirmed it is running (.js-anim on <html>).
   Without JS every element stays fully visible at its natural position.
================================================================ */
.js-anim .anim-up,
.js-anim .anim-left,
.js-anim .anim-right {
  opacity: 0;
  transition: opacity 0.7s var(--ease-slow), transform 0.7s var(--ease-slow);
  transition-delay: var(--delay, 0s);
}
.js-anim .anim-up    { transform: translateY(28px); }
.js-anim .anim-left  { transform: translateX(-28px); }
.js-anim .anim-right { transform: translateX(28px); }

.js-anim .anim-up.visible,
.js-anim .anim-left.visible,
.js-anim .anim-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* ================================================================
   NAVIGATION
================================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.site-header.scrolled {
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

.navbar { padding: 1.25rem 0; transition: padding var(--ease); }
.site-header.scrolled .navbar { padding: 0.875rem 0; }

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-muted);
  transition: color var(--ease), background var(--ease);
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-text);
  background: rgba(196, 150, 58, 0.08);
}

/* Nav on transparent hero background — use white text */
.site-header:not(.scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.85);
}
.site-header:not(.scrolled) .nav-link:hover,
.site-header:not(.scrolled) .nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.site-header:not(.scrolled) .nav-logo-text {
  -webkit-text-fill-color: #fff;
  background: none;
  color: #fff;
}

.nav-link--cta {
  background: var(--color-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
}
.nav-link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 150, 58, 0.4);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.nav-toggle:hover { background: rgba(0,0,0,0.05); }
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.site-header:not(.scrolled) .hamburger-line { background: #fff; }

/* ================================================================
   HERO
================================================================ */
.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform-origin: center top;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.11); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 12, 4, 0.72) 0%,
    rgba(20, 12, 4, 0.45) 55%,
    rgba(30, 12, 4, 0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem var(--container-px) 4rem;
  max-width: 820px;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #F5C87A;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s ease 0.35s both;
}

.hero-headline .gradient-text {
  background: linear-gradient(135deg, #F5C87A 0%, #F5A0B0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtext {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
  margin-bottom: 2.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.9s ease 0.5s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.65s both;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: rgba(255,255,255,0.5);
  animation: bounce 2.2s ease-in-out infinite;
  transition: color var(--ease);
}
.hero-scroll:hover { color: rgba(255,255,255,0.9); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ================================================================
   ABOUT
================================================================ */
.about-section { background: var(--color-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper { position: relative; }

.about-image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
}
.about-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px rgba(196, 150, 58, 0.25);
  pointer-events: none;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--color-gradient);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.88);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }
.about-text { font-size: 1rem; color: var(--color-muted); line-height: 1.85; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
  margin-top: 0.5rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1rem 1.1rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.feature-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.feature-icon { font-size: 1.4rem; flex-shrink: 0; line-height: 1; }
.feature-text h3 { font-family: var(--font-heading); font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; color: var(--color-text); }
.feature-text p  { font-size: 0.78rem; color: var(--color-muted); line-height: 1.55; }

/* ================================================================
   STATS
================================================================ */
.stats-section {
  padding: 4.5rem 0;
  background: var(--color-gradient);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1rem; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ================================================================
   EQUIPMENT
================================================================ */
.equipment-section { background: var(--color-bg-alt); }

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.equipment-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  transition-delay: var(--delay, 0s);
}
.equipment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-gradient);
  opacity: 0;
  transition: opacity var(--ease);
}
.equipment-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-gold);
  box-shadow: var(--shadow-card);
}
.equipment-card:hover::before { opacity: 1; }

.equipment-icon  { font-size: 2.4rem; margin-bottom: 1.1rem; line-height: 1; }
.equipment-name  { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--color-text); }
.equipment-model {
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--color-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.875rem;
}
.equipment-desc { font-size: 0.875rem; color: var(--color-muted); line-height: 1.65; }

/* ================================================================
   TESTIMONIALS
================================================================ */
.testimonials-section { background: var(--color-bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.875rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
  transition-delay: var(--delay, 0s);
}
.testimonial-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.testimonial-stars { color: #E8A020; font-size: 0.9rem; letter-spacing: 0.1em; }
.testimonial-text  { font-size: 0.92rem; color: var(--color-muted); line-height: 1.78; flex: 1; font-style: italic; }

.testimonial-author { display: flex; align-items: center; gap: 0.875rem; }

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-info strong { display: block; font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--color-text); }
.author-info span   { font-size: 0.75rem; color: var(--color-muted); }

/* ================================================================
   CONTACT
================================================================ */
.contact-section { background: var(--color-bg-alt); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4.5rem;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 1.625rem; padding-top: 0.5rem; }
.contact-text { color: var(--color-muted); line-height: 1.82; font-size: 1rem; }

.contact-details { display: flex; flex-direction: column; gap: 0.75rem; }

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--color-text);
  transition: border-color var(--ease), color var(--ease), box-shadow var(--ease);
}
a.contact-detail-item:hover {
  border-color: var(--color-border-gold);
  color: var(--color-gold-dark);
  box-shadow: var(--shadow-sm);
}
.detail-icon { font-size: 1.1rem; flex-shrink: 0; }

.social-links { display: flex; gap: 0.75rem; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-muted);
  transition: background var(--ease), border-color var(--ease), color var(--ease), transform var(--ease);
}
.social-link:hover {
  background: var(--color-gradient);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Contact form */
.contact-form-wrapper {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.form-input {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: rgba(107, 95, 82, 0.45); }
.form-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(196, 150, 58, 0.12);
}
.form-input.invalid { border-color: #e05252; }

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

.form-feedback {
  padding: 0.875rem 1.125rem;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  display: none;
  line-height: 1.5;
}
.form-feedback.success {
  display: block;
  background: rgba(34, 150, 94, 0.08);
  border: 1px solid rgba(34, 150, 94, 0.25);
  color: #1a7a4a;
}
.form-feedback.error {
  display: block;
  background: rgba(220, 80, 80, 0.08);
  border: 1px solid rgba(220, 80, 80, 0.25);
  color: #b33a3a;
}

/* ================================================================
   FOOTER
================================================================ */
.site-footer {
  background: var(--color-text);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); font-style: italic; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.5rem;
  justify-content: flex-end;
}
.footer-nav a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-nav a:hover { color: #F5C87A; }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ================================================================
   IMPRESSUM PAGE
================================================================ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8rem var(--container-px) 4rem;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-bg-alt), var(--color-bg));
}
.page-hero h1 { font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--color-text); }

.legal-section { padding: var(--section-py) 0; background: var(--color-bg); }
.legal-content { max-width: 760px; }
.legal-block { margin-bottom: 3rem; }
.legal-block h2 { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; color: var(--color-gold-dark); }
.legal-block h3 { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.5rem; color: var(--color-text); }
.legal-block p  { font-size: 0.95rem; color: var(--color-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.legal-block a  { color: var(--color-gold-dark); transition: color var(--ease); }
.legal-block a:hover { color: var(--color-gold); }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1024px) {
  .equipment-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(290px, 80vw);
    background: var(--color-bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 1.5rem 2rem;
    gap: 0.25rem;
    transform: translateX(110%);
    transition: transform var(--ease);
    box-shadow: -6px 0 24px rgba(0,0,0,0.12);
    border-left: 1px solid var(--color-border);
  }
  .nav-menu.open { transform: translateX(0); }

  /* Override hero-state nav colors in mobile menu */
  .site-header:not(.scrolled) .nav-menu .nav-link { color: var(--color-muted); }
  .site-header:not(.scrolled) .nav-menu .nav-link:hover { color: var(--color-text); background: rgba(196,150,58,0.08); }

  .nav-link { width: 100%; padding: 0.75rem 1rem; font-size: 0.95rem; }
  .nav-link--cta { text-align: center; margin-top: 0.5rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-wrapper { max-width: 300px; margin: 0 auto; }
  .about-features { grid-template-columns: 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Equipment */
  .equipment-grid { grid-template-columns: 1fr 1fr; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Footer */
  .footer-top    { flex-direction: column; align-items: flex-start; }
  .footer-nav    { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .equipment-grid       { grid-template-columns: 1fr; }
  .hero-buttons         { flex-direction: column; align-items: center; }
  .contact-form-wrapper { padding: 1.5rem; }
  .stats-grid           { grid-template-columns: repeat(2, 1fr); }
}

/* ================================================================
   PHOTO IMPRESSION (parallax)
================================================================ */
.photo-impression {
  position: relative;
  height: 520px;
  overflow: hidden;
  background-image: url('../images/wedding_party.jpeg');
  background-position: center 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.photo-impression__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 26, 22, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-impression__caption {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.06em;
  text-align: center;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
}

@media (max-width: 640px) {
  .photo-impression { height: 300px; }
}
