/* CyberStrek — components & layout (Lingo design system) */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--body);
  background: var(--neutral-primary-soft);
}

img { max-width: 100%; display: block; }

/* ---------- Typography (typography.md) ---------- */

h1, h2, h3, h4, h5, h6 {
  color: var(--heading);
  font-weight: 700;
  margin-top: 0;
  text-wrap: balance;
}

h1 { font-size: 28px; line-height: 1.1; letter-spacing: -0.4px; margin-bottom: 24px; }
h2 { font-size: 24px; line-height: 1.15; letter-spacing: -0.3px; margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.2; letter-spacing: -0.2px; margin-bottom: 16px; }
h4 { font-size: 20px; line-height: 1.25; margin-bottom: 12px; }
h5 { font-size: 18px; line-height: 1.3; margin-bottom: 12px; }
h6 { font-size: 16px; line-height: 1.35; margin-bottom: 8px; }

@media (min-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 32px; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
  h5 { font-size: 20px; }
  h6 { font-size: 18px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  h4 { font-size: 24px; }
}

p { margin: 0 0 16px; max-width: 65ch; }

.lead {
  font-size: 19px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 60ch;
  text-wrap: pretty;
}

.small { font-size: 14px; line-height: 1.5; }

a { color: var(--fg-brand); font-weight: 700; text-decoration: none; }
a:hover { text-decoration: underline; }

.label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--fg-brand);
}

strong { color: var(--heading); }

/* ---------- Layout (layout.md, content.md) ---------- */

.container {
  max-width: 1152px;
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  background: var(--neutral-primary-soft);
  padding-block: 48px;
}

.section + .section { border-top: 2px solid var(--border-default); }

@media (min-width: 768px) { .section { padding-block: 64px; } }
@media (min-width: 1024px) { .section { padding-block: 96px; } }

.section-header { margin-bottom: 48px; max-width: 720px; }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header.center p { margin-inline: auto; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Buttons (buttons.md) ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 14px 20px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 100ms ease-out, transform 100ms ease-out;
}
.btn:hover { text-decoration: none; }

.btn-brand {
  background: var(--brand-strong);
  color: #FFFFFF;
  box-shadow: 0 4px 0 var(--shadow-brand);
}
.btn-brand:hover { background: #B11070; }
.btn-brand:focus-visible { outline: none; box-shadow: 0 4px 0 var(--shadow-brand), 0 0 0 4px var(--brand-soft); }

.btn-secondary {
  background: var(--neutral-primary-soft);
  border-color: var(--border-default);
  color: var(--heading);
  box-shadow: 0 4px 0 var(--shadow-secondary);
}
.btn-secondary:hover { background: var(--neutral-secondary-medium); color: var(--heading); }
.btn-secondary:focus-visible { outline: none; box-shadow: 0 4px 0 var(--shadow-secondary), 0 0 0 4px var(--neutral-tertiary); }

.btn-tertiary {
  background: var(--neutral-primary-soft);
  border-color: var(--border-default);
  color: var(--fg-brand);
  box-shadow: 0 4px 0 var(--shadow-secondary);
}
.btn-tertiary:hover { background: var(--brand-softer); }
.btn-tertiary:focus-visible { outline: none; box-shadow: 0 4px 0 var(--shadow-secondary), 0 0 0 4px var(--brand-soft); }

.btn:active { transform: translateY(2px); }
.btn-brand:active { box-shadow: 0 2px 0 var(--shadow-brand); }
.btn-secondary:active, .btn-tertiary:active { box-shadow: 0 2px 0 var(--shadow-secondary); }

.btn-lg { font-size: 16px; padding: 16px 28px; }
.btn-sm { font-size: 13px; padding: 10px 16px; }

/* ---------- Badges & pills (badges.md) ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--border-brand-subtle);
  background: var(--brand-softer);
  color: var(--fg-brand-strong);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 10px;
}

.badge-neutral {
  background: var(--neutral-primary-soft);
  border-color: var(--border-default);
  color: var(--body);
}

/* ---------- Cards (cards.md) ---------- */

.card {
  background: var(--surface-gradient);
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  padding: 24px;
}

.card h3, .card h4 { font-size: 18px; }
@media (min-width: 768px) { .card h3, .card h4 { font-size: 20px; } }

a.card {
  display: block;
  color: inherit;
  text-decoration: none;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 100ms ease-out, border-color 100ms ease-out, transform 100ms ease-out;
}
a.card:hover { background: var(--brand-softer); border-color: var(--border-brand-subtle); text-decoration: none; }
a.card:active { transform: translateY(2px); box-shadow: var(--shadow-2xs); }
a.card:focus-visible { outline: none; border-color: var(--border-brand); box-shadow: var(--shadow-xs), 0 0 0 2px var(--brand-soft); }

/* ---------- Icon shapes (icon-shapes.md) ---------- */

.icon-shape {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-full);
  background: var(--brand-softer);
  color: var(--fg-brand-strong);
  font-size: 26px;
  flex-shrink: 0;
}

