/* ============================================
   West Glass Company — premium stylesheet
   Palette: midnight + crystal cyan + champagne
   Type: Fraunces (display) + Inter (body)
============================================ */

:root {
  --bg: #0B1120;
  --bg-2: #0E172A;
  --bg-3: #111b33;
  --ink: #F5F7FB;
  --ink-dim: #A8B2C7;
  --ink-mute: #6B7A99;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --cyan: #7DD3FC;
  --cyan-2: #0EA5E9;
  --cyan-glow: rgba(14, 165, 233, 0.35);
  --gold: #D4AF37;
  --gold-soft: #E8C547;

  --grad-accent: linear-gradient(135deg, #7DD3FC 0%, #0EA5E9 55%, #D4AF37 100%);
  --grad-ink: linear-gradient(180deg, #F5F7FB 0%, #A8B2C7 100%);
  --grad-bg: radial-gradient(1200px 800px at 85% -10%, rgba(14, 165, 233, 0.18), transparent 60%),
             radial-gradient(900px 600px at 10% 10%, rgba(212, 175, 55, 0.10), transparent 55%),
             linear-gradient(180deg, #0B1120 0%, #0A0F1E 100%);

  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 60px var(--cyan-glow);

  --radius: 18px;
  --radius-sm: 10px;
  --container: 1200px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--grad-bg);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--cyan); }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================================
   Background shards
============================================ */
.bg-shards {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.shard {
  position: absolute;
  display: block;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.12), rgba(212, 175, 55, 0.06));
  border: 1px solid rgba(125, 211, 252, 0.12);
  backdrop-filter: blur(4px);
  transform: rotate(25deg);
  animation: float 18s ease-in-out infinite;
}
.shard-1 { top: 10%; left: -6%; width: 360px; height: 220px; border-radius: 28px; opacity: .6; }
.shard-2 { top: 55%; right: -8%; width: 480px; height: 280px; border-radius: 36px; opacity: .45; animation-delay: -6s; }
.shard-3 { top: 120%; left: 30%; width: 320px; height: 200px; border-radius: 22px; opacity: .35; animation-delay: -12s; }
.shard-4 { top: 200%; right: 10%; width: 260px; height: 160px; border-radius: 18px; opacity: .3; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(25deg); }
  50%      { transform: translateY(-30px) rotate(22deg); }
}

/* ============================================
   Typography
============================================ */
.display, .h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display {
  font-size: clamp(2.6rem, 6.2vw, 5.6rem);
  background: linear-gradient(180deg, #ffffff 10%, #C7D2E6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display em, .h2 em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.h2 {
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  color: var(--ink);
}
.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 1.5rem 0 2rem;
}
.kicker {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 1rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold);
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: 0.01em;
  transition: all .3s var(--ease);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  color: #0B1120;
  background: var(--grad-accent);
  box-shadow: 0 12px 35px -10px var(--cyan-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px -12px var(--cyan-glow), inset 0 1px 0 rgba(255,255,255,0.5);
  color: #0B1120;
}
.btn-ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(14, 165, 233, 0.06);
}
.btn-block { width: 100%; justify-content: center; margin-top: 8px; }

