/* ===================================================================
   LordSolace Optical Venture — Stylesheet
   Modern one-page site · gold + navy brand · floating imagery
=================================================================== */

/* ── VARIABLES ── */
:root {
  --gold: #B8821F;
  --gold-light: #D4A030;
  --gold-accent: #F0C050;
  --blue-deep: #0b2545;
  --blue-mid: #1255A0;
  --blue-bright: #1976D2;
  --blue-sky: #29ABE2;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --light-bg: #f4f7fc;
  --light-bg2: #eef2f9;
  --card-bg: #ffffff;
  --text-dark: #0d1b2e;
  --text-mid: #2e4060;
  --text-muted: #6a7a8a;
  --border: rgba(13,27,46,0.08);
  --shadow: 0 6px 30px rgba(11,37,69,0.10);
  --shadow-lg: 0 20px 60px rgba(11,37,69,0.16);
  --shadow-xl: 0 30px 80px rgba(11,37,69,0.22);
  --radius: 16px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--blue-deep); color: #fff; padding: 0.7rem 1.2rem;
  border-radius: 0 0 8px 0; font-size: 0.85rem;
}
.skip-link:focus { left: 0; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, .num {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.01em;
}
h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 700; line-height: 1.04; color: var(--text-dark);
  margin-bottom: 1.3rem;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 700; line-height: 1.08; color: var(--text-dark);
  margin-bottom: 1rem;
}
h1 span.gold { color: var(--gold); position: relative; white-space: nowrap; }
h1 span.gold::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-accent));
  border-radius: 2px;
}
h1 span.blue { color: var(--blue-mid); }

.section-label {
  display: inline-block;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--blue-bright); font-weight: 600; margin-bottom: 0.8rem;
}
.section-intro {
  color: var(--text-muted); max-width: 560px; line-height: 1.8;
  font-weight: 300; font-size: 1.02rem;
}

/* ── BUTTONS ── */
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.92rem 2.2rem; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.86rem;
  letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.3s, color 0.3s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-bright));
  color: #fff; border: none;
  box-shadow: 0 8px 24px rgba(18,85,160,0.34);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(18,85,160,0.44); }
.btn-outline {
  background: transparent; color: var(--blue-mid);
  border: 1.5px solid rgba(18,85,160,0.5);
}
.btn-outline:hover { background: var(--blue-mid); color: #fff; border-color: var(--blue-mid); transform: translateY(-3px); }

/* ── NAV ── */
header { position: sticky; top: 0; z-index: 100; }
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem 2.5rem;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(184,130,31,0.16);
  transition: box-shadow 0.3s, padding 0.3s;
}
nav.scrolled { box-shadow: 0 6px 26px rgba(11,37,69,0.10); padding: 0.3rem 2.5rem; }
.logo-nav img { height: 72px; width: auto; transition: height 0.3s; }
nav.scrolled .logo-nav img { height: 58px; }
#navMenu { display: flex; align-items: center; gap: 2rem; }
#navMenu a {
  text-decoration: none; color: var(--text-mid);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.25s; position: relative;
}
#navMenu a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s var(--ease);
}
#navMenu a:not(.nav-cta):hover { color: var(--blue-mid); }
#navMenu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff !important; padding: 0.6rem 1.4rem; border-radius: 50px;
  font-weight: 600 !important; box-shadow: 0 4px 14px rgba(184,130,31,0.36);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(184,130,31,0.48); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text-dark); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  position: relative; min-height: calc(100vh - 84px);
  display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center;
  gap: 2rem; padding: 3rem clamp(1.5rem, 5vw, 5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(640px circle at 12% 18%, rgba(18,85,160,0.08), transparent 60%),
    radial-gradient(560px circle at 92% 88%, rgba(184,130,31,0.10), transparent 60%),
    linear-gradient(180deg, #ffffff, #f7faff);
}
.hero-text { position: relative; z-index: 2; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-mid); background: rgba(18,85,160,0.07);
  border: 1px solid rgba(18,85,160,0.18); padding: 0.45rem 1.1rem;
  border-radius: 30px; margin-bottom: 1.6rem; font-weight: 600;
}
.hero-badge::before { content: '✦'; color: var(--gold); }
.hero-sub {
  font-size: clamp(0.98rem, 1.4vw, 1.1rem); font-weight: 300;
  color: var(--text-muted); max-width: 480px; margin-bottom: 2.2rem; line-height: 1.85;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.8rem; }
