@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #071A35;
  --gold: #D4A85E;
  --white: #FFFFFF;
  --text: #111827;
  --border: rgba(7, 26, 53, 0.08);
  --muted: rgba(15, 23, 42, 0.66);
  --soft: #F7F8FB;
  --soft-2: #F0F2F7;
  --shadow: 0 18px 50px rgba(7, 26, 53, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-height: 90px;
  --max-width: 1280px;
  --font-sans: "Inter", "Segoe UI", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: var(--font-sans);
  line-height: 1.8;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

em,
i {
  font-style: normal;
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(212, 168, 94, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  z-index: 4000;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: top 0.22s ease;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(7, 26, 53, 0.06);
}

.nav-shell {
  min-height: var(--header-height);
  max-width: var(--max-width);
  width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 0;
  padding: 0;
}

.brand img {
  display: block;
  width: auto;
  height: 72px;
  max-height: 72px;
  max-width: 240px;
  object-fit: contain;
  object-position: center center;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  position: relative;
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.menu-toggle span::before {
  top: -0.34rem;
}

.menu-toggle span::after {
  top: 0.34rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3rem;
  flex: 1 1 auto;
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.nav-link {
  position: relative;
  color: var(--navy);
  padding: 0.25rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  position: relative;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #0b2143 0%, #12315f 100%);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(7, 26, 53, 0.16);
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.nav-cta::after {
  content: none;
}

.nav-cta:hover {
  background: linear-gradient(135deg, #12315f 0%, #1a447d 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 34px rgba(7, 26, 53, 0.24);
  transform: translateY(-1px);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(7, 26, 53, 0.18);
}

.page-main {
  overflow: clip;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 40px 0;
}

.section--soft {
  background: var(--soft);
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

.section--navy .section-title,
.section--navy .section-copy,
.section--navy .support-copy,
.section--navy .muted {
  color: rgba(255, 255, 255, 0.78);
}

.section-header {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.55fr);
  align-items: end;
  margin-bottom: 48px;
}

.section-kicker,
.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.hero-kicker::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--navy);
}

.hero-title {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4.6vw, 4.9rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: none;
  margin-top: 0.55rem;
}

.section-title,
.page-title {
  font-size: clamp(2.4rem, 4vw, 4.8rem);
}

.hero-copy,
.section-copy,
.support-copy,
.muted,
.meta-copy {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.hero-copy {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 0.85rem;
}

body.page-about .hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 168, 94, 0.14), transparent 26%),
    linear-gradient(135deg, #08172e 0%, #0b2143 42%, #08172e 100%);
}

body.page-about .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 36px,
      rgba(212, 168, 94, 0.05) 36px,
      rgba(212, 168, 94, 0.05) 37px
    );
  pointer-events: none;
}

body.page-about .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 94, 0.55), transparent);
}

body.page-about .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  width: calc(100% - 2rem);
  margin: 0 auto;
  padding: 0.85rem 0 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

body.page-about .about-hero__content {
  max-width: 48rem;
  align-self: start;
}

body.page-about .hero-kicker {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  margin-top: 70px;
  margin-bottom: 0;
}

body.page-about .hero-title {
  margin-top: 0.12rem;
  font-family: var(--font-sans);
  font-size: clamp(2.6rem, 4.6vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
  max-width: none;
}

body.page-about .hero-title span {
  display: block;
  white-space: nowrap;
}

body.page-about .hero-copy {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  line-height: 1.72;
  max-width: 42rem;
  color: rgba(255, 255, 255, 0.78);
}

body.page-about .hero-actions {
  margin-top: 1.15rem;
}

body.page-about .button {
  min-height: 54px;
  padding: 0 1.8rem;
  font-size: 0.95rem;
}

body.page-about .about-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

body.page-about .about-hero__chips span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
}

body.page-about .about-hero__visual {
  display: grid;
  gap: 0.9rem;
  align-self: end;
}

body.page-about .hero-panel {
  width: 100%;
}