/* ============================================
   Navigation
============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 17, 32, 0.75);
  backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-strong);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: .68rem;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: .92rem;
  color: var(--ink-dim);
  font-weight: 500;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--grad-accent);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
  color: var(--ink) !important;
}
.nav-cta:hover {
  border-color: var(--cyan);
  background: rgba(14, 165, 233, 0.1);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.nav-toggle span:nth-child(1) { width: 22px; }
.nav-toggle span:nth-child(2) { width: 16px; margin-left: auto; }
.nav-toggle span:nth-child(3) { width: 22px; }

/* ============================================
   Hero
============================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  gap: 40px;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.hero-meta strong {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
}
.hero-meta span {
  font-size: .82rem;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

/* Hero visual — glass stack */
.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
}
.glass-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 4/5;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-8deg) rotateX(4deg);
  transition: transform .6s var(--ease);
}
.glass-card:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg); }
.glass-pane {
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.22);
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.14), rgba(14, 165, 233, 0.04));
  backdrop-filter: blur(6px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.75), inset 0 1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.glass-pane:hover {
  border-color: rgba(125, 211, 252, 0.55);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.85), 0 0 0 1px rgba(125, 211, 252, 0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  z-index: 5 !important;
  transform: scale(1.03);
}
.glass-pane:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}
.glass-pane img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.glass-pane.is-logo {
  background: linear-gradient(135deg, rgba(11, 17, 32, 0.85), rgba(14, 23, 42, 0.75));
}
.glass-pane.is-logo img {
  object-fit: contain;
  padding: 14%;
}
.glass-pane.is-logo::before {
  /* softer tint so logo stays readable */
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.10), rgba(212, 175, 55, 0.06));
}
.glass-pane::before {
  /* frosted tint + vignette over the photo */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.18), rgba(11, 17, 32, 0.05) 50%, rgba(212, 175, 55, 0.12)),
    linear-gradient(180deg, rgba(11, 17, 32, 0) 55%, rgba(11, 17, 32, 0.55) 100%);
  z-index: 1;
  pointer-events: none;
}
.glass-pane::after {
  /* top highlight reflection */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0) 35%);
  mix-blend-mode: screen;
  z-index: 2;
  pointer-events: none;
}
.pane-a { top: 6%;  left: 6%;  width: 58%; height: 52%; animation: drift 9s ease-in-out infinite;  z-index: 1; }
.pane-b { top: 42%; left: 38%; width: 58%; height: 52%; animation: drift 11s ease-in-out infinite -3s; z-index: 3; }
.pane-c { top: 26%; left: 22%; width: 42%; height: 42%; animation: drift 13s ease-in-out infinite -6s; z-index: 2; }
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -8px); }
}
.glass-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  animation: shine 6s ease-in-out infinite;
  z-index: 4;
  pointer-events: none;
  mix-blend-mode: screen;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50%      { transform: translateX(100%); }
}
.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(11, 17, 32, 0.85);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}
.badge strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1rem;
}
.badge span {
  display: block;
  font-size: .74rem;
  color: var(--ink-mute);
}
.badge-float {
  bottom: 8%;
  left: -5%;
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
}
.scroll-hint span {
  width: 3px; height: 8px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollDot 2s infinite;
}
@keyframes scrollDot {
  0%   { opacity: 0; transform: translateY(0); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ============================================
   Sections
============================================ */
.section {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
.section-alt {
  background: linear-gradient(180deg, rgba(14, 23, 42, 0.4), rgba(17, 27, 51, 0.4));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}
.section-sub {
  color: var(--ink-dim);
  font-size: 1.08rem;
  margin-top: 1rem;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding: 36px 30px;
  min-height: 260px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  isolation: isolate;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-accent);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 1;
}
.service-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px -20px rgba(14, 165, 233, 0.4);
}
.service-card:hover::before { opacity: .08; }

/* Service cards with background photo */
.service-card.has-photo {
  min-height: 340px;
  justify-content: flex-end;
  padding-top: 180px;
  padding-bottom: 32px;
}
/* ::after holds the photo with a dark gradient veil stacked on top */
.service-card.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg,
      rgba(11, 17, 32, 0.18) 0%,
      rgba(11, 17, 32, 0.55) 38%,
      rgba(11, 17, 32, 0.94) 72%,
      rgba(7, 11, 22, 0.99) 100%),
    var(--bg-image);
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.04);
  transition: transform .8s var(--ease), filter .6s var(--ease);
  z-index: 0;
}
.service-card.has-photo > * { position: relative; z-index: 2; }
.service-card.has-photo .service-ico {
  display: none;
}
.service-card.has-photo h3 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 1px 2px rgba(0, 0, 0, 0.9);
}
.service-card.has-photo p {
  color: #EDF1F9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 1px 2px rgba(0, 0, 0, 0.95);
  font-weight: 450;
}
.service-card.has-photo:hover::after {
  transform: scale(1.08);
  filter: saturate(1.15) brightness(.82);
}
.service-ico {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(125, 211, 252, 0.22);
  color: var(--cyan);
  margin-bottom: 22px;
}
.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.service-card p {
  color: var(--ink-dim);
  margin: 0;
  font-size: .96rem;
}

/* ============================================
   About / Owners
============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-visual { display: grid; place-items: center; }
.portrait {
  position: relative;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 4/5;
}
.portrait-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(160deg, #0E172A, #1a2647);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(4deg) rotateX(-2deg);
  transition: transform .7s var(--ease);
}
.portrait-frame:hover {
  transform: perspective(1400px) rotateY(1deg) rotateX(0deg);
}
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(11, 17, 32, 0.85) 100%),
    linear-gradient(135deg, rgba(14, 165, 233, 0.15), transparent 40%);
  pointer-events: none;
  z-index: 1;
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .5;
  pointer-events: none;
  z-index: 3;
}
.portrait-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.6);
}
.portrait-caption span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 4px;
}
.portrait-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(closest-side, rgba(14, 165, 233, 0.3), transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.quote {
  margin: 1.5rem 0 2.5rem;
  padding: 0;
  position: relative;
}
.quote-mark {
  color: rgba(125, 211, 252, 0.3);
  margin-bottom: 1rem;
}
.quote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 1rem;
  font-style: italic;
}
.quote cite {
  font-style: normal;
  color: var(--gold-soft);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: 0.02em;
}
.about-stats {
  display: flex;
  gap: 50px;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.about-stats div { display: flex; flex-direction: column; }
.about-stats strong {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 500;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-stats span {
  font-size: .82rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

/* ============================================
   Service Area
============================================ */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.area-chips li {
  padding: 14px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  font-size: .94rem;
  color: var(--ink-dim);
  transition: all .3s var(--ease);
  cursor: default;
}
.area-chips li:hover {
  border-color: var(--cyan);
  color: var(--ink);
  background: rgba(14, 165, 233, 0.08);
  transform: translateY(-2px);
}