.hero-stats { display: flex; gap: 2.4rem; padding-top: 1.8rem; border-top: 1px solid var(--border); }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat .num { font-size: 1.9rem; font-weight: 700; color: var(--blue-mid); line-height: 1; }
.hero-stat .lbl { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 0.35rem; }

.hero-image { position: relative; z-index: 1; }
.hero-image > img {
  width: 100%; aspect-ratio: 4/3.4; object-fit: cover;
  border-radius: 24px; box-shadow: var(--shadow-xl);
}
.hero-image-badge {
  position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,0.94); backdrop-filter: blur(12px);
  border-radius: 50px; padding: 0.6rem 1.4rem; display: flex; align-items: center; gap: 0.5rem;
  box-shadow: var(--shadow); border: 1px solid rgba(18,85,160,0.1); white-space: nowrap; z-index: 4;
}
.hero-image-badge span { font-size: 0.78rem; color: var(--text-mid); }
.hero-image-badge strong { color: var(--blue-mid); font-size: 0.82rem; }

/* ── FLOATING IMAGES ── */
.float-card {
  position: absolute; z-index: 3; border-radius: 20px;
  animation: floatY 7s ease-in-out infinite;
  will-change: transform; isolation: isolate;
}
.float-card img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
  box-shadow:
    0 2px 4px rgba(11,37,69,0.10),
    0 18px 40px -12px rgba(11,37,69,0.45),
    0 0 0 1px rgba(255,255,255,0.55) inset;
}
/* soft colour glow behind each card */
.float-card::before {
  content: ''; position: absolute; inset: -22%; z-index: -1;
  border-radius: 50%; filter: blur(30px); opacity: 0.55;
  background: radial-gradient(circle, rgba(184,130,31,0.55), transparent 70%);
}
.float-b::before { background: radial-gradient(circle, rgba(18,85,160,0.55), transparent 70%); }
.float-c::before { background: radial-gradient(circle, rgba(41,171,226,0.5), transparent 70%); }

/* glassy caption chip */
.float-tag {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  color: var(--text-dark); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.36rem 0.85rem; border-radius: 30px;
  box-shadow: 0 8px 20px rgba(11,37,69,0.22); border: 1px solid rgba(255,255,255,0.7);
}
.float-tag .star { color: var(--gold); }
.float-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: #25d366; box-shadow: 0 0 0 3px rgba(37,211,102,0.25); }

.float-a { width: 216px; aspect-ratio: 4/3;  top: -34px;  right: -34px; animation-delay: 0s; }
.float-b { width: 150px; aspect-ratio: 1/1;  bottom: 34px; left: -46px;  animation-delay: 1.4s; }
.float-c { width: 134px; aspect-ratio: 3/4;  bottom: -30px; right: -34px; animation-delay: 0.7s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-15px) rotate(2deg); }
}

/* decorative section floats (large, gently peeking) */
.float-deco { position: absolute; z-index: 0; pointer-events: none; }
.float-deco img {
  width: 100%; border-radius: 22px;
  box-shadow: 0 24px 55px -14px rgba(11,37,69,0.4), 0 0 0 1px rgba(255,255,255,0.5) inset;
  animation: floatY 9s ease-in-out infinite;
}
.float-deco::before {
  content: ''; position: absolute; inset: -25%; z-index: -1;
  border-radius: 50%; filter: blur(40px); opacity: 0.5;
  background: radial-gradient(circle, rgba(184,130,31,0.45), transparent 70%);
}
.float-deco-services { top: 9%; right: 2.5%; width: 156px; transform: rotate(3deg); }
.float-deco-faq { bottom: 10%; left: 2.5%; width: 156px; transform: rotate(-3deg); }
.float-deco-faq::before { background: radial-gradient(circle, rgba(18,85,160,0.45), transparent 70%); }

