/* FVCI LLC — single page site */

:root {
  --bg: #0a0c0f;
  --panel: #12171f;
  --panel2: #0f1419;
  --text: #f5f7fa;
  --muted: rgba(245, 247, 250, 0.75);
  --muted2: rgba(245, 247, 250, 0.58);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.6);

  --brand: #c9a961;
  --brand2: #f5e5c8;
  --accent: #6ec9be;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1100px;

  --font-sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: Fraunces, ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(1400px 800px at 18% -12%, rgba(201, 169, 97, 0.22), transparent 65%),
              radial-gradient(1100px 700px at 88% 15%, rgba(110, 201, 190, 0.18), transparent 58%),
              radial-gradient(800px 800px at 50% 100%, rgba(184, 156, 106, 0.08), transparent 70%),
              linear-gradient(180deg, #080a0d, #0a0c0f 35%, #07090c);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
}

/* Scroll reveal helpers */
.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 560ms cubic-bezier(0.19, 1, 0.22, 1), transform 560ms cubic-bezier(0.19, 1, 0.22, 1);
}
.js-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal[data-reveal-delay="small"] {
  transition-delay: 80ms;
}
.js-reveal[data-reveal-delay="medium"] {
  transition-delay: 140ms;
}
.js-reveal[data-reveal-delay="large"] {
  transition-delay: 220ms;
}

img { max-width: 100%; display: block; }

/* Subtle, consistent image treatment */
.photo-soft,
.gallery img,
.about-media img,
.profile-img,
.hero-bg::before {
  filter: saturate(1.02) contrast(1.05);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 104px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.trust-strip {
  padding: 18px 0 6px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(900px 240px at 12% 0%, rgba(201,169,97,0.20), transparent 65%),
              radial-gradient(700px 260px at 88% 0%, rgba(110,201,190,0.18), transparent 60%),
              rgba(7, 9, 12, 0.96);
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.trust-label {
  margin: 0;
  font-size: 14px;
  color: var(--muted2);
}
.trust-metrics {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: grid;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: radial-gradient(circle at 0 0, rgba(201,169,97,0.35), transparent 60%), rgba(12, 16, 21, 0.96);
  box-shadow: 0 10px 26px rgba(0,0,0,0.45);
}
.trust-kpi {
  font-size: 13px;
  font-weight: 600;
}
.trust-note {
  font-size: 12px;
  color: var(--muted2);
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}
.section-head h2 {
  margin: 0;
  font-family: var(--font-serif);
  letter-spacing: -0.025em;
  font-size: clamp(28px, 3.3vw, 44px);
  font-weight: 650;
  line-height: 1.15;
}

.muted { color: var(--muted); }
.fineprint { color: var(--muted2); font-size: 13px; margin: 12px 0 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--panel);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 2000;
}
.skip-link:focus { left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(10, 12, 15, 0.70);
  border-bottom: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 4px 12px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(201,169,97,0.40), rgba(245,229,200,0.12));
  border: 1px solid rgba(201,169,97,0.45);
  box-shadow: 0 8px 24px rgba(201,169,97,0.25), 0 2px 8px rgba(0,0,0,0.4);
  overflow: hidden;
}
.brand-logo { width: 28px; height: 28px; display: block; }
.brand-text { display: grid; }
.brand-name { 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
  letter-spacing: 0.03em;
  font-size: 17px;
}
.brand-tag { font-size: 12px; color: var(--muted); margin-top: -2px; }

.nav { display: flex; align-items: center; }
.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(16, 20, 26, 0.65);
  color: var(--text);
  padding: 10px 10px;
  border-radius: 12px;
}
.nav-toggle-lines {
  width: 18px;
  height: 12px;
  display: inline-block;
  background:
    linear-gradient(var(--text), var(--text)) 0 0/100% 2px,
    linear-gradient(var(--text), var(--text)) 0 50%/100% 2px,
    linear-gradient(var(--text), var(--text)) 0 100%/100% 2px;
  background-repeat: no-repeat;
  opacity: 0.88;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 140ms ease, color 140ms ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(184,156,106,0.45);
  background: linear-gradient(135deg, rgba(184,156,106,0.40), rgba(240,223,183,0.10));
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 16px 40px rgba(0,0,0,0.40);
  transition: transform 160ms ease, filter 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 20px 48px rgba(0,0,0,0.48); }