.icon-shape.gray { background: var(--neutral-secondary-medium); color: var(--body); }
.icon-shape.warning { background: #FCE8F3; color: var(--fg-warning); }

/* ---------- Header / navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(0 0 0 / 0.96);
  border-bottom: 2px solid var(--border-default);
  backdrop-filter: blur(10px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--heading);
  text-decoration: none;
}
.logo:hover { text-decoration: none; }
.logo img {
  width: auto;
  height: 48px;
}
@media (min-width: 768px) {
  .logo img { height: 54px; }
}

.main-nav { display: none; }

@media (min-width: 1024px) {
  .main-nav { display: flex; align-items: center; gap: 4px; }
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  color: var(--heading);
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.nav-link:hover { background: var(--brand-softer); color: var(--fg-brand-strong); text-decoration: none; }
.nav-link:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--brand); }
.nav-link[aria-current="page"] { color: var(--fg-brand-strong); }

.nav-link .chevron { font-size: 11px; line-height: 1; display: inline-block; transition: transform 150ms ease-out; }
.nav-link[aria-expanded="true"] .chevron { transform: rotate(180deg); }

/* Dropdown (dropdown.md) */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: rgb(6 20 38 / 0.97);
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 60;
}
.dropdown-menu.open { display: block; }

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  color: var(--body);
  transition: background-color 150ms ease-out, color 150ms ease-out;
}
.dropdown-menu a:hover { background: var(--brand-softer); color: var(--fg-brand-strong); text-decoration: none; }
.dropdown-menu a:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--brand); }

.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

/* Mobile nav */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 2px solid var(--border-default);
  background: rgb(6 20 38 / 0.94);
  color: var(--heading);
  cursor: pointer;
  font-size: 16px;
}
.nav-toggle:focus-visible { outline: none; box-shadow: 0 0 0 2px var(--brand); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 2px solid var(--border-default);
  background: rgb(6 20 38 / 0.96);
  padding: 16px 24px 24px;
}
.mobile-nav.open { display: block; }
@media (min-width: 1024px) { .mobile-nav { display: none !important; } }

.mobile-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.mobile-nav a {
  display: block;
  padding: 12px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 700;
  color: var(--heading);
}
.mobile-nav a:hover { background: var(--brand-softer); color: var(--fg-brand-strong); text-decoration: none; }
.mobile-nav .sub a { padding-left: 44px; font-weight: 700; color: var(--body); }

/* ---------- Hero ---------- */

.hero {
  padding-block: 48px;
  position: relative;
}
@media (min-width: 1024px) { .hero { padding-block: 96px; } }

.hero .container {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero .container { grid-template-columns: 1.1fr 1fr; }
}

.hero h1 { margin-top: 16px; }
.hero h1 .accent { color: var(--fg-brand-strong); }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }

.hero-media {
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; max-height: 460px; }

/* ---------- Stats ---------- */

.stat-card { text-align: center; padding: 24px 16px; }