body.page-about .hero-panel img {
  height: min(72svh, 700px);
}

body.page-about .about-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

body.page-about .about-hero__meta div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

body.page-about .about-hero__meta strong {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

body.page-about .about-hero__meta span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.55;
}

body.page-about .about-why-section {
  background:
    radial-gradient(circle at top right, rgba(212, 168, 94, 0.08), transparent 24%),
    linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
}

body.page-about .about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body.page-about .about-why-card {
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 26, 53, 0.08);
  box-shadow: 0 14px 32px rgba(7, 26, 53, 0.05);
  transition: background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

body.page-about .about-why-card__index {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--gold);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  font-weight: 700;
}

body.page-about .about-why-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.02rem;
  line-height: 1.3;
}

body.page-about .about-why-card p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

body.page-about .about-why-card:hover {
  background: var(--navy);
  border-color: rgba(212, 168, 94, 0.2);
  box-shadow: 0 20px 42px rgba(7, 26, 53, 0.18);
  transform: translateY(-3px);
}

body.page-about .about-why-card:hover .about-why-card__index,
body.page-about .about-why-card:hover h3,
body.page-about .about-why-card:hover p {
  color: var(--white);
}

body.page-about .section-title {
  font-size: clamp(1.45rem, 2.15vw, 2.55rem);
  line-height: 1.08;
}

