/* ==========================================================================
   Fresh Start Lasers — stylesheet
   Design system: void black + antique gold, echoing the brand's laser-spark
   logo. See tokens below for the full palette/type/spacing system.
   ========================================================================== */

/* ---------- Design tokens ------------------------------------------------ */
:root {
  /* Colour */
  --c-void:        #0a0a0b;   
  --c-panel:       #151318;   
  --c-panel-line:  #2a2620;   
  --c-gold:        #b8912f;   
  --c-gold-bright: #e3c169;   
  --c-cream:       #f6f1e6;   
  --c-cream-alt:   #efe7d4;   
  --c-ink:         #1a1712;   
  --c-ink-soft:    #5a5344;   
  --c-white:       #fbfaf7;   

  /* Type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-script:  'Parisienne', cursive;
  --f-body:    'Jost', 'Segoe UI', sans-serif;
  --f-mono:    'Space Mono', monospace;

  /* Spacing scale */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6rem;

  /* Layout */
  --content-max: 1180px;
  --radius-sm: 6px;
  --radius-md: 14px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p { margin: 0; }
button { font: inherit; background: none; border: none; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--c-gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--c-gold-bright);
  color: var(--c-ink);
  padding: var(--space-1) var(--space-2);
  z-index: 1000;
}
.skip-link:focus { left: var(--space-2); top: var(--space-2); }

/* ---------- Shared layout helpers ---------------------------------------- */
.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-6) var(--space-3);
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-2);
  display: block;
}
.eyebrow--script {
  font-family: var(--f-script);
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--c-gold);
}
.eyebrow--light { color: var(--c-gold-bright); }

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.2vw, 2.75rem);
  line-height: 1.15;
  max-width: 20ch;
  margin-bottom: var(--space-3);
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  margin-top: var(--space-2);
  background: linear-gradient(90deg, var(--c-gold), var(--c-gold-bright));
  transition: width 0.9s var(--ease);
}
.section-title.in-view::after { width: 90px; }
.section-title--light { color: var(--c-white); }

.section-lede {
  max-width: 62ch;
  color: var(--c-ink-soft);
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
}
.section-lede--light { color: #d8cfba; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.btn--primary {
  background: linear-gradient(135deg, var(--c-gold-bright), var(--c-gold));
  color: var(--c-ink);
  box-shadow: 0 8px 24px -10px rgba(184, 145, 47, 0.65);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(184, 145, 47, 0.75); }
.btn--large { font-size: 1.15rem; padding: 1.1rem 2.2rem; }