.btn:active { transform: translateY(0px); box-shadow: 0 12px 32px rgba(0,0,0,0.38); }
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(16, 20, 26, 0.55);
  box-shadow: none;
}
.btn-small { padding: 10px 12px; border-radius: 12px; font-size: 14px; }
.btn-wide { width: 100%; }

.hero {
  position: relative;
  padding: 110px 0 68px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(10,12,15,0.94), rgba(10,12,15,0.58) 58%, rgba(10,12,15,0.94)),
    linear-gradient(180deg, rgba(10, 12, 16, 0.5), rgba(10, 12, 16, 0.94)),
    url("assets/hero.jpg") center/cover no-repeat;
  filter: brightness(0.95);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 24px;
  align-items: start;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: rgba(245,229,200,0.90);
  border: 1px solid rgba(201,169,97,0.35);
  background: rgba(18, 23, 31, 0.50);
  padding: 9px 14px;
  border-radius: 999px;
  margin: 0 0 16px;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-serif);
  letter-spacing: -0.03em;
  line-height: 1.08;
  font-size: clamp(40px, 4.8vw, 60px);
  font-weight: 650;
  color: #ffffff;
}

.lead {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 60ch;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-highlights {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}
.hero-highlights li {
  background: rgba(18, 23, 31, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.kpi { display: block; font-weight: 650; letter-spacing: 0.01em; color: var(--brand2); font-size: 20px; }
.kpi-label { display: block; color: var(--muted2); font-size: 13px; margin-top: 4px; }

.hero-card {
  background: rgba(18, 23, 31, 0.75);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  backdrop-filter: blur(8px);
}
.hero-card-top { margin-bottom: 14px; }
.hero-card h2 { margin: 0 0 6px; font-size: 18px; }
.hero-card-actions { display: grid; gap: 10px; }

.h4 { font-size: 18px; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: rgba(18, 23, 31, 0.70);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 4px 12px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.18);
}
.card h3 { margin: 0 0 10px; font-size: 19px; font-weight: 600; }
.card p { margin: 0 0 10px; color: var(--muted); line-height: 1.65; }

.card-accent {
  border-color: rgba(110,201,190,0.35);
  background: linear-gradient(135deg, rgba(110,201,190,0.10), rgba(18,23,31,0.60));
  box-shadow: 0 12px 32px rgba(110,201,190,0.15), 0 2px 8px rgba(0,0,0,0.3);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.checklist li {
  position: relative;
  padding-left: 22px;
  color: rgba(242,244,247,0.85);
  font-size: 14px;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(245,229,200,0.98), rgba(201,169,97,0.60));
  box-shadow: 0 4px 12px rgba(201,169,97,0.35), 0 0 20px rgba(201,169,97,0.20);
}

.note {
  margin-top: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.60);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.note-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(201,169,97,0.18);
  border: 1px solid rgba(201,169,97,0.30);
}
.note-title { margin: 0; font-weight: 650; font-size: 16px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.extra-shot {
  display: none;
}
.gallery[data-expanded="true"] .extra-shot {
  display: block;
}
.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}
.shot {
  grid-column: span 6;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(18, 23, 31, 0.60);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.shot:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.shot img { height: 280px; width: 100%; object-fit: cover; transition: transform 220ms ease; transform-origin: center; }
.shot:hover img { transform: scale(1.03); }
.shot figcaption { padding: 14px 16px 16px; display: grid; gap: 3px; }
.shot-title { font-weight: 600; font-size: 16px; }
.shot-meta { color: var(--muted2); font-size: 13px; }
.shot-wide { grid-column: span 12; }
.shot-wide img { height: 320px; }

.testimonials {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quote {
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.45);
}
.quote p { margin: 0; line-height: 1.65; }
.quote p:first-child { font-weight: 500; font-size: 15px; }
.quote p:last-child { margin-top: 10px; color: var(--muted); }

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.steps li {
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.steps li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.steps h3 { margin: 0 0 10px; font-size: 17px; font-weight: 600; }
.steps p { margin: 0; color: var(--muted); line-height: 1.6; }

.pricing {
  margin-top: 20px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,169,97,0.12), rgba(110,201,190,0.10));
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.pricing h3 { margin: 0 0 10px; font-size: 19px; font-weight: 600; }

.pricing-badges {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.badge {
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.badge-top { color: var(--muted2); font-size: 12px; display: block; }
.badge-main { font-weight: 650; margin-top: 8px; display: block; font-size: 18px; color: var(--brand2); }

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: center;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.owner-spotlight {
  max-width: 720px;
  margin: 0 auto;
}
.profile-featured {
  grid-template-columns: 280px 1fr;
  min-height: 320px;
}
.owner-spotlight {
  max-width: 720px;
  margin: 0 auto;
}
.profile-featured {
  grid-template-columns: 280px 1fr;
  min-height: 320px;
}
.profile {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(18, 23, 31, 0.65);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.3);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 220px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.55), 0 6px 16px rgba(0,0,0,0.4);
}
.profile picture {
  display: block;
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-img-wide {
  aspect-ratio: 16 / 10;
}
.profile-copy {
  padding: 20px 20px 18px;
}
.profile-copy h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
  font-size: 20px;
  font-weight: 650;
}
.profile-copy p {
  margin: 0 0 12px;
  line-height: 1.65;
}

.certificate-card {
  margin-top: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  background: radial-gradient(circle at 0 0, rgba(201,169,97,0.35), transparent 60%), rgba(10, 12, 15, 0.96);
  box-shadow: 0 14px 40px rgba(0,0,0,0.50);
  padding: 16px 18px 14px;
}
.certificate-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.certificate-header h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.certificate-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 16px;
  background: rgba(18, 23, 31, 0.90);
  border: 1px solid rgba(201,169,97,0.55);
}

/* Before/After slider */
.ba {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(16, 20, 26, 0.45);
  box-shadow: 0 22px 60px rgba(0,0,0,0.42);
}
.ba-img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
  display: block;
}
.ba-after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(240,223,183,0.92);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.35);
}
.ba-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(16, 20, 26, 0.80);
  border: 1px solid rgba(184,156,106,0.55);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}