body.page-about .section-kicker {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

body.page-products .hero-inner {
  padding-top: 110px;
}

body.page-products .hero-kicker {
  margin-top: 0;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

body.page-products .hero-title {
  font-size: clamp(2.35rem, 11vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: 0.012em;
}

body.page-products .hero-copy {
  font-size: 0.94rem;
  line-height: 1.7;
}

body.page-products .hero-panel img {
  height: min(72svh, 700px);
}

body.page-products .product-card__image {
  min-height: 200px;
}

body.page-products .product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

body.page-products .products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.page-products .product-card {
  border-radius: 28px;
}

body.page-products .product-card h3 {
  font-family: var(--new-font-sans);
  font-size: 1.05rem;
  line-height: 1.18;
  font-weight: 800;
}

body.page-products .section-title {
  font-size: clamp(1.45rem, 2.15vw, 2.55rem);
  line-height: 1.08;
}

body.page-products .products-portfolio {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: 1.6rem;
  align-items: stretch;
}

body.page-products .products-portfolio__media {
  display: grid;
  gap: 0.85rem;
}

body.page-products .products-portfolio__image {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 100%;
  background: #e7ebf3;
}

body.page-products .products-portfolio__image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

body.page-products .products-portfolio__quote {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 0 18px 18px 0;
}

body.page-products .products-portfolio__quote p {
  margin: 0;
  color: var(--navy);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
}

body.page-products .products-portfolio__panel {
  display: grid;
  align-items: stretch;
}

body.page-products .products-portfolio__table-wrap {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(7, 26, 53, 0.08);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(7, 26, 53, 0.05);
}

body.page-products .products-portfolio__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

body.page-products .products-portfolio__table thead th {
  padding: 1rem 1.05rem;
  text-align: left;
  background: var(--navy);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.page-products .products-portfolio__table tbody th,
body.page-products .products-portfolio__table tbody td {
  padding: 1rem 1.05rem;
  border-bottom: 1px solid rgba(7, 26, 53, 0.08);
  vertical-align: top;
  text-align: left;
  font-size: 0.93rem;
  line-height: 1.6;
}

body.page-products .products-portfolio__table tbody th {
  width: 28%;
  color: var(--navy);
  font-weight: 700;
}

body.page-products .products-portfolio__table tbody td {
  color: var(--muted);
}

body.page-products .products-portfolio__table tbody tr:last-child th,
body.page-products .products-portfolio__table tbody tr:last-child td {
  border-bottom: 0;
}

body.page-products .products-portfolio__table tbody tr:hover {
  background: rgba(212, 168, 94, 0.05);
}

@media (max-width: 1100px) {
  body.page-products .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-products .products-portfolio {
    grid-template-columns: 1fr;
  }

  body.page-products .products-portfolio__image img {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  body.page-products .products-grid {
    grid-template-columns: 1fr;
  }

  body.page-products .products-portfolio__table,
  body.page-products .products-portfolio__table thead,
  body.page-products .products-portfolio__table tbody,
  body.page-products .products-portfolio__table tr,
  body.page-products .products-portfolio__table th,
  body.page-products .products-portfolio__table td {
    display: block;
    width: 100%;
  }

  body.page-products .products-portfolio__table thead {
    display: none;
  }

  body.page-products .products-portfolio__table tbody tr {
    padding: 0.95rem 1rem 1rem;
    border-bottom: 1px solid rgba(7, 26, 53, 0.08);
  }

  body.page-products .products-portfolio__table tbody th {
    width: 100%;
    padding: 0 0 0.55rem;
    font-size: 0.96rem;
    line-height: 1.35;
  }

  body.page-products .products-portfolio__table tbody td {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 0.35rem 0.65rem;
    padding: 0.28rem 0;
    border-bottom: 0;
    font-size: 0.86rem;
    line-height: 1.55;
  }

  body.page-products .products-portfolio__table tbody td::before {
    content: attr(data-label);
    color: var(--gold);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
  }
}

@media (max-width: 580px) {
  body.page-products .products-portfolio__table tbody tr {
    padding: 0.85rem 0.9rem 0.9rem;
  }

  body.page-products .products-portfolio__table tbody th {
    font-size: 0.92rem;
  }

  body.page-products .products-portfolio__table tbody td {
    grid-template-columns: 6.5rem minmax(0, 1fr);
    font-size: 0.82rem;
  }

  body.page-products .products-portfolio__image img {
    min-height: 320px;
  }

  body.page-products .products-portfolio__quote p {
    font-size: 0.92rem;
  }
}

@media (max-width: 860px) {
  body.page-about .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  body.page-about .about-hero__visual {
    align-self: start;
  }

  body.page-about .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    letter-spacing: 0.012em;
    max-width: 100%;
  }

  body.page-about .hero-copy {
    font-size: 0.94rem;
  }

  body.page-about .about-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  body.page-about .hero-title span {
    white-space: normal;
  }

  body.page-about .about-why-grid {
    grid-template-columns: 1fr;
  }
}

body.page-about .section-copy,
body.page-about .support-copy,
body.page-about .muted {
  font-size: 0.92rem;
  line-height: 1.72;
}

.hero-metrics {
  margin-top: 1.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 42rem;
}

.hero-metric {
  padding: 1rem 1.05rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.hero-metric strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 2.8vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-metric span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
}

.hero-metric:hover {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.hero-metric:hover strong,
.hero-metric:hover span {
  color: var(--white);
}

.section-copy {
  max-width: 38rem;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--white);
  background: var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 26, 53, 0.25), rgba(7, 26, 53, 0.42)),
    rgba(7, 26, 53, 0.12);
}

.hero-inner {
  max-width: var(--max-width);
  width: calc(100% - 2rem);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: start;
  padding: 0 0 68px;
}

.hero-copy-column,
.hero-inner > .fade-up:first-child {
  max-width: 42rem;
  margin-top: -8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans);
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(212, 168, 94, 0.18);
}

.button--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gold);
}

.button--ghost:hover {
  background: var(--gold);
  color: var(--navy);
}

.button--ghost.button--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
}

.button--ghost.button--light:hover {
  background: var(--white);
  color: var(--navy);
}

.hero-signal,
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.signal-pill,
.tag-pill {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 600;
}

.tag-pill {
  border-color: var(--border);
  background: var(--white);
  color: var(--navy);
}

