/* ==========================================================================
   Etch Group - Design tokens
   ========================================================================== */

:root {
  /* Brand colors (from logo) */
  --navy: #1b1240;
  --navy-2: #261a57;
  --navy-3: #322269;
  --orange: #f2a93d;
  --orange-dark: #d98f22;
  --teal: #17b5b8;
  --teal-dark: #0f8f92;

  /* Neutrals */
  --white: #ffffff;
  --ink: #201a3a;
  --muted: #6b6480;
  --muted-2: #8b85a0;
  --surface: #f6f5fa;
  --surface-2: #efedf6;
  --border: #e3e0ee;

  /* Feedback */
  --success: #1f9d55;
  --error: #d9432e;

  /* Type */
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Scale */
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4rem;
  --space-8: 6rem;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(27, 18, 64, 0.06);
  --shadow-md: 0 12px 32px rgba(27, 18, 64, 0.12);
  --shadow-lg: 0 24px 48px rgba(27, 18, 64, 0.18);

  --container: 1180px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
}

body,
h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

html, body {
  min-height: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, textarea, select, button {
  font: inherit;
  color: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ==========================================================================
   Utility layout
   ========================================================================== */

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

.section {
  padding: var(--space-8) 0;
}

.hero + .section {
  padding-top: var(--space-6);
}

@media (max-width: 720px) {
  .section {
    padding: var(--space-7) 0;
  }

  .hero + .section {
    padding-top: var(--space-5);
  }
}

.section-head {
  max-width: 720px;
  margin: 0 auto var(--space-6);
  text-align: center;
}

.section-head.align-left {
  margin: 0 0 var(--space-6);
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: var(--space-3);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.7rem, 2.4vw + 1rem, 2.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.25rem;
}

.lede {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  z-index: 200;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--orange);
  color: var(--navy);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--orange);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: var(--orange-dark);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline.on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline.on-dark:hover {
  background: var(--white);
  color: var(--navy);
}

.btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
}

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

.logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-links {
  display: flex;
  gap: var(--space-5);
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 0;
  background: var(--orange);
  border-radius: var(--radius-pill);
  transition: width 200ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: var(--white);
}

.nav-cta {
  display: none;
}

@media (min-width: 981px) {
  .nav-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--navy-2);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-5) var(--space-4);
    gap: var(--space-5);
    transform: translateX(100%);
    transition: transform 260ms ease;
    overflow-y: auto;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-links {
    flex-direction: column;
    gap: var(--space-2);
  }

  .nav-links a {
    display: block;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
    width: 100%;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 90px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scale(1.4);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-7);
  align-items: center;
  padding-top: var(--space-8);
  padding-bottom: calc(var(--space-8) + 40px);
}

.hero.hero-compact .container {
  grid-template-columns: 1fr;
  text-align: center;
  padding-top: var(--space-7);
  padding-bottom: calc(var(--space-6) + 40px);
}

.hero.hero-compact .hero-copy {
  margin: 0 auto;
  max-width: 720px;
}