.ba-label {
  position: absolute;
  top: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(16, 20, 26, 0.70);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.84);
  font-size: 13px;
}
.ba-label-left { left: 14px; }
.ba-label-right { right: 14px; }

/* Testimonials section */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stars {
  letter-spacing: 0.18em;
  color: rgba(240,223,183,0.92);
  font-size: 14px;
  margin: 0 0 10px;
}

/* Lightbox */
body.no-scroll { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}
.lightbox[data-open="true"] { display: block; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.76);
}
.lightbox-inner {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  padding: 16px;
}
.lb-figure {
  margin: 0;
  display: grid;
  gap: 10px;
  justify-items: center;
}
.lb-img {
  max-width: min(1040px, 92vw);
  max-height: 72vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.60);
  background: rgba(16, 20, 26, 0.30);
}
.lb-caption {
  color: rgba(255,255,255,0.78);
  text-align: center;
  max-width: min(900px, 92vw);
}
.lb-btn {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(16, 20, 26, 0.60);
  color: rgba(255,255,255,0.92);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.lb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  font-size: 22px;
}
.lb-prev, .lb-next { font-size: 28px; }
.lb-btn:hover { filter: brightness(1.06); }

@media (max-width: 920px) {
  .quotes { grid-template-columns: 1fr; }
  .lightbox-inner { grid-template-columns: 44px 1fr 44px; }
}
.about-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(18, 23, 31, 0.60);
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}
.about-media img { height: 440px; width: 100%; object-fit: cover; }
.about-copy h2 { margin-top: 0; font-size: 32px; }
.about-copy p { color: rgba(245,247,250,0.88); line-height: 1.7; }
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}
.mini {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.65);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.mini h3 { margin: 0 0 10px; font-size: 17px; font-weight: 600; }
.mini p { margin: 0; color: var(--muted); }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: start;
}