.icon-phone, .icon-mail, .icon-pin, .icon-instagram, .icon-facebook {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  background: currentColor;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.icon-phone { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8a15.5 15.5 0 0 0 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25 11 11 0 0 0 3.5.56 1 1 0 0 1 1 1V20a1 1 0 0 1-1 1A17 17 0 0 1 3 4a1 1 0 0 1 1-1h3.5a1 1 0 0 1 1 1 11 11 0 0 0 .56 3.5 1 1 0 0 1-.25 1z'/%3E%3C/svg%3E"); }
.icon-mail { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 5h18a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1zm1.4 2 7.6 6.2L19.6 7H4.4zM4 8.4V18h16V8.4l-7.4 6a1 1 0 0 1-1.2 0z'/%3E%3C/svg%3E"); }
.icon-pin { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 1 7 7c0 5-7 13-7 13S5 14 5 9a7 7 0 0 1 7-7zm0 9.5A2.5 2.5 0 1 0 12 6.5a2.5 2.5 0 0 0 0 5z'/%3E%3C/svg%3E"); }
.icon-instagram { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm0 2a3 3 0 0 0-3 3v10a3 3 0 0 0 3 3h10a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3H7zm5 3.5a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11zm0 2a3.5 3.5 0 1 0 0 7 3.5 3.5 0 0 0 0-7zM17.8 5.6a1.15 1.15 0 1 1 0 2.3 1.15 1.15 0 0 1 0-2.3z'/%3E%3C/svg%3E"); }
.icon-facebook { mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M14 9h3V6h-3c-2.2 0-4 1.8-4 4v2H8v3h2v6h3v-6h2.6l.4-3H13v-1.5c0-.9.4-1.5 1-1.5z'/%3E%3C/svg%3E"); }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(10, 10, 11, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--c-panel-line);
}
.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: var(--space-2) var(--space-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.brand { display: flex; align-items: center; gap: 0.6rem; }
.brand-logo { width: 60px; height: 60px; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-script { font-family: var(--f-script); font-size: 1.35rem; color: var(--c-white); }
.brand-sub { font-family: var(--f-mono); font-size: 0.62rem; letter-spacing: 0.22em; color: var(--c-gold); }

.main-nav ul { display: flex; gap: var(--space-4); }
.main-nav a {
  font-size: 0.92rem;
  color: #e9e3d4;
  position: relative;
  padding: 0.3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--c-gold-bright);
  transition: width 0.25s var(--ease);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-gold-bright);
}
.header-phone-text { display: flex; flex-direction: column; line-height: 1.15; }
.header-phone-text small { font-size: 0.68rem; color: #b9b0a0; font-weight: 400; }
.header-phone-text strong { font-size: 1rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   HERO & INTERACTIVE ORBIT
   ========================================================================== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at 70% 20%, #1c1810 0%, var(--c-void) 60%);
  color: var(--c-white);
  padding: clamp(4rem, 10vw, var(--space-6)) var(--space-3) var(--space-6);
  overflow: hidden;
  isolation: isolate;
}

/* ==========================================================================
   HERO IMAGE (DOT MATRIX EFFECT)
   ========================================================================== */
.hero-image-wrapper {
  position: absolute;
  bottom: 0; 
  right: 0;
  width: clamp(280px, 35vw, 500px); 
  height: 110%;
  z-index: -1;
}

.hero-photo {
  width: 100%;
  height: auto; 
  display: block;
  filter: grayscale(100%) contrast(115%) drop-shadow(-10px 15px 40px rgba(184, 145, 47, 0.35));
}

@keyframes orbitRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
@keyframes counterRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

.hero-inner { 
  max-width: 700px; 
  left: 100px;
  position: relative;
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: var(--space-3);
}
.hero-lede {
  font-size: 1.1rem;
  color: #d8cfba;
  max-width: 54ch;
  margin-bottom: var(--space-4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }

.hero-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  color: var(--c-gold-bright);
}
.hero-trust-strip li {
  flex: 0 1 200px;
  padding-left: 1.1rem;
  position: relative;
}
.hero-trust-strip li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--c-gold-bright);
  border-radius: 50%;
}

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services { background: var(--c-cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3);
}
.service-card {
  background: var(--c-white);
  border: 1px solid rgba(184, 145, 47, 0.18);
  border-radius: var(--radius-md);
  padding: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(26, 23, 18, 0.35);
}
.service-card-media {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: var(--space-1);
  background: var(--c-cream-alt);
}
.service-card-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-family: var(--f-display); font-size: 1.25rem; font-weight: 600; }
.service-card p { color: var(--c-ink-soft); font-size: 0.95rem; flex-grow: 1; }

/* ==========================================================================
   PROCESS
   ========================================================================== */
.process { background: var(--c-void); color: var(--c-white); position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-4); }
.process-step { border-top: 1px solid var(--c-panel-line); padding-top: var(--space-3); }
.process-number { font-family: var(--f-mono); font-size: 0.85rem; color: var(--c-gold); display: block; margin-bottom: var(--space-1); }
.process-step h3 { font-family: var(--f-display); font-size: 1.3rem; margin-bottom: var(--space-1); }
.process-step p { color: #c9c0ac; font-size: 0.95rem; }
.process-cta { margin-top: var(--space-5); text-align: center; }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery { background: var(--c-cream-alt); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-3); }
.gallery-item { margin: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--c-white); border: 1px solid rgba(184, 145, 47, 0.18); }
.gallery-item img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.gallery-item figcaption { font-family: var(--f-mono); font-size: 0.75rem; color: var(--c-ink-soft); padding: var(--space-1) var(--space-2) var(--space-2); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { background: var(--c-cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-5); align-items: center; }
.about-media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4 / 5; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-content p { color: var(--c-ink-soft); margin-bottom: var(--space-2); }
.about-points { margin-top: var(--space-2); display: flex; flex-direction: column; gap: 0.6rem; }
.about-points li { padding-left: 1.4rem; position: relative; color: var(--c-ink); font-size: 0.95rem; }
.about-points li::before { content: ""; position: absolute; left: 0; top: 0.5em; width: 8px; height: 8px; background: var(--c-gold); transform: rotate(45deg); }

/* ==========================================================================
   REVIEWS & CAROUSEL
   ========================================================================== */
.reviews { background: var(--c-void); color: var(--c-white); }
.review-prompt { display: flex; flex-direction: column; align-items: center; justify-content: center; margin-bottom: 2rem; color: var(--c-gold-bright); font-family: var(--f-script); font-size: 1.4rem; }
.prompt-arrow { width: 60px; height: 60px; margin-top: 10px; color: var(--c-gold); }

.reviews-widget-frame { background: var(--c-cream); border-radius: var(--radius-md); padding: var(--space-3); margin-bottom: 3rem; }

/* Continuous Carousel Styling (Full Width) */
.manual-reviews { margin-top: 0; border-top: 1px solid var(--c-panel-line); padding-top: 3rem; padding-bottom: 3rem; }
.carousel-container { position: relative; overflow: hidden; max-width: 100%; width: 100%; margin: 0 auto; padding-bottom: 1rem; }
.carousel-track-wrapper { width: 100%; overflow: visible; }
.carousel-track { display: flex; margin: 0; padding: 0; list-style: none; will-change: transform; user-select: none; }
/* Modified clamp width so multiple cards fit nicely in the full-width ribbon */
.carousel-slide { min-width: clamp(320px, 80vw, 500px); box-sizing: border-box; padding: 0 1rem; }
.review-card { background: var(--c-panel); border: 1px solid var(--c-panel-line); border-radius: var(--radius-sm); padding: 2rem; text-align: center; }
.stars { color: var(--c-gold-bright); font-size: 1.2rem; margin-bottom: 0.5rem; letter-spacing: 3px; }
.reviewer-name { font-family: var(--f-display); font-size: 1.1rem; margin-bottom: 1rem; }
.review-content { color: #d8cfba; font-style: italic; font-size: 1rem; max-width: 50ch; margin: 0 auto; pointer-events: none; }

/* Discreet hidden-in-plain-sight Toggle Button */
.carousel-toggle-btn {
  position: absolute;
  bottom: -20px;
  right: clamp(15px, 5vw, 50px);
  background: transparent;
  border: none;
  color: var(--c-panel-line);
  font-size: 0.85rem;
  cursor: pointer;
  opacity: 0.25;
  transition: opacity 0.3s ease, color 0.3s ease;
  z-index: 10;
}
.carousel-toggle-btn:hover,
.carousel-toggle-btn:focus-visible {
  opacity: 0.9;
  color: var(--c-gold);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--c-cream); }
.faq-list { display: flex; flex-direction: column; gap: var(--space-1); max-width: 760px; }
.faq-item { border-bottom: 1px solid rgba(184, 145, 47, 0.25); padding: var(--space-2) 0; }
.faq-item summary { cursor: pointer; font-family: var(--f-display); font-weight: 600; font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--f-body); color: var(--c-gold); font-size: 1.4rem; transition: transform 0.25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: var(--space-1); color: var(--c-ink-soft); max-width: 65ch; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact { background: linear-gradient(160deg, var(--c-void) 0%, #171310 100%); color: var(--c-white); }
.contact-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: var(--space-5); align-items: start; }
.contact-primary .section-title { max-width: none; }
.contact-details ul { display: flex; flex-direction: column; gap: var(--space-2); margin-bottom: var(--space-4); }
.contact-details li { display: flex; align-items: center; gap: var(--space-1); color: #e9e3d4; }
.contact-details a:hover { color: var(--c-gold-bright); }
.social-links { display: flex; gap: var(--space-2); }
.social-links a { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--c-panel-line); border-radius: 50%; color: var(--c-gold); transition: border-color 0.25s var(--ease), color 0.25s var(--ease); }
.social-links a:hover { border-color: var(--c-gold-bright); color: var(--c-gold-bright); }

/* Custom alignment for the address block */
.contact-details li.location-item { 
  align-items: flex-start; 
}
.contact-details li.location-item .icon-pin { 
  margin-top: 4px; /* Keeps the pin perfectly aligned with the top text */
}
.location-content { 
  display: flex; 
  flex-direction: column; 
  gap: 0.2rem; 
}
.location-hint { 
  font-size: 0.85rem; 
  color: #9c937f; 
  font-style: italic; 
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { 
  background: var(--c-void); 
  color: #9c937f; 
  padding: var(--space-4) var(--space-3); 
  position: relative; 
}

.footer-inner { 
  max-width: var(--content-max); 
  margin: 0 auto; 
  display: flex; 
  flex-wrap: wrap; 
  align-items: center; 
  gap: var(--space-2); 
  justify-content: space-between; 
  font-size: 0.85rem; 
  text-align: center; 
}

.footer-inner .brand-logo { width: 90px; height: 90px; }
.footer-note { line-height: 1.6; }

.footer-tagline {
  font-family: var(--f-script);
  font-size: 1.8rem;
  color: var(--c-gold-bright);
  text-align: center;
  flex: 1;
}

.footer-laser-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  transform: translateY(-50%);
  cursor: crosshair;
  z-index: 10;
  display: flex;
  align-items: center;
}

.footer-laser-beam {
  width: 100%;
  height: 2px;
  background: var(--c-gold);
  box-shadow: 0 0 8px var(--c-gold), 0 0 15px rgba(184, 145, 47, 0.5);
  position: relative;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.footer-laser-pulse {
  position: absolute;
  top: 0;
  width: 40px;
  height: 2px;
  background: #fff;
  box-shadow: 0 0 15px #fff, 0 0 20px #fff;
  border-radius: 50%;
  animation: scanLaser 6s ease-in-out infinite alternate;
}

@keyframes scanLaser {
  0% { left: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 40px); opacity: 0; }
}

.laser-mode-blue {
  background: #4deeea;
  box-shadow: 0 0 8px #4deeea, 0 0 15px rgba(77, 238, 234, 0.5);
}
.laser-mode-red {
  background: #ff3b3b;
  box-shadow: 0 0 8px #ff3b3b, 0 0 15px rgba(255, 59, 59, 0.5);
}

.laser-spark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkPop 0.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
}

@keyframes sparkPop {
  0% { transform: translateY(-50%) scale(1); opacity: 1; }
  100% { transform: translateY(-50%) scale(12); opacity: 0; }
}

/* ==========================================================================
   RESPONSIVE (INCLUDING MOBILE FIXES)
   ========================================================================== */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .about-media { aspect-ratio: 16 / 9; }
}

@media (max-width: 780px) {
  .hero-inner {
    left: 0; 
  }
  
  .hero-image-wrapper {
    opacity: 0.15; 
    right: 0; 
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  
  .main-nav {
    position: absolute;
    top: 100%; 
    left: 0; 
    width: 100%;
    background: var(--c-void); 
    padding: 0 var(--space-3);
    max-height: 0;
    overflow: hidden;
    transform: none; 
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    z-index: 499;
  }
  
  .main-nav.is-open { 
    max-height: 400px;
    padding: var(--space-4) var(--space-3);
    border-bottom: 1px solid var(--c-panel-line);
  }

  .main-nav ul { flex-direction: column; gap: var(--space-3); }
  .main-nav a { font-size: 1.15rem; }

  .header-phone-text small { display: none; }
  .nav-toggle { display: flex; }

  .hero-interactive { display: none; }
}

@media (max-width: 520px) {
  .section-inner { padding: var(--space-5) var(--space-2); }
  .hero { padding-top: var(--space-5); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  
  .service-card {
    flex-direction: row; 
    align-items: center;
    padding: var(--space-2);
  }
  
  .service-card-media {
    width: 80px; 
    height: 80px; 
    flex-shrink: 0;
    margin-bottom: 0; 
    margin-right: var(--space-2);
    aspect-ratio: 1 / 1;
  }
  
  .service-card h3 { font-size: 1rem; }
  .service-card p { font-size: 0.85rem; line-height: 1.3; }
  
  .gallery-grid { grid-template-columns: 1fr 1fr; } 
  
  .footer-inner { flex-direction: column; text-align: center; gap: var(--space-3); }
  .footer-tagline { flex: auto; }
}