/* ========================================
   BUCH PLUMBING - Bold Industrial Aesthetic
   Colors: Red #FA2424 + Yellow #FFCB05
   Fonts: Big Shoulders Display + DM Sans
   ======================================== */

:root {
  --red: #FA2424;
  --red-dark: #d91e1e;
  --yellow: #FFCB05;
  --yellow-dark: #e6b600;
  --charcoal: #1a1a1a;
  --dark: #0d0d0d;
  --gray-900: #222;
  --gray-700: #444;
  --gray-500: #777;
  --gray-300: #bbb;
  --gray-100: #f2f2f2;
  --white: #fff;
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* SKIP LINK */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 24px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 6px 6px;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* CONTAINER */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ========================================
   HEADER
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 56px; width: auto; }

/* NAV */
.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  display: block;
  padding: 10px 18px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.15s, background 0.15s;
  border-radius: 4px;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--yellow); }
.nav-link.active { color: var(--yellow); }
.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 4px;
  margin-left: 8px;
}
.nav-cta:hover, .nav-cta:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* MOBILE NAV TOGGLE */
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; z-index: 1001; }
.nav-toggle-bar {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  min-height: 48px;
}
.btn:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(250,36,36,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(250,36,36,0.4);
}
.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }
.btn-lg { padding: 18px 40px; font-size: 1.15rem; }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.75) 50%,
    rgba(250,36,36,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  max-width: 720px;
}
.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--yellow);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeDown 0.6s var(--ease-out) both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  animation: fadeUp 0.7s var(--ease-out) 0.1s both;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--gray-300);
  margin-bottom: 32px;
  max-width: 560px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  opacity: 0.5;
  animation: bounce 2s infinite 1.5s;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
}
.section-header {
  margin-bottom: 48px;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ========================================
   SERVICES OVERVIEW
   ======================================== */
.services-overview {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--gray-100);
  border-radius: 6px;
  padding: 32px 24px;
  border-left: 4px solid transparent;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.service-card:hover {
  border-left-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.services-cta { text-align: center; }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-us {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border: 40px solid rgba(255,203,5,0.06);
  border-radius: 50%;
}
.why-us .section-tag { color: var(--yellow); }
.why-us .section-title { color: var(--white); }
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
.why-card {
  padding: 32px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover {
  border-color: var(--red);
  background: rgba(255,255,255,0.03);
}
.why-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 0.95rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--gray-100);
}
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: 6px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
}
.about-image-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  background: var(--red);
  border-radius: 6px;
  z-index: 1;
}
.about-content .section-title { margin-top: 4px; }
.about-content p {
  color: var(--gray-700);
  margin-bottom: 16px;
}
.about-content .btn { margin-top: 12px; }

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  aspect-ratio: 1;
}
.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ========================================
   CONTACT (Home page)
   ======================================== */
.contact {
  padding: 100px 0;
  background: var(--gray-100);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-details { margin: 24px 0; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--gray-700);
}
.contact-detail svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }
.contact-detail a {
  color: var(--gray-700);
  transition: color 0.15s;
}
.contact-detail a:hover { color: var(--red); }
.contact-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: var(--charcoal);
  color: var(--white);
  transition: background 0.15s, transform 0.15s;
}
.contact-social a:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.contact-social a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

/* CONTACT FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: 6px;
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--charcoal);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-100);
  border-radius: 4px;
  background: var(--gray-100);
  color: var(--gray-900);
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.95rem;
  display: none;
}
.form-status.success {
  display: block;
  background: #e6f9e6;
  color: #1a7a1a;
  border: 1px solid #b3e6b3;
}
.form-status.error {
  display: block;
  background: #fde8e8;
  color: #c53030;
  border: 1px solid #f5c6c6;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-page {
  padding: 60px 0 100px;
}
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-page-info h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 32px;
  color: var(--charcoal);
}
.contact-details-large .contact-detail {
  margin-bottom: 28px;
}
.contact-icon-wrap {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
}
.contact-details-large strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.contact-details-large a,
.contact-details-large span {
  font-size: 1.05rem;
  color: var(--gray-900);
}
.contact-social-large {
  display: flex;
  gap: 16px;
  margin: 32px 0;
}
.contact-social-large a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--charcoal);
  color: var(--white);
  transition: background 0.15s, transform 0.15s;
}
.contact-social-large a:hover {
  background: var(--red);
  transform: translateY(-2px);
}
.contact-social-large a:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; }

.contact-form-wrap-page {
  background: var(--white);
  border-radius: 6px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--red);
}
.contact-form-wrap-page h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--charcoal);
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  padding: 140px 0 60px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--red));
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  animation: fadeUp 0.6s var(--ease-out) both;
}
.page-hero-sub {
  font-size: 1.15rem;
  color: var(--gray-300);
  max-width: 640px;
  animation: fadeUp 0.6s var(--ease-out) 0.1s both;
}

/* ========================================
   SERVICES DETAIL
   ======================================== */
.services-detail {
  padding: 80px 0;
}
.service-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-100);
}
.service-detail-card:last-child { border-bottom: none; }
.service-detail-card.reverse .service-detail-content { order: 2; }
.service-detail-card.reverse .service-detail-visual { order: 1; }
.service-detail-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 16px;
  position: relative;
  padding-left: 20px;
}
.service-detail-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--red);
  border-radius: 2px;
}
.service-detail-content p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-points {
  margin-bottom: 24px;
}
.service-points li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--gray-700);
}
.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  background: var(--yellow);
  border-radius: 2px;
  transform: rotate(45deg);
}
.service-detail-visual img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}
.service-detail-accent {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  border-radius: 6px;
  min-height: 250px;
}
.service-icon-large {
  color: var(--red);
  opacity: 0.6;
}

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  padding: 80px 0;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.03) 20px,
    rgba(0,0,0,0.03) 40px
  );
}
.cta-banner .container { position: relative; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   BOOKING SECTION
   ======================================== */
.booking-section {
  padding: 80px 0;
  background: var(--charcoal);
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.booking-content p {
  color: var(--gray-300);
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.booking-visual img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}
.booking-visual-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 60px 40px;
  color: var(--yellow);
  text-align: center;
}
.booking-visual-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 16px;
  color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--dark);
  padding-top: 64px;
  border-top: 4px solid var(--red);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 12px; }
.footer-tagline {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 10px;
}
.footer-links a,
.footer-contact a,
.footer-contact li {
  color: var(--gray-300);
  font-size: 0.95rem;
  transition: color 0.15s;
}
.footer-links a:hover,
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}
.footer-bottom p {
  color: var(--gray-500);
  font-size: 0.85rem;
  text-align: center;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Scroll reveal */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  transition-delay: var(--reveal-delay, 0s);
}
.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-item { opacity: 1; transform: none; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .about-layout,
  .contact-layout,
  .contact-page-layout,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-detail-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-detail-card.reverse .service-detail-content,
  .service-detail-card.reverse .service-detail-visual { order: unset; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item-wide { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 1000;
  }
  .nav-list.open { display: flex; }
  .nav-link { font-size: 1.3rem; padding: 14px 24px; }
  .nav-cta { margin-left: 0; margin-top: 16px; }

  .hero-content { padding-top: 100px; }
  .hero-headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item-wide { grid-column: span 1; }

  .about-image-accent { display: none; }

  .contact-form-wrap,
  .contact-form-wrap-page {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .service-detail-accent { min-height: 180px; }
}