.stat-value {
  font-size: 32px;
  font-weight: 900;
  color: var(--fg-brand-strong);
  line-height: 1.1;
}
@media (min-width: 768px) { .stat-value { font-size: 36px; } }

.stat-label {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--body);
}

/* ---------- Service cards ---------- */

.service-card { display: flex; flex-direction: column; gap: 16px; }
.service-card .icon-shape { width: 64px; height: 64px; font-size: 32px; }
.service-card p { margin-bottom: 0; }
.service-card .cta {
  margin-top: auto;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--fg-brand);
}

/* ---------- Process steps ---------- */

.step-card { position: relative; padding-top: 32px; }

.step-num {
  position: absolute;
  top: -22px;
  left: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #FFFFFF;
  font-weight: 900;
  font-size: 18px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-buffer);
  box-shadow: 0 4px 0 var(--shadow-brand);
}

.steps-grid { margin-top: 40px; row-gap: 48px; }

/* ---------- Work / portfolio ---------- */

.work-card { padding: 0; overflow: hidden; }
.work-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; border-bottom: 2px solid var(--border-default); }
.work-card .work-body { padding: 20px 24px 24px; }
.work-card .work-body p { margin-bottom: 0; }

/* ---------- Testimonials ---------- */

.testimonial { display: flex; flex-direction: column; gap: 16px; }
.testimonial blockquote { margin: 0; font-size: 16px; color: var(--body); }
.testimonial .stars { color: var(--warning); font-size: 16px; letter-spacing: 2px; }

.avatar-row { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--brand-softer);
  color: var(--fg-brand-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.avatar.purple { background: #FCE8F3; color: var(--fg-purple-strong); }
.avatar.sky { background: #EEF8FD; color: var(--fg-info); }
.avatar-name { font-weight: 700; color: var(--heading); }
.avatar-meta { font-size: 14px; color: var(--body); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(135deg, #EEF8FD 0%, #FCE8F3 100%);
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 48px 24px;
  text-align: center;
}
@media (min-width: 768px) { .cta-band { padding: 64px 48px; } }

.cta-band h2 { color: var(--fg-brand-strong); }
.cta-band .label { color: var(--fg-brand); }
.cta-band p {
  margin-inline: auto;
  color: #4A6473;
}
.cta-band .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 2px solid var(--border-default);
  background: var(--neutral-secondary-medium);
  padding-block: 48px 32px;
  font-size: 15px;
}

.footer-grid { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.site-footer h4 {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--heading);
}

.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer a { color: var(--body); font-weight: 600; }
.site-footer a:hover { color: var(--fg-brand); }

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 2px solid var(--border-default);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  font-size: 14px;
  color: var(--body-subtle);
}

/* ---------- Icons (Lucide) ---------- */

svg.lucide {
  width: 18px;
  height: 18px;
  vertical-align: -3px;
  flex-shrink: 0;
}

.logo svg.lucide { width: 22px; height: 22px; color: var(--brand); vertical-align: -4px; }
.icon-shape svg.lucide { width: 24px; height: 24px; vertical-align: 0; }
.service-card .icon-shape svg.lucide { width: 30px; height: 30px; }
.contact-info-list .icon-shape svg.lucide { width: 20px; height: 20px; }
svg.chevron { width: 16px; height: 16px; }
.accordion-trigger svg.chevron { width: 18px; height: 18px; color: var(--body); }
.stars svg.lucide { width: 18px; height: 18px; fill: currentColor; }
.tick svg.lucide { width: 20px; height: 20px; color: var(--fg-brand); margin-top: 2px; }
.dropdown-menu svg.lucide { color: var(--fg-brand); }
.site-footer ul svg.lucide { width: 16px; height: 16px; color: var(--fg-brand); margin-right: 4px; }
.badge svg.lucide { width: 13px; height: 13px; vertical-align: -2px; }
.cta svg.lucide, .nav-toggle svg.lucide { width: 16px; height: 16px; }
.avatar svg.lucide { width: 18px; height: 18px; }
svg.heart { width: 15px; height: 15px; color: var(--fg-brand); fill: var(--fg-brand); }

/* ---------- Utilities ---------- */

.text-center { text-align: center; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero { padding-block: 48px; }
@media (min-width: 1024px) { .page-hero { padding-block: 72px; } }

.page-hero .container {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1024px) {
  .page-hero .container.with-media { grid-template-columns: 1.2fr 1fr; }
}

.breadcrumb {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--body-subtle);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--fg-brand); }

/* ---------- Checklist (lists.md) ---------- */

.checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; color: var(--body); }
.checklist .tick { color: var(--fg-brand); font-weight: 900; flex-shrink: 0; font-size: 18px; line-height: 1.3; }