/* ── TRUST STRIP ── */
.trust-strip {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem;
  background: var(--blue-deep); color: rgba(255,255,255,0.92);
  padding: 1.1rem 2rem; font-size: 0.84rem; font-weight: 500; letter-spacing: 0.02em;
}
.trust-strip span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* ── SECTIONS ── */
.section { position: relative; padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem); overflow: hidden; }
.section-head { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.section-head .section-intro { margin: 0 auto; }
#services { background: var(--light-bg); }
#why { background: var(--white); }
#collection { background: var(--light-bg2); }
#faq { background: var(--white); }
#contact { background: var(--light-bg); }

/* ── SERVICES ── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem; max-width: var(--maxw); margin: 0 auto; position: relative; z-index: 1;
}
.service-card {
  position: relative; background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.4rem 1.9rem; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}
.service-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue-sky));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(18,85,160,0.14); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  background: linear-gradient(135deg, rgba(18,85,160,0.09), rgba(41,171,226,0.10));
  border: 1px solid rgba(18,85,160,0.11); margin-bottom: 1.4rem;
}
.service-card h3 { font-size: 1.45rem; font-weight: 700; margin-bottom: 0.55rem; }
.service-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── WHY US ── */
.why-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.why-media { position: relative; }
.why-photo { width: 100%; aspect-ratio: 3/2.4; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-lg); }
.why-photo-badge {
  position: absolute; top: 1.2rem; left: -1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #fff;
  padding: 0.8rem 1.3rem; border-radius: 14px; box-shadow: var(--shadow); z-index: 4;
}
.why-photo-badge strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1; }
.why-photo-badge span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.92; }
.why-text .section-intro { margin-bottom: 2.2rem; }
.why-features { display: flex; flex-direction: column; gap: 1rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.15rem 1.4rem; border-radius: 14px; border: 1px solid var(--border);
  background: var(--off-white); transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.feature-item:hover { border-color: rgba(184,130,31,0.3); box-shadow: var(--shadow); transform: translateX(5px); }
.feature-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature-item h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.2rem; }
.feature-item p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ── GALLERY ── */
.gallery {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 232px 232px; gap: 1.1rem;
  grid-template-areas:
    "a b b d"
    "a c c d";
}
.area-a { grid-area: a; } .area-b { grid-area: b; }
.area-c { grid-area: c; } .area-d { grid-area: d; }
.gallery-item {
  position: relative; display: block; border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow); text-decoration: none;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  padding: 1.6rem 1.2rem 1.05rem; color: #fff;
  display: flex; flex-direction: column; gap: 0.15rem;
  background: linear-gradient(to top, rgba(11,37,69,0.88), rgba(11,37,69,0.12) 70%, transparent);
}
.gallery-cap strong { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; line-height: 1.1; }
.gallery-cap em {
  font-style: normal; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.04em; color: var(--gold-accent);
  opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-cap em,
.gallery-item:focus-visible .gallery-cap em { opacity: 1; transform: none; }
.gallery-cta { text-align: center; margin-top: 2.6rem; }
.gallery-cta-note { color: var(--text-muted); font-weight: 300; margin-bottom: 1.1rem; font-size: 0.98rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.faq-item {
  background: var(--off-white); border: 1px solid var(--border); border-radius: 14px;
  padding: 0 1.4rem; margin-bottom: 0.9rem; transition: box-shadow 0.3s, border-color 0.3s;
}
.faq-item[open] { box-shadow: var(--shadow); border-color: rgba(18,85,160,0.18); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.15rem 0; font-weight: 600; font-size: 1rem;
  color: var(--text-dark); display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--gold); transition: transform 0.3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 1.2rem; color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; font-weight: 300; }
.faq-item p a { color: var(--blue-bright); }

/* ── CONTACT ── */
.contact-inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
}
.info-block { margin-bottom: 1.8rem; }
.info-block h4 {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--blue-bright); margin-bottom: 0.6rem; font-weight: 600;
}
.info-block p, .info-block a { font-size: 0.96rem; color: var(--text-mid); line-height: 1.7; text-decoration: none; }
.info-block a:hover { color: var(--blue-mid); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.55rem 0; font-size: 0.9rem; color: var(--text-mid); }
.hours-table td:last-child { text-align: right; color: var(--text-muted); }
.hours-table tr.today td { color: var(--gold); font-weight: 700; }
.hours-table tr.today td:first-child::before { content: '● '; color: var(--gold); font-size: 0.7em; vertical-align: middle; }
.hours-table .closed { color: #bbb !important; }
.contact-actions { display: flex; gap: 1rem; margin-top: 1.6rem; flex-wrap: wrap; }
.map-wrap { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); height: 380px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.map-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.8rem; }
.map-note a { color: var(--blue-bright); text-decoration: none; }