.hero-panel,
.section-image,
.feature-card__image,
.product-card__image,
.team-card__image,
.contact-visual,
.story-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #e7ebf3;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 520px);
  min-height: auto;
  padding: 0.9rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(212, 168, 94, 0.18), rgba(255, 255, 255, 0.02) 46%, rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 24, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.hero-panel img,
.section-image img,
.feature-card__image img,
.product-card__image img,
.team-card__image img,
.contact-visual img,
.story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel img {
  height: min(72svh, 700px);
  border-radius: 22px;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0.9rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(7, 26, 53, 0.06), rgba(7, 26, 53, 0.36));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  z-index: 1;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

.hero-panel__caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(7, 13, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.hero-panel__caption strong {
  display: block;
  font-size: 1.03rem;
  margin-bottom: 0.25rem;
}

.hero-panel__caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

body.page-home .hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: #04101d;
}

body.page-home .hero::before {
  content: none;
}

body.page-home .hero__backdrop,
body.page-home .hero__overlay {
  position: absolute;
  inset: 0;
}

body.page-home .hero__backdrop {
  z-index: 0;
}

body.page-home .hero__backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.9) contrast(1.04) brightness(0.72);
}

body.page-home .hero__overlay {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.9) 0%, rgba(2, 7, 18, 0.54) 50%, rgba(2, 7, 18, 0.82) 100%),
    linear-gradient(180deg, rgba(2, 7, 18, 0.18), rgba(2, 7, 18, 0.54));
}

body.page-home .hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
  align-items: center;
}

body.page-home .hero-kicker {
  margin: 0 0 0.05rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.69rem;
  letter-spacing: 0.18em;
}

body.page-home .hero-title span {
  display: block;
  white-space: nowrap;
}

body.page-home .hero-title span:first-child {
  width: fit-content;
}

body.page-home .hero-signature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.4rem;
  max-width: 38rem;
}

body.page-home .hero-signature__item {
  padding: 0.9rem 0.95rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

body.page-home .hero-signature__item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.35;
}

body.page-home .hero-signature__item span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.45;
}

body.page-home .hero-actions {
  margin-top: 1.55rem;
}

body.page-home .hero-art {
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
}

body.page-home .hero-art__frame {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.9rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(212, 168, 94, 0.18), rgba(255, 255, 255, 0.02) 46%, rgba(255, 255, 255, 0.04)),
    rgba(7, 13, 24, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  isolation: isolate;
}

body.page-home .hero-art__frame::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  pointer-events: none;
}

body.page-home .hero-art__frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 22px;
}

body.page-home .hero-copy-column {
  min-width: 0;
}

.section-image {
  aspect-ratio: 1 / 1;
}

.section-image img {
  width: 100%;
  height: 100%;
}