.form {
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.70);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.field { display: grid; gap: 6px; margin-bottom: 12px; }
label { font-weight: 600; font-size: 13px; color: rgba(242,244,247,0.90); }

input, select, textarea {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(10, 12, 15, 0.60);
  color: var(--text);
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
input::placeholder, textarea::placeholder { color: rgba(245,247,250,0.45); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(110, 201, 190, 0.50);
  box-shadow: 0 0 0 4px rgba(110, 201, 190, 0.12), 0 2px 8px rgba(110, 201, 190, 0.15);
}

.field-error { margin: 0; color: rgba(255, 180, 180, 0.95); font-size: 13px; min-height: 18px; }

.form-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.form-status { margin: 10px 0 0; color: rgba(240,223,183,0.85); min-height: 22px; }

.contact-card {
  border-radius: var(--radius);
  background: rgba(18, 23, 31, 0.70);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.contact-card h3 { margin: 0 0 6px; font-size: 20px; font-weight: 600; }
.contact-lines { margin-top: 12px; display: grid; gap: 10px; }
.line { display: flex; justify-content: space-between; gap: 14px; }
.label { color: var(--muted2); font-size: 13px; }
.value a { color: var(--text); text-decoration: none; border-bottom: 1px solid rgba(240,223,183,0.35); }
.value a:hover { border-bottom-color: rgba(240,223,183,0.75); }
.divider { height: 1px; background: rgba(255,255,255,0.10); margin: 14px 0; }

.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(10, 12, 15, 0.75), rgba(7, 9, 12, 0.90));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col { display: flex; flex-direction: column; gap: 16px; }
.footer-about { gap: 20px; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; }
.footer-name { font-weight: 650; font-size: 18px; }
.footer-tag { font-size: 13px; margin-top: -2px; }
.footer-desc { margin: 0; font-size: 14px; line-height: 1.6; max-width: 280px; }
.footer-heading { 
  margin: 0; 
  font-size: 15px; 
  font-weight: 600; 
  letter-spacing: 0.02em;
  color: var(--text);
  text-transform: uppercase;
  opacity: 0.95;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { 
  color: var(--muted); 
  text-decoration: none; 
  font-size: 15px;
  transition: color 150ms ease, transform 150ms ease;
  display: inline-block;
}
.footer-nav a:hover { color: var(--text); transform: translateX(4px); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(18, 23, 31, 0.60);
  border: 1px solid rgba(255,255,255,0.10);
  transition: border-color 150ms ease, background 150ms ease;
}
.footer-contact-item:hover {
  background: rgba(18, 23, 31, 0.80);
  border-color: rgba(201,169,97,0.35);
}
.contact-label { font-size: 12px; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-value { font-size: 15px; color: var(--text); font-weight: 550; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-legal, .footer-credit { margin: 0; }

@media (max-width: 960px) {
  .trust-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
.owner-spotlight {
  max-width: 720px;
  margin: 0 auto;
}
.profile-featured {
  grid-template-columns: 280px 1fr;
  min-height: 320px;
}
  .profile { grid-template-columns: 1fr; }
  .profile-img { height: auto; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-media img { height: 340px; }
  .about-points, .fit-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-about { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    right: 20px;
    top: 64px;
    width: min(340px, calc(100vw - 40px));
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 10px;
    border-radius: 16px;
    background: rgba(16, 20, 26, 0.92);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 70px rgba(0,0,0,0.60);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 12px; }

  .hero-highlights { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { gap: 12px; }
  .shot { grid-column: span 12; }
  .shot img { height: 230px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-about { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