/* ============================================
   Reviews
============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  margin: 0;
  padding: 34px 30px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  position: relative;
}
.review::before {
  content: '';
  position: absolute;
  top: -1px; left: 28px; right: 28px;
  height: 1px;
  background: var(--grad-accent);
  opacity: .6;
}
.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}
.review blockquote {
  margin: 0 0 18px;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
}
.review figcaption {
  font-size: .86rem;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.reviews-note {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-dim);
}
.reviews-note a {
  color: var(--cyan);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.reviews-note a:hover { border-color: var(--cyan); }

/* ============================================
   Contact
============================================ */
.contact { padding-top: 80px; }
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 70px 70px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(14, 23, 42, 0.9), rgba(17, 27, 51, 0.85));
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, var(--cyan-glow), transparent);
  filter: blur(40px);
  pointer-events: none;
}
.contact-copy p {
  color: var(--ink-dim);
  margin: 1rem 0 2rem;
}
.contact-list {
  display: grid;
  gap: 22px;
  margin-top: 2rem;
}
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--cyan);
}
.contact-list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-list strong {
  color: var(--ink-mute);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.contact-list a, .contact-list span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}
.contact-list a:hover { color: var(--cyan); }

.contact-form {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(11, 17, 32, 0.6);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  font: inherit;
  font-size: .98rem;
  transition: all .25s var(--ease);
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--ink-mute); }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
  background: rgba(11, 17, 32, 0.85);
}
.form-note {
  margin: 8px 0 0;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: var(--cyan);
  font-size: .9rem;
  text-align: center;
}

/* ============================================
   Footer
============================================ */
.footer {
  position: relative;
  z-index: 1;
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(11, 17, 32, 0.6);
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; line-height: 1.2; }
.footer-links {
  display: flex;
  gap: 30px;
  justify-content: center;
}
.footer-links a {
  font-size: .9rem;
  color: var(--ink-dim);
}
.footer-links a:hover { color: var(--cyan); }
.copyright {
  margin: 0;
  color: var(--ink-mute);
  font-size: .82rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}
.made-by {
  font-size: .78rem;
  letter-spacing: 0.04em;
}
.made-by a {
  color: var(--cyan);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color .25s;
}
.made-by a:hover { border-color: var(--cyan); }

/* ============================================
   Reveal animation
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   Responsive
============================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { min-height: 420px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; padding: 50px 36px; gap: 40px; }
  .nav-links {
    position: fixed;
    top: 70px; left: 20px; right: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(11, 17, 32, 0.95);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line-strong);
    border-radius: 18px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all .3s var(--ease);
  }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav.open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-toggle { display: flex; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-links { justify-content: center; }
  .copyright { text-align: center; align-items: center; }
  .hero-meta { flex-wrap: wrap; gap: 24px; }
  .about-stats { gap: 30px; }
}
@media (max-width: 560px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 40px 24px; }
  .initials { font-size: 6rem; }
}

/* ============================================
   Lightbox
============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 40px;
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-frame {
  margin: 0;
  justify-self: center;
  max-width: min(90vw, 1100px);
  max-height: 85vh;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(14, 165, 233, 0.2);
  background: rgba(11, 17, 32, 0.6);
  position: relative;
  transform: scale(.94);
  transition: transform .5s var(--ease);
}
.lightbox.open .lightbox-frame { transform: scale(1); }
.lightbox-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 1px;
  background: var(--grad-accent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: .6;
  pointer-events: none;
}
.lightbox-frame img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
}
.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(11, 17, 32, 0.7);
  backdrop-filter: blur(10px);
  color: var(--ink);
  cursor: pointer;
  transition: all .3s var(--ease);
}
.lightbox-close { position: absolute; top: 24px; right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(14, 165, 233, 0.12);
  transform: scale(1.06);
}

@media (max-width: 720px) {
  .lightbox { padding: 20px; gap: 10px; }
  .lightbox-close { top: 16px; right: 16px; }
  .lightbox-close, .lightbox-nav { width: 44px; height: 44px; }
}

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