body.page-home .hero-art__badge {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  max-width: 18rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(7, 13, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

body.page-home .hero-art__badge span {
  display: block;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.page-home .hero-art__badge strong {
  display: block;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.stats-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.clients-section {
  overflow: hidden;
}

.client-carousel {
  margin-top: 2rem;
  padding: 1rem 0;
  border-block: 1px solid var(--border);
}

.client-carousel__viewport {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.client-carousel__track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: clientLogoScroll 28s linear infinite;
}

.client-carousel:hover .client-carousel__track,
.client-carousel:focus-within .client-carousel__track {
  animation-play-state: paused;
}

.client-logo {
  flex: 0 0 180px;
  height: 104px;
  display: grid;
  place-items: center;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 26, 53, 0.04);
}

.client-logo img {
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
  opacity: 1;
  transition: filter 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.client-logo:hover img {
  transform: scale(1.03);
}

@keyframes clientLogoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.stat-card,
.feature-card,
.product-card,
.service-card,
.team-card,
.info-card,
.quote-card,
.form-card,
.panel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.stat-card {
  padding: 1.35rem;
  box-shadow: 0 12px 36px rgba(7, 26, 53, 0.05);
  position: relative;
  overflow: hidden;
  transition: background-color 0.22s ease, color 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}

.stat-card strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.stat-card[data-tone="gold"] strong,
.stat-card[data-tone="bronze"] strong {
  color: var(--gold);
}

.stat-card[data-tone="accent"] strong {
  color: var(--navy);
}

.stat-card[data-tone="navy"] strong {
  color: var(--navy);
}

.stat-card[data-tone="ink"] strong {
  color: #0F172A;
}

.stat-card .stat-label {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.stat-card::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -26%;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(212, 168, 94, 0.08);
  opacity: 0;
  transform: scale(0.4);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.stat-card:hover::after {
  opacity: 1;
  transform: scale(1);
}

.stat-card:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-4px);
  border-color: rgba(7, 26, 53, 0.12);
}

.stat-card:hover strong,
.stat-card:hover .stat-label,
.stat-card:hover .muted {
  color: var(--white);
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.service-card,
.product-card,
.team-card,
.info-card,
.quote-card {
  padding: 1.5rem;
  box-shadow: 0 12px 32px rgba(7, 26, 53, 0.04);
}

.feature-card,
.product-card,
.team-card,
.service-card,
.quote-card {
  display: grid;
  gap: 1rem;
}

.feature-card__image,
.product-card__image,
.team-card__image {
  min-height: 240px;
}

.product-card .eyebrow {
  font-size: 0.84rem;
}

.product-card .eyebrow,
.product-card h3,
.product-card .support-copy {
  transition: color 0.22s ease;
}

.product-card__image img,
.team-card__image img,
.feature-card__image img {
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image img,
.team-card:hover .team-card__image img,
.feature-card:hover .feature-card__image img {
  transform: scale(1.06);
}

.team-card__role {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 700;
}

.service-card,
.product-card,
.team-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.product-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 168, 94, 0.25);
  box-shadow: 0 18px 48px rgba(7, 26, 53, 0.08);
}

.service-card h3,
.product-card h3,
.team-card h3,
.info-card h3,
.quote-card h3 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.service-card .eyebrow {
  font-size: 2.55rem;
  line-height: 1;
  letter-spacing: -0.06em;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  transition: transform 0.22s ease, color 0.22s ease;
}

.service-card .eyebrow::after {
  content: "";
  margin-left: 0.4rem;
  width: 1.8rem;
  height: 1px;
  background: rgba(212, 168, 94, 0.35);
}

.section--navy .service-card .eyebrow {
  color: var(--white);
  opacity: 0.8;
}

.service-card:hover .eyebrow {
  transform: translateY(-2px) scale(1.08);
  color: var(--gold);
}

.section--navy .service-card:hover .eyebrow {
  color: var(--gold);
  opacity: 1;
}

.service-meta,
.route-list {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.service-meta span,
.route-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.route-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border);
}

.route-list div:last-child {
  border-bottom: 0;
}

.route-list strong {
  color: var(--navy);
  font-weight: 600;
}

.inline-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.inline-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
}

.inline-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--gold);
}

.split-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
}

.section-grid {
  display: grid;
  gap: 1.5rem;
}

.section-grid--70-30,
.section-grid--60-40 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  align-items: start;
}