/* ---------- Pills row ---------- */

.pill-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Accordion (accordion.md) ---------- */

.accordion {
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  overflow: hidden;
}

.accordion-item + .accordion-item { border-top: 2px solid var(--border-default); }

.accordion-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 18px 20px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  background: var(--neutral-primary-soft);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 150ms ease-out;
}
.accordion-trigger:hover { background: var(--brand-softer); }
.accordion-trigger:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--brand); }
.accordion-trigger[aria-expanded="true"] { background: var(--brand-softer); }

.accordion-trigger .chevron { font-size: 13px; line-height: 1; flex-shrink: 0; transition: transform 150ms ease-out; }
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }

.accordion-panel {
  padding: 18px 20px;
  border-top: 2px solid var(--border-default);
  background: var(--neutral-primary-soft);
  font-size: 16px;
  color: var(--body);
}
.accordion-panel[hidden] { display: none; }
.accordion-panel p:last-child { margin-bottom: 0; }

/* ---------- Forms (inputs.md) ---------- */

.form-grid { display: grid; gap: 24px; }
@media (min-width: 640px) { .form-grid.two-col { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }

.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--heading);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  background: var(--neutral-primary-soft);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--heading);
  padding: 12px 14px;
  transition: border-color 150ms ease-out, background-color 150ms ease-out;
}
.field input::placeholder, .field textarea::placeholder { color: var(--body); }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--border-default-strong); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--border-brand);
  box-shadow: 0 0 0 2px var(--brand-soft);
}
.field textarea { min-height: 140px; resize: vertical; }

.field .help { font-size: 14px; color: var(--body-subtle); margin-top: 6px; }

/* ---------- Alerts (alerts.md) ---------- */

.alert {
  padding: 16px;
  border-radius: var(--radius);
  border: 2px solid;
  font-size: 15px;
}
.alert h4 { font-size: 16px; margin-bottom: 4px; }
.alert.success { background: var(--success-soft); border-color: var(--border-success-subtle); color: var(--fg-brand-strong); }
.alert.danger { background: var(--danger-soft); border-color: var(--border-danger-subtle); color: var(--fg-danger); }
.alert[hidden] { display: none; }

/* ---------- Contact ---------- */

.contact-layout { display: grid; gap: 32px; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1.3fr 1fr; align-items: start; } }

.contact-info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list .icon-shape { width: 44px; height: 44px; font-size: 20px; }
.contact-info-list .info-label { font-weight: 700; color: var(--heading); }
.contact-info-list .info-value { color: var(--body); font-size: 15px; }

.map-frame {
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.map-frame iframe { display: block; width: 100%; height: 320px; border: 0; }

/* ---------- Feature rows (service pages) ---------- */

.feature-row { display: grid; gap: 32px; align-items: center; }
@media (min-width: 1024px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .feature-row.flip > .feature-media { order: 2; }
}

.feature-media {
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}
.feature-media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

/* ---------- Values / about ---------- */

.value-card { display: flex; flex-direction: column; gap: 12px; }
.value-card p { margin-bottom: 0; font-size: 16px; }

.service-card p, .work-card .work-body p { font-size: 16px; }

/* ---------- Photo strip ---------- */

.photo-strip { display: grid; gap: 24px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }

.photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid var(--border-default);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xs);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}
