/* ============ Single Lens LLC — Static Site Styles ============ */

:root {
  --cream: #FAF8F5;
  --cream-alt: #F2EFEB;
  --red: #E63946;
  --red-hover: #D90429;
  --navy: #1D3557;
  --navy-light: #457B9D;
  --ink: #0A0A0A;
  --body: #374151;
  --muted: #6B7280;
  --border: rgba(29, 53, 87, 0.1);
  --wa-green: #25D366;
  --wa-green-hover: #1EBE57;
  --dark: #111827;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

::selection { background: var(--red); color: #fff; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.kicker {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--muted);
}
.kicker.red { color: var(--red); }
.red { color: var(--red); }
.navy { color: var(--navy); }
.cream { color: rgba(250, 248, 245, 0.75); }
.white { color: #fff; }
.italic { font-style: italic; font-weight: 300; }
.light { font-weight: 300; font-style: italic; }

.h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1rem;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  line-height: 1.2;
}
.btn svg { width: 16px; height: 16px; }
.btn.big { padding: 1.05rem 1.9rem; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-hover); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { color: var(--navy); padding: 0.95rem 0.5rem; border-bottom: 2px solid transparent; }
.btn-ghost:hover { color: var(--red); border-bottom-color: var(--red); }

/* ============ Header ============ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.logo-link img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo-link img { height: 64px; }
}

.desktop-nav { display: none; gap: 2.5rem; }
.desktop-nav a { font-size: 0.9rem; font-weight: 500; color: var(--body); transition: color 0.2s; }
.desktop-nav a:hover { color: var(--red); }

.header-ctas { display: none; align-items: center; gap: 0.75rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.2s;
}
.header-phone:hover { color: var(--red); }
.header-phone svg { width: 16px; height: 16px; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--navy);
}
.menu-toggle svg { width: 24px; height: 24px; }

@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
  .header-ctas { display: flex; }
  .menu-toggle { display: none; }
}

.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1.1rem;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--navy); }
.mobile-menu .btn { margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu.is-open { display: none !important; }
}

[hidden] { display: none !important; }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero { padding: 9rem 0 7rem; }
}
.hero-bg { position: absolute; inset: 0; z-index: -1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--cream) 0%, rgba(250,248,245,0.9) 40%, rgba(250,248,245,0.4) 100%),
    linear-gradient(to bottom, transparent 60%, var(--cream) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy);
}
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--red);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-subline {
  max-width: 560px;
  margin-top: 2rem;
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.7;
}

.hero-ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-badges {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.88rem;
}
.hero-badges > div { display: flex; align-items: center; gap: 0.5rem; }
.hero-badges svg { width: 16px; height: 16px; color: var(--red); }

.hero-image-wrap { position: relative; display: none; }
@media (min-width: 1024px) { .hero-image-wrap { display: block; } }
.hero-image {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid var(--border);
  box-shadow: 0 30px 60px -30px rgba(29, 53, 87, 0.5);
  overflow: hidden;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-tag {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  border-left: 4px solid var(--red);
}
.tag-big { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); }
.tag-sub { font-size: 0.75rem; color: var(--body); margin-top: 0.25rem; }

.hero-badge-red {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  background: var(--red);
  color: #fff;
  padding: 1.25rem;
  transform: rotate(3deg);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.25);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.1;
}

/* ============ Marquee ============ */
.marquee-wrap {
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  overflow: hidden;
}
.marquee {
  display: flex;
  gap: 3rem;
  user-select: none;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
  min-width: 100%;
  animation: scroll 40s linear infinite;
}
.marquee-track span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--navy);
  white-space: nowrap;
}
.marquee-track em { color: var(--red); font-style: normal; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-100%); } }

/* ============ Sections ============ */
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.alt-bg { background: var(--cream-alt); }
.section.dark { background: var(--dark); color: #fff; }

.grid-12 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .grid-12 { grid-template-columns: repeat(12, 1fr); gap: 4rem; }
  .col-5 { grid-column: span 5; }
  .col-6 { grid-column: span 6; }
  .col-7 { grid-column: span 7; }
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-head.sm { margin-bottom: 3rem; }
.section-sub { max-width: 360px; color: var(--body); }

@media (min-width: 768px) {
  .section-head {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }
}
.section-head .kicker { margin-bottom: 1.25rem; }

.link-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding-bottom: 0.25rem;
  transition: color 0.2s, border-color 0.2s;
}
.link-cta:hover { color: var(--red); border-bottom-color: var(--red); }