.section-grid--60-40 .panel-card,
.section-grid--70-30 .panel-card,
.section-grid--60-40 .section-image,
.section-grid--70-30 .section-image {
  min-height: auto;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.timeline-step:last-child {
  border-bottom: 0;
}

.timeline-index {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: rgba(212, 168, 94, 0.12);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.timeline-step h4 {
  margin: 0 0 0.3rem;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 1.7rem;
  font-weight: 700;
}

.timeline-step p {
  margin: 0;
  color: var(--muted);
}

.accent-band {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: var(--white);
}

.accent-band p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  max-width: 48rem;
}

.feature-card h3,
.info-card h3,
.quote-card h3 {
  font-size: 1.9rem;
}

.split-accent {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.split-accent--light {
  background: var(--white);
  border: 1px solid var(--border);
}

.split-accent--soft {
  background: var(--soft-2);
  border: 1px solid rgba(7, 26, 53, 0.06);
}

.split-accent:hover {
  transform: translateY(-2px);
  background: var(--navy);
  border-color: rgba(212, 168, 94, 0.18);
}

.split-accent:hover .eyebrow,
.split-accent:hover h3,
.split-accent:hover .support-copy {
  color: var(--white);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.field-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modal .field-grid--2 {
  grid-template-columns: 1fr;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.modal .field {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.65rem;
  align-items: center;
}

.field label {
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
}

.modal .field label {
  margin: 0;
  justify-self: start;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.8rem 0.9rem;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(212, 168, 94, 0.35);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(212, 168, 94, 0.48);
  box-shadow: 0 0 0 4px rgba(212, 168, 94, 0.12);
  outline: none;
}

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

.modal .field-error {
  grid-column: 2;
}

.field-error {
  min-height: 1rem;
  color: #B45309;
  font-size: 0.84rem;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(185, 28, 28, 0.45);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.08);
}

.form-card {
  padding: 1.7rem;
}

.modal .form-card {
  padding: 0;
}

.form-status {
  display: none;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  line-height: 1.5;
}

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

.form-status--success {
  color: #065f46;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.form-status--error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.35rem;
}

.button[disabled] {
  opacity: 0.72;
  cursor: progress;
}

.footer {
  padding: 2rem 0 1.5rem;
  background:
    radial-gradient(circle at top left, rgba(212, 168, 94, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(80, 173, 173, 0.14), transparent 26%),
    linear-gradient(180deg, #071a35 0%, #0b2143 44%, #061225 100%);
}

.footer-inner {
  max-width: var(--max-width);
  width: calc(100% - 2rem);
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta,
.footer-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(2, 7, 18, 0.34);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(212, 168, 94, 0.22), rgba(80, 173, 173, 0.12) 54%, rgba(7, 26, 53, 0.92)),
    rgba(7, 26, 53, 0.95);
  color: var(--white);
}

.footer-cta__copy h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.footer-cta__accent {
  color: var(--gold);
}

.footer-cta__copy p {
  margin: 0.55rem 0 0;
  max-width: 52rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.footer-cta__eyebrow {
  margin: 0 0 0.65rem;
  color: #f2ddaf;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-cta__button {
  align-self: center;
  background: var(--gold);
  color: var(--navy);
  white-space: nowrap;
  box-shadow: 0 18px 40px rgba(212, 168, 94, 0.24);
}

.footer-cta__button:hover {
  background: #f2c978;
}

.footer-panel {
  display: grid;
  gap: 1.8rem;
  padding: 1.8rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.8fr));
  gap: 1.5rem;
  align-items: start;
}

.footer-brand {
  padding-right: 1rem;
}

.footer-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.45rem 0.55rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer-brand__mark img {
  /* width: 160px; */
  height: 88px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer-brand__copy {
  margin: 1rem 0 0;
  max-width: 28rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.74);
}

.footer-heading {
  margin: 0 0 1rem;
  color: #f2ddaf;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-menu,
.footer-product-list,
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-menu a,
.footer-product-list a,
.footer-contact-list a {
  color: inherit;
  transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-product-list a:hover,
.footer-contact-list a:hover {
  color: #f7e3b6;
}

.footer-product-list li {
  padding-left: 1rem;
  position: relative;
}

.footer-product-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #f7e3b6);
}

.footer-contact-list li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  padding: 0.2rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer-contact-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(242, 221, 175, 0.22);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  flex: 0 0 auto;
}

.footer-contact-icon::before {
  content: "";
  position: absolute;
  inset: 0.38rem;
  background: #f2ddaf;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
  word-break: break-word;
}

.footer-contact-item--address .footer-contact-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s5-4.6 5-10a5 5 0 0 0-10 0c0 5.4 5 10 5 10Z'/%3E%3Ccircle cx='12' cy='11' r='2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s5-4.6 5-10a5 5 0 0 0-10 0c0 5.4 5 10 5 10Z'/%3E%3Ccircle cx='12' cy='11' r='2'/%3E%3C/svg%3E");
}

.footer-contact-item--phone .footer-contact-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.7 19.7 0 0 1-8.6-3.1 19.1 19.1 0 0 1-6-6A19.7 19.7 0 0 1 2.1 4.2 2 2 0 0 1 4 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8 9.5a16 16 0 0 0 6.5 6.5l1.1-1.1a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2 19.7 19.7 0 0 1-8.6-3.1 19.1 19.1 0 0 1-6-6A19.7 19.7 0 0 1 2.1 4.2 2 2 0 0 1 4 2h3a2 2 0 0 1 2 1.7c.1.9.3 1.8.6 2.6a2 2 0 0 1-.5 2.1L8 9.5a16 16 0 0 0 6.5 6.5l1.1-1.1a2 2 0 0 1 2.1-.5c.8.3 1.7.5 2.6.6A2 2 0 0 1 22 16.9Z'/%3E%3C/svg%3E");
}

.footer-contact-item--hours .footer-contact-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E");
}