/* ── FOOTER ── */
footer { background: var(--blue-deep); border-top: 3px solid var(--gold); padding: 2.6rem 2rem; text-align: center; }
footer > img { height: 44px; width: auto; margin: 0 auto 1rem; opacity: 0.95; }
.footer-links { display: flex; justify-content: center; gap: 1.6rem; flex-wrap: wrap; margin: 1rem 0; }
.footer-links a { font-size: 0.76rem; color: rgba(255,255,255,0.6); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.25s; }
.footer-links a:hover { color: var(--gold-accent); }
footer p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.9; }
footer p a { color: rgba(255,255,255,0.7); text-decoration: none; }

/* ── WHATSAPP FLOAT ── */
.wa-float { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 999; display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.wa-label {
  background: rgba(255,255,255,0.97); border: 1px solid rgba(37,211,102,0.3); color: #1a8a3a;
  font-size: 0.78rem; font-weight: 600; padding: 0.45rem 1rem; border-radius: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12); opacity: 0; transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s; white-space: nowrap;
}
.wa-float:hover .wa-label { opacity: 1; transform: translateX(0); }
.wa-btn {
  width: 58px; height: 58px; border-radius: 50%; background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5); transition: transform 0.25s; animation: waPulse 2.5s ease-in-out infinite;
}
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover .wa-btn { transform: scale(1.1); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.3); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .float-deco { display: none; } }
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 2.5rem; gap: 3rem; }
  .hero-text { max-width: 640px; }
  .hero-image { max-width: 520px; margin: 0 auto; }
  .why-inner { grid-template-columns: 1fr; }
  .why-media { max-width: 540px; }
  .float-deco { display: none; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  #navMenu {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(18px);
    box-shadow: var(--shadow-lg);
    max-height: 0; overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.35s var(--ease);
  }
  #navMenu.open { max-height: 420px; padding: 0.5rem 0; }
  #navMenu li { width: 100%; text-align: center; }
  #navMenu a { display: block; padding: 0.9rem 1rem; }
  #navMenu a:not(.nav-cta)::after { display: none; }
  .nav-cta { display: inline-block; margin: 0.6rem auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr 1fr; grid-template-rows: auto;
    grid-template-areas: "a b" "c d";
  }
  .gallery-item { aspect-ratio: 1 / 1; }
  .gallery-cap em { opacity: 1; transform: none; }
  .float-a { width: 130px; top: -16px; right: -10px; }
  .float-b { width: 96px; left: -14px; }
  .float-c { width: 90px; right: -10px; }
  .hero-stats { gap: 1.4rem; }
}
@media (max-width: 460px) {
  nav { padding: 0.5rem 1.2rem; }
  .trust-strip { font-size: 0.74rem; gap: 0.6rem 1.4rem; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { flex: 1; text-align: center; }
}

/* ── MOTION SAFETY ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