.hero-copy h1 {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.hero-copy .lede {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-5);
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero.hero-compact .hero-actions {
  justify-content: center;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -14px -14px auto auto;
  width: 90px;
  height: 90px;
  background: var(--orange);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.85;
}

.breadcrumb {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: var(--space-3);
  font-family: var(--font-heading);
  font-weight: 500;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
  color: var(--orange);
}

@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: var(--space-7);
  }

  .hero-copy {
    order: 1;
  }

  .hero-media {
    order: 2;
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

/* ==========================================================================
   Trust badges strip
   ========================================================================== */

.trust-strip {
  background: var(--white);
  position: relative;
  z-index: 3;
  margin-top: -46px;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: space-between;
  padding-top: var(--space-2);
  padding-bottom: var(--space-6);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.trust-item svg {
  width: 22px;
  height: 22px;
  color: var(--teal-dark);
  flex-shrink: 0;
}

/* ==========================================================================
   Cards - services
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-2);
  color: var(--navy);
  margin-bottom: var(--space-3);
}

.icon-circle svg {
  width: 26px;
  height: 26px;
}

.service-card:nth-child(3n+1) .icon-circle { background: rgba(23, 181, 184, 0.14); color: var(--teal-dark); }
.service-card:nth-child(3n+2) .icon-circle { background: rgba(242, 169, 61, 0.18); color: var(--orange-dark); }
.service-card:nth-child(3n+3) .icon-circle { background: rgba(27, 18, 64, 0.08); color: var(--navy); }

.service-card h3 {
  margin-bottom: var(--space-2);
}

.service-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Detailed service rows (services.html) */

.service-detail {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail .icon-circle {
  margin-bottom: 0;
  width: 64px;
  height: 64px;
}

.service-detail .icon-circle svg {
  width: 30px;
  height: 30px;
}

.service-detail h3 {
  margin-bottom: 0.4rem;
}

.service-detail p {
  color: var(--muted);
}

@media (max-width: 640px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Industries
   ========================================================================== */

.industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

@media (max-width: 860px) {
  .industries {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.industry-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.industry-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy);
}

.industry-list svg {
  width: 22px;
  height: 22px;
  color: var(--teal-dark);
  flex-shrink: 0;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 980px) {
  .testimonial-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.testimonial-card .quote-mark {
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 800;
}

.testimonial-card p.quote {
  color: var(--muted);
  font-style: italic;
}

.testimonial-card .who {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-card .who span {
  display: block;
  font-weight: 500;
  color: var(--muted-2);
  font-size: 0.85rem;
}

.testimonial-note {
  text-align: center;
  color: var(--muted-2);
  font-size: 0.9rem;
  margin-top: var(--space-4);
}

/* ==========================================================================
   CTA banner
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 130%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0.18;
  top: -80px;
  right: -60px;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: var(--space-3);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
  margin: 0 auto var(--space-5);
}

.cta-banner .hero-actions {
  justify-content: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-7) 0 var(--space-4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.footer-brand img {
  height: 42px;
  margin-bottom: var(--space-3);
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: var(--space-3);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-links svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-4);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Forms
   ========================================================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-7);
  align-items: start;
}

@media (max-width: 900px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.field {
  margin-bottom: var(--space-4);
}

.field label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.field .required {
  color: var(--error);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: 1rem;
  min-height: 48px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 181, 184, 0.15);
}

.field input:invalid:not(:placeholder-shown):not(:focus),
.field textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: var(--error);
}

.field .helper {
  font-size: 0.85rem;
  color: var(--muted-2);
  margin-top: 0.35rem;
}

.field .field-error {
  font-size: 0.85rem;
  color: var(--error);
  margin-top: 0.35rem;
  display: none;
}

.field.has-error .field-error {
  display: block;
}

.field.has-error input,
.field.has-error textarea {
  border-color: var(--error);
}

.form-status {
  margin-top: var(--space-3);
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: rgba(31, 157, 85, 0.12);
  color: var(--success);
}

.form-status.error {
  background: rgba(217, 67, 46, 0.12);
  color: var(--error);
}

.contact-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.contact-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.contact-card li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-card .icon-circle {
  margin-bottom: 0;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.contact-card .icon-circle svg {
  width: 20px;
  height: 20px;
}

.contact-card h4 {
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}

.contact-card p, .contact-card a.value {
  color: var(--muted);
  font-size: 0.95rem;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: var(--space-4);
}

.map-embed iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
}

/* ==========================================================================
   About page
   ========================================================================== */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.tag-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.3rem;
  border-radius: var(--radius-pill);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

@media (max-width: 980px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .values-grid { grid-template-columns: 1fr; }
}

.value-card {
  text-align: left;
  padding: var(--space-5);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.timeline-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  justify-content: space-between;
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}

.timeline-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.timeline-item .num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  display: block;
}

.timeline-item .num .accent {
  color: var(--orange-dark);
}

.timeline-item .label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Misc sections
   ========================================================================== */

.bg-surface {
  background: var(--surface);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