.footer-contact-item--email .footer-contact-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
}

.footer-contact-item--web .footer-contact-icon::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3c2.8 2.8 4.2 5.9 4.2 9s-1.4 6.2-4.2 9c-2.8-2.8-4.2-5.9-4.2-9S9.2 5.8 12 3Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18'/%3E%3Cpath d='M12 3c2.8 2.8 4.2 5.9 4.2 9s-1.4 6.2-4.2 9c-2.8-2.8-4.2-5.9-4.2-9S9.2 5.8 12 3Z'/%3E%3C/svg%3E");
}

.footer-contact-text strong {
  font-weight: 600;
  color: #f2ddaf;
}

.footer-bottom {
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom__meta {
  color: #f2ddaf;
  font-weight: 600;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 26, 53, 0.68);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: calc(100svh - 2rem);
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(7, 26, 53, 0.08);
  box-shadow: 0 28px 80px rgba(7, 26, 53, 0.22);
  transform: translateY(24px) scale(0.98);
  transition: transform 0.22s ease;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 1rem;
  padding: 1.15rem 4rem 0 1.15rem;
  position: relative;
}

.modal__header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.modal__header p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.modal__close {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal__body {
  padding: 0.95rem 1.15rem 1.15rem;
  overflow: hidden;
}

.modal .form-card {
  border: 0;
  box-shadow: none;
}

.thank-you {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
  background: var(--soft);
}

.thank-you__panel {
  width: min(820px, calc(100% - 2rem));
  padding: 2rem;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.kicker-line {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
}

.kicker-line::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: rgba(212, 168, 94, 0.38);
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.gallery-hero__inner {
  display: grid;
  gap: 1rem;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.58fr);
  margin-bottom: 1.5rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  appearance: none;
  color: inherit;
  font: inherit;
  padding: 0.7rem;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(212, 168, 94, 0.22), rgba(255, 255, 255, 0.88) 42%, rgba(7, 26, 53, 0.06)),
    #f6f3eb;
  box-shadow:
    0 14px 38px rgba(7, 26, 53, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1.08;
  isolation: isolate;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0.45rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(212, 168, 94, 0.18),
    0 0 0 1px rgba(7, 26, 53, 0.04);
  pointer-events: none;
  z-index: 1;
}

.gallery-card::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0) 48%),
    linear-gradient(145deg, rgba(212, 168, 94, 0.42), rgba(7, 26, 53, 0.22));
  box-shadow: 0 10px 24px rgba(7, 26, 53, 0.12);
  opacity: 0.85;
  pointer-events: none;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transform: scale(1);
  transition: transform 0.32s ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
}

.gallery-card:focus-visible {
  outline: 3px solid rgba(212, 168, 94, 0.32);
  outline-offset: 3px;
}