/* ============ About ============ */
.about-text p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.25rem; }
.visit-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  padding-top: 1rem;
}
.visit-line svg { width: 20px; height: 20px; color: var(--red); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-val {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.stat-lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ============ Services ============ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--border);
  min-height: 240px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(29, 53, 87, 0.25);
}
.service-card.featured { background: var(--navy); color: #fff; }
.service-top { display: flex; align-items: start; justify-content: space-between; margin-bottom: 2.5rem; }
.service-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
}
.service-icon svg { width: 28px; height: 28px; color: var(--red); stroke-width: 1.5; }
.service-icon.red-bg { background: var(--red); }
.service-icon.red-bg svg { color: #fff; }
.service-card .arr { width: 20px; height: 20px; color: var(--navy); opacity: 0; transform: translateX(-8px); transition: all 0.3s; }
.service-card.featured .arr { color: #fff; }
.service-card:hover .arr { opacity: 1; transform: translateX(0); }
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.service-card p { font-size: 0.88rem; line-height: 1.65; color: var(--body); }
.service-card.featured p { color: rgba(255,255,255,0.75); }

/* ============ How It Works ============ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.step {
  position: relative;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--border);
}
.step + .step::before {
  content: "";
  position: absolute;
  top: 50%; left: -10px;
  width: 16px; height: 2px;
  background: var(--red);
  display: none;
}
@media (min-width: 768px) {
  .step + .step::before { display: block; }
}
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(4rem, 8vw, 5.5rem);
  font-weight: 800;
  color: rgba(230, 57, 70, 0.2);
  line-height: 1;
}
.step h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5rem 0 0.75rem;
}
.step p { font-size: 0.88rem; color: var(--body); line-height: 1.65; }

/* ============ Gallery ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.g-item {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 4/5;
}
.g-big { aspect-ratio: 1/1; grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 2; aspect-ratio: 2/1.2; }
@media (max-width: 767px) {
  .g-big { grid-column: span 2; grid-row: auto; aspect-ratio: 4/5; }
  .g-wide { grid-column: span 2; aspect-ratio: 4/3; }
}
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.g-item:hover img { transform: scale(1.06); }
.g-item figcaption {
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
}
.g-item figcaption span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(29, 53, 87, 0.8), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}
.g-item:hover::after { opacity: 1; }
.g-item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ============ Corporate ============ */
.corp-grid { align-items: center; }
.corp-text .h2 { color: #fff; }
.corp-lede {
  margin-top: 2rem;
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
}
.corp-list {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.corp-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.icon-sq {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--red); flex-shrink: 0;
}
.icon-sq svg { width: 20px; height: 20px; color: #fff; stroke-width: 1.5; }

.corp-image { position: relative; order: -1; }
@media (min-width: 1024px) { .corp-image { order: 0; } }
.corp-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.1);
}
.corp-caption {
  display: none;
  position: absolute;
  bottom: -2rem; left: -2rem;
  background: var(--cream);
  color: var(--navy);
  padding: 1.5rem;
  max-width: 320px;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .corp-caption { display: block; } }
.corp-caption .kicker { color: var(--red); }
.corp-caption-big {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

/* ============ Contact ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; gap: 3.5rem; } }

.contact-ways {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(29, 53, 87, 0.25);
}
.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; color: var(--red); stroke-width: 1.5; }
.wa-bg { background: var(--wa-green); }
.wa-bg svg { color: #fff; }
.contact-card.wa { border-color: var(--wa-green); }
.contact-val {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 0.25rem;
}
.contact-sub { font-size: 0.82rem; color: var(--muted); margin-top: 0.25rem; }

.socials { display: flex; gap: 0.5rem; padding-top: 0.5rem; }
.socials a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  color: var(--navy);
  transition: all 0.2s;
}
.socials a:hover {
  background: var(--red); color: #fff; border-color: var(--red);
}
.socials.small a { width: 40px; height: 40px; }
.socials.small a svg { width: 16px; height: 16px; }

.map-wrap {
  aspect-ratio: 4/3;
  border: 1px solid var(--border);
  overflow: hidden;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ============ Footer ============ */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; }
}
.footer-logo-card {
  background: #fff;
  padding: 0.75rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer-logo-card img { height: 64px; width: auto; }
.footer-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.6);
}
.footer-desc {
  margin: 1.5rem 0 2rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 360px;
}
.footer-col .kicker { margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col a { font-size: 0.88rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }

.pay-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.pay-badges span {
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-base {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
@media (min-width: 768px) {
  .footer-base {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-base .kicker {
  color: rgba(255,255,255,0.6);
  font-weight: 600;
}

/* ============ WhatsApp FAB ============ */
.wa-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--wa-green);
  color: #fff;
  padding: 1rem 1.25rem;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s;
  font-weight: 600;
  font-size: 0.88rem;
}
.wa-fab:hover { background: var(--wa-green-hover); transform: translateY(-2px); }
.wa-fab svg { width: 20px; height: 20px; }
.wa-fab span { display: none; }
@media (min-width: 640px) { .wa-fab span { display: inline; } }