.gallery-empty {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 10, 22, 0.88);
  backdrop-filter: blur(8px);
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100svh - 2rem);
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 18, 34, 0.92);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  transform: translateY(20px) scale(0.985);
  transition: transform 0.22s ease;
}

.lightbox.is-open .lightbox__panel {
  transform: translateY(0) scale(1);
}

.lightbox__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox__counter {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lightbox__close,
.lightbox__nav {
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.lightbox__close {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  font-size: 1.45rem;
}

.lightbox__nav {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  font-size: 1.8rem;
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.lightbox__stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 0;
}

.lightbox__image {
  width: 100%;
  max-height: calc(100svh - 11rem);
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.lightbox__nav[disabled] {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-inner,
  .section-header,
  .split-layout,
  .section-grid--70-30,
  .section-grid--60-40 {
    grid-template-columns: 1fr;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .grid--3,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 110px;
  }

  .hero-panel {
    justify-self: start;
  }

  body.page-home .hero-art {
    justify-self: start;
    width: min(100%, 520px);
  }

  body.page-home .hero-signature {
    grid-template-columns: 1fr;
  }
}

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

  .brand img {
    height: 55px;
    max-height: 55px;
    max-width: 190px;
  }

  .footer-panel {
    padding: 1.2rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-right: 0;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 0.5rem 0.5rem 1rem;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    transition: max-height 0.32s ease;
  }

  .primary-nav.is-open {
    max-height: 80svh;
  }

  .nav-link {
    width: 100%;
    justify-content: flex-start;
    padding: 0.9rem 1rem;
  }

  .nav-link::after {
    left: 1rem;
    width: calc(100% - 2rem);
  }

  .nav-cta {
    width: calc(100% - 1rem);
    margin: 0.5rem 0.5rem 0;
  }

  .hero-inner {
    padding-top: 110px;
    padding-bottom: 72px;
  }

  .hero-panel {
    min-height: 360px;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    letter-spacing: 0.012em;
  }

  .hero-copy {
    font-size: 0.94rem;
  }

  body.page-home .hero {
    min-height: auto;
  }

  body.page-home .hero-inner {
    width: calc(100% - 1rem);
    padding-top: 104px;
    padding-bottom: 60px;
  }

  body.page-home .hero-title {
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    letter-spacing: 0.012em;
  }

  body.page-home .hero-copy {
    font-size: 0.94rem;
  }

  body.page-home .hero-art {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }

  .stats-grid,
  .grid--3,
  .grid--2,
  .field-grid--2,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    flex-basis: 150px;
    height: 92px;
    padding: 0.85rem 1rem;
  }

  .client-logo img {
    max-height: 58px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .timeline-index {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }

  .accent-band {
    grid-template-columns: 1fr;
  }

  .form-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .container,
  .nav-shell,
  .footer-inner {
    width: calc(100% - 1rem);
  }

  .section {
    padding: 100px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 1rem);
  }

  .hero-title {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
    letter-spacing: 0.012em;
  }

  .feature-card,
  .service-card,
  .product-card,
  .team-card,
  .info-card,
  .quote-card,
  .form-card,
  .thank-you__panel {
    padding: 1.15rem;
  }

  .brand img {
    height: 54px;
    max-height: 54px;
    max-width: 180px;
  }

  body.page-home .hero-signature {
    grid-template-columns: 1fr;
  }

  .modal__panel {
    width: calc(100% - 0.4rem);
    border-radius: 22px;
  }

  .modal__header {
    padding: 1rem 3rem 0 1rem;
  }

  .modal__body {
    padding: 0.85rem 0.95rem 0.95rem;
  }

  .gallery-hero__inner {
    grid-template-columns: 1fr;
  }

  .lightbox__panel {
    width: calc(100% - 0.4rem);
    border-radius: 22px;
  }

  .lightbox__stage {
    grid-template-columns: 1fr;
  }

  .lightbox__nav {
    width: 100%;
  }

  .lightbox__image {
    max-height: calc(100svh - 14rem);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
