:root {
  --navy: #062f55;
  --navy-deep: #021b33;
  --blue: #0c4e8a;
  --blue-bright: #1474b8;
  --green: #73c049;
  --green-dark: #4d952b;
  --ink: #132436;
  --muted: #657381;
  --line: #dbe3e9;
  --paper: #ffffff;
  --mist: #f3f6f8;
  --sand: #f5f1e9;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --map: #eaf0f3;
  --shadow: 0 24px 70px rgba(6, 47, 85, 0.13);
  --radius: 24px;
  --container: 1240px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #eef4f7;
  --muted: #a6b5c1;
  --line: #294052;
  --paper: #071521;
  --mist: #0c2030;
  --sand: #102638;
  --surface: #0b1d2b;
  --surface-raised: #102536;
  --map: #102535;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--blue) var(--mist);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: color .35s var(--ease), background-color .35s var(--ease);
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: white;
  background: var(--blue);
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-sm {
  padding: 82px 0;
}

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

.section-dark {
  color: white;
  background:
    radial-gradient(circle at 82% 18%, rgba(20, 116, 184, .36), transparent 32%),
    radial-gradient(circle at 12% 100%, rgba(115, 192, 73, .14), transparent 30%),
    var(--navy-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--green);
  content: "";
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #b9d9f0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.display {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

h1 {
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: .98;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(38px, 4.7vw, 66px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.25;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.section-dark p,
.hero p,
.page-hero p {
  color: rgba(255, 255, 255, .72);
}

.lead {
  max-width: 700px;
  font-size: clamp(18px, 1.8vw, 23px);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.section-head > div:first-child {
  max-width: 780px;
}

.section-head p {
  max-width: 530px;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link::after {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "\2197";
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.text-link:hover::after {
  color: white;
  background: var(--blue);
  transform: rotate(45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 25px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.btn::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--green);
  border-radius: inherit;
  content: "";
  transition: transform .45s var(--ease);
}

.btn span,
.btn svg {
  position: relative;
  z-index: 1;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn:hover::before {
  transform: scale(1.08);
}

.btn-primary {
  color: #102b14;
}

.btn-outline {
  color: white;
  border-color: rgba(255, 255, 255, .38);
}

.btn-outline::before {
  background: white;
  transform: translateY(105%);
}

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

.btn-outline:hover::before {
  transform: translateY(0);
}

.btn-blue {
  color: white;
}

.btn-blue::before {
  background: var(--blue);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  color: white;
  transition: color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 35px rgba(6, 47, 85, .09);
  backdrop-filter: blur(18px);
}

html[data-theme="dark"] .site-header.scrolled {
  color: var(--ink);
  background: rgba(7, 21, 33, .94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .28);
}

.nav-shell {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  transition: min-height .35s var(--ease);
}

.scrolled .nav-shell {
  min-height: 74px;
}

.brand {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: block;
  width: 190px;
  height: 65px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, .95))
    drop-shadow(0 1px 5px rgba(255, 255, 255, .48));
}

.brand-copy {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a:not(.btn) {
  position: relative;
  padding: 12px 0;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .btn {
  min-height: 45px;
  padding-inline: 20px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}

.theme-toggle {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: currentColor;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
  transition: color .3s, background .3s, border-color .3s, transform .35s var(--ease);
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px) rotate(4deg);
}

.theme-toggle svg {
  position: absolute;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}

.theme-toggle .theme-icon-sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-toggle .theme-icon-moon {
  opacity: 0;
  transform: rotate(-55deg) scale(.55);
}

html[data-theme="dark"] .theme-toggle .theme-icon-sun {
  opacity: 0;
  transform: rotate(55deg) scale(.55);
}

html[data-theme="dark"] .theme-toggle .theme-icon-moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.scrolled .theme-toggle {
  border-color: var(--line);
  background: var(--mist);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(115, 192, 73, .45);
  outline-offset: 3px;
}

.scrolled .nav-toggle {
  background: var(--mist);
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .3s, opacity .3s;
}

.menu-open .nav-toggle span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .nav-toggle span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

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

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(.86) contrast(1.05);
  transform: scale(1.04);
  animation: hero-breathe 14s ease-in-out infinite alternate;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 27, 51, .97) 0%, rgba(2, 27, 51, .87) 37%, rgba(2, 27, 51, .35) 72%, rgba(2, 27, 51, .32) 100%),
    linear-gradient(0deg, rgba(2, 27, 51, .72), transparent 45%);
  content: "";
}

@keyframes hero-breathe {
  to { transform: scale(1.1) translate3d(-1.2%, -1%, 0); }
}

.weave-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .2;
  pointer-events: none;
}

.weave-lines::before,
.weave-lines::after {
  position: absolute;
  inset: -35%;
  background-image: repeating-linear-gradient(90deg, transparent 0 58px, rgba(255, 255, 255, .18) 59px 60px);
  content: "";
  transform: rotate(13deg);
  animation: weave-drift 22s linear infinite;
}

.weave-lines::after {
  background-image: repeating-linear-gradient(0deg, transparent 0 58px, rgba(115, 192, 73, .14) 59px 60px);
  animation-direction: reverse;
}

@keyframes weave-drift {
  to { transform: rotate(13deg) translate3d(60px, 60px, 0); }
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(860px, 75%);
  padding: 150px 0 110px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 30px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(115, 192, 73, .16);
}

.hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
}

.hero h1 em {
  color: #b8d9ef;
  font-style: normal;
}

.hero .lead {
  max-width: 730px;
  margin-bottom: 38px;
}

.hero-proof {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 44px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 17px;
  color: white;
}

.proof-ring {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
}

.proof-ring::after {
  position: absolute;
  inset: -1px;
  border: 2px solid transparent;
  border-top-color: var(--green);
  border-radius: inherit;
  content: "";
  animation: spin 5s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.proof-ring strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.hero-proof span {
  max-width: 100px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: translateX(-50%) rotate(90deg) translateX(-50%);
  transform-origin: left;
}

.scroll-cue::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

@keyframes scroll-pulse {
  50% { transform: scaleX(.45); transform-origin: right; }
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -1px;
  color: white;
  background: var(--blue);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  position: relative;
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.trust-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.trust-item strong {
  display: block;
  margin-bottom: 7px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  font-weight: 500;
}

.trust-item span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.image-frame {
  position: relative;
}

.image-frame::before {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 36%;
  height: 40%;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  content: "";
}

.image-frame img {
  width: 100%;
  min-height: 530px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: -25px;
  bottom: 36px;
  width: 210px;
  padding: 25px;
  color: white;
  background: var(--navy);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
}

.floating-note span {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.5;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 700;
}

.check-list li::before {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: rgba(115, 192, 73, .13);
  content: "\2713";
  font-size: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 315px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  transition: transform .45s var(--ease), color .45s var(--ease), box-shadow .45s var(--ease);
}

.service-card::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 5%, rgba(115, 192, 73, .21), transparent 28%),
    var(--navy);
  content: "";
  transform: translateY(102%);
  transition: transform .55s var(--ease);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  color: white;
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.service-card:hover::before {
  transform: translateY(0);
}

.service-card .number {
  display: block;
  margin-bottom: 50px;
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.service-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.65;
  transition: color .4s;
}

.service-card:hover p {
  color: rgba(255, 255, 255, .69);
}

.service-card .arrow {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform .4s var(--ease), border-color .4s;
}

.service-card:hover .arrow {
  border-color: rgba(255, 255, 255, .35);
  transform: rotate(45deg);
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  grid-template-rows: 360px 290px;
  gap: 16px;
}

.product-tile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: var(--navy);
}

.product-tile:first-child {
  grid-row: 1 / 3;
}

.product-tile:nth-child(4) {
  grid-column: 2 / 4;
}

.product-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s;
}

.product-tile::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(2, 27, 51, .9), transparent 62%);
  content: "";
}

.product-tile:hover img {
  filter: saturate(1.07);
  transform: scale(1.07);
}

.product-tile-content {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  color: white;
}

.product-tile-content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.product-tile-content span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-tile-content i {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  font-style: normal;
  transition: background .35s, color .35s, transform .35s;
}

.product-tile:hover i {
  color: var(--navy);
  background: white;
  transform: rotate(45deg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 35px 28px 30px 0;
  border-top: 1px solid rgba(255, 255, 255, .23);
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(115, 192, 73, .15);
  content: "";
}

.process-step::after {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, .34);
  content: "0" counter(process);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.process-step h3 {
  font-size: 18px;
}

.process-step p {
  margin-bottom: 0;
  font-size: 14px;
}

.cert-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 45px;
}

.cert-badge {
  display: grid;
  min-height: 112px;
  padding: 18px 10px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--navy);
  background: var(--surface);
  text-align: center;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}

.cert-badge:hover {
  border-color: var(--green);
  box-shadow: 0 15px 35px rgba(6, 47, 85, .09);
  transform: translateY(-6px);
}

.cert-badge strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.1;
}

.cert-badge small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  display: grid;
  min-height: 430px;
  align-items: center;
  overflow: hidden;
  border-radius: 30px;
  color: white;
  background: var(--navy);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 27, 51, .98) 0%, rgba(2, 27, 51, .9) 46%, rgba(2, 27, 51, .25) 100%),
    url("images/fabrics.png") center right / cover no-repeat;
  content: "";
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: 64px;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 580px;
  align-items: end;
  overflow: hidden;
  padding: 175px 0 90px;
  color: white;
  background: var(--navy-deep);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 27, 51, .96), rgba(2, 27, 51, .62) 62%, rgba(2, 27, 51, .38)),
    var(--page-image, url("images/fabrics.png")) center / cover;
  content: "";
}

.page-hero::after {
  position: absolute;
  right: -15%;
  bottom: -55%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, .025), 0 0 0 180px rgba(255, 255, 255, .018);
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.page-hero h1 {
  margin-bottom: 23px;
  font-size: clamp(48px, 6vw, 82px);
}

.page-hero p {
  max-width: 740px;
  margin-bottom: 0;
  font-size: 20px;
}

.breadcrumb {
  position: absolute;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 90px;
  z-index: 2;
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.breadcrumb span:last-child {
  color: white;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  transition: box-shadow .45s var(--ease), transform .45s var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.product-card-media {
  position: relative;
  height: 380px;
  overflow: hidden;
  background: var(--mist);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-card-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 9px 13px;
  border-radius: 999px;
  color: white;
  background: rgba(2, 27, 51, .78);
  backdrop-filter: blur(12px);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 30px;
}

.product-card-body h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.product-card-body p {
  margin-bottom: 20px;
  font-size: 15px;
}

.mini-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mini-specs span {
  padding: 8px 11px;
  border-radius: 99px;
  color: var(--blue);
  background: #edf4f8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.services-detail {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(230px, .8fr) 1.2fr 60px;
  align-items: center;
  gap: 32px;
  padding: 34px 18px;
  border-bottom: 1px solid var(--line);
  transition: padding .35s var(--ease), background .35s;
}

.service-row:hover {
  padding-inline: 30px;
  background: var(--mist);
}

.service-row .num {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.service-row h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
}

.service-row p {
  margin: 0;
  font-size: 15px;
}

.service-row .row-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  transition: transform .35s, color .35s, background .35s;
}

.service-row:hover .row-arrow {
  color: white;
  background: var(--blue);
  transform: rotate(45deg);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.expertise-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.expertise-card i {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 12px;
  color: var(--green-dark);
  background: rgba(115, 192, 73, .13);
  font-style: normal;
  font-weight: 800;
}

.expertise-card h3 {
  margin: 0;
  font-size: 18px;
}

.stat-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border-radius: 24px;
  color: white;
  background: var(--blue);
}

.stat {
  padding: 48px 35px;
  border-right: 1px solid rgba(255, 255, 255, .18);
}

.stat:last-child {
  border: 0;
}

.stat strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  font-weight: 500;
}

.stat span {
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(45px, 7vw, 100px);
}

.contact-card {
  padding: 35px;
  border-radius: 22px;
  color: white;
  background: var(--navy);
}

.contact-card h3 {
  margin-bottom: 25px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 500;
}

.contact-detail {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.contact-detail i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(255, 255, 255, .08);
  font-style: normal;
}

.contact-detail small {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, .5);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: white;
  font-size: 15px;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  position: relative;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c7d1d9;
  outline: none;
  padding: 13px 0;
  color: var(--ink);
  background: transparent;
  border-radius: 0;
  transition: border-color .3s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
}

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

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
}

.map-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(rgba(6, 47, 85, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 47, 85, .08) 1px, transparent 1px),
    var(--map);
  background-size: 35px 35px;
}

.map-card::before,
.map-card::after {
  position: absolute;
  width: 320px;
  height: 90px;
  border: 3px solid white;
  border-radius: 50%;
  content: "";
  transform: rotate(-17deg);
  box-shadow: 0 0 0 1px rgba(6, 47, 85, .1);
}

.map-card::before {
  top: 75px;
  left: 12%;
}

.map-card::after {
  right: 12%;
  bottom: 55px;
  transform: rotate(13deg);
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 7px solid rgba(255, 255, 255, .8);
  border-radius: 50% 50% 50% 0;
  color: white;
  background: var(--green-dark);
  box-shadow: var(--shadow);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.map-pin span {
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  top: calc(50% + 55px);
  left: 50%;
  z-index: 2;
  padding: 10px 16px;
  border-radius: 99px;
  color: white;
  background: var(--navy);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: white;
  background: #011526;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr .65fr .8fr 1fr;
  gap: 50px;
  padding: 80px 0 65px;
}

.footer-brand {
  max-width: 390px;
}

.footer-brand .brand {
  margin-bottom: 23px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
}

.footer-col h3 {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, .46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  line-height: 1.55;
  transition: color .25s, transform .25s;
}

.footer-col a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.footer-col .linkedin-button {
  display: inline-flex;
  width: fit-content;
  margin-top: 9px;
  padding: 11px 15px;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: white;
  background: #0a66c2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease);
}

.footer-col .linkedin-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: currentColor;
}

.footer-col .linkedin-button:hover {
  border-color: var(--green);
  color: #071b2d;
  background: var(--green);
  transform: translateY(-2px);
}

.footer-col .linkedin-button:focus-visible {
  outline: 3px solid rgba(115, 192, 73, .5);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, .42);
  font-size: 11px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, .42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: white;
  background: var(--navy-deep);
  transition: transform .9s var(--ease), visibility .9s;
}

.preloader.loaded {
  visibility: hidden;
  transform: translateY(-100%);
}

.loader-inner {
  width: min(320px, 75vw);
  text-align: center;
}

.loader-word {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  letter-spacing: .05em;
}

.loader-line {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .15);
}

.loader-line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  content: "";
  animation: loading 1.1s var(--ease) forwards;
  transform: translateX(-101%);
}

@keyframes loading {
  to { transform: translateX(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }
.reveal[data-delay="5"] { transition-delay: .5s; }

html[data-theme="dark"] .service-row:hover {
  background: var(--surface-raised);
}

html[data-theme="dark"] .mini-specs span {
  color: #a9d0ea;
  background: #17344a;
}

html[data-theme="dark"] .field input,
html[data-theme="dark"] .field textarea,
html[data-theme="dark"] .field select {
  color: var(--ink);
  border-color: var(--line);
}

html[data-theme="dark"] .field input::placeholder,
html[data-theme="dark"] .field textarea::placeholder {
  color: #718493;
}

html[data-theme="dark"] .field select option {
  color: var(--ink);
  background: var(--surface);
}

html[data-theme="dark"] .map-card::before,
html[data-theme="dark"] .map-card::after {
  border-color: rgba(255, 255, 255, .25);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .08);
}

html[data-theme="dark"] .product-card,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .expertise-card,
html[data-theme="dark"] .cert-badge {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .015);
}

.hero .reveal,
.page-hero .reveal {
  animation: first-view .8s var(--ease) .12s forwards;
}

.hero .reveal[data-delay="1"],
.page-hero .reveal[data-delay="1"] { animation-delay: .24s; }
.hero .reveal[data-delay="2"],
.page-hero .reveal[data-delay="2"] { animation-delay: .36s; }
.hero .reveal[data-delay="3"],
.page-hero .reveal[data-delay="3"] { animation-delay: .48s; }

@keyframes first-view {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marquee {
  overflow: hidden;
  color: var(--navy);
  background: var(--sand);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  padding: 24px 30px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  white-space: nowrap;
}

.marquee-track span::after {
  width: 7px;
  height: 7px;
  margin-left: 60px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--blue);
  box-shadow: 0 10px 25px rgba(6, 47, 85, .2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .3s, transform .3s;
}

.back-top.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 20px;
  }

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

  .cert-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-main {
    grid-template-columns: 1.4fr .7fr 1fr;
  }

  .footer-main .footer-col:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 88px 0;
  }

  .nav-toggle {
    display: block;
  }

  .theme-toggle {
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 8999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    color: white;
    background: var(--navy-deep);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity .35s, visibility .35s, transform .35s;
  }

  .menu-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.btn) {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 31px;
    font-weight: 500;
  }

  .nav-links .btn {
    margin-top: 12px;
  }

  .hero-content {
    width: 90%;
  }

  .hero-proof {
    display: none;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .split,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 20px;
  }

  .product-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 300px 300px;
  }

  .product-tile:first-child {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .product-tile:nth-child(4) {
    grid-column: 1 / 3;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 0;
  }

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

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

  .service-row {
    grid-template-columns: 55px 1fr 46px;
  }

  .service-row p {
    grid-column: 2 / 4;
  }

  .breadcrumb {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    min-height: 76px;
    gap: 10px;
  }

  .brand-mark {
    width: 150px;
    height: 52px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .hero {
    min-height: 830px;
  }

  .hero-content {
    width: 100%;
    padding: 130px 0 120px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero .lead {
    font-size: 17px;
  }

  .hero-kicker {
    max-width: 340px;
    align-items: flex-start;
    font-size: 10px;
    letter-spacing: .1em;
    line-height: 1.45;
  }

  .hero .btn-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .scroll-cue {
    display: none;
  }

  .trust-item {
    padding: 25px 18px;
  }

  .trust-item strong {
    font-size: 28px;
  }

  .trust-item span {
    font-size: 9px;
  }

  .check-list,
  .service-grid,
  .expertise-grid,
  .stat-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .floating-note {
    right: 12px;
    bottom: 15px;
  }

  .image-frame img {
    min-height: 420px;
  }

  .service-card {
    min-height: 260px;
  }

  .service-card .number {
    margin-bottom: 30px;
  }

  .product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 320px);
  }

  .product-tile:first-child,
  .product-tile:nth-child(4) {
    grid-column: auto;
  }

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

  .cert-strip {
    grid-template-columns: 1fr 1fr;
  }

  .cta-content {
    padding: 38px 26px;
  }

  .page-hero {
    min-height: 520px;
    padding-bottom: 65px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .product-card-media {
    height: 290px;
  }

  .service-row {
    grid-template-columns: 40px 1fr 40px;
    gap: 15px;
    padding-inline: 5px;
  }

  .service-row:hover {
    padding-inline: 10px;
  }

  .service-row h3 {
    font-size: 22px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
  }

  .field.full,
  .form-note {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-main .footer-col:last-child {
    grid-column: auto;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 2026 visual refresh */
:root {
  --navy: #0a2a40;
  --navy-deep: #031722;
  --blue: #17618a;
  --blue-bright: #2c8eb3;
  --green: #2b9b7d;
  --green-dark: #176c59;
  --gold: #c9a568;
  --ink: #102532;
  --muted: #64747b;
  --line: rgba(16, 54, 72, .13);
  --paper: #fbfaf6;
  --mist: #eef3ef;
  --sand: #f0e8da;
  --surface: #fffefa;
  --surface-raised: #ffffff;
  --map: #e5ede9;
  --shadow: 0 28px 80px rgba(3, 35, 51, .14);
  --shadow-soft: 0 16px 42px rgba(3, 35, 51, .09);
  --radius: 30px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

html[data-theme="dark"] {
  --ink: #edf6f3;
  --muted: #9fb1b3;
  --line: rgba(202, 226, 222, .14);
  --paper: #061821;
  --mist: #0a222b;
  --sand: #102b33;
  --surface: #0b222c;
  --surface-raised: #102b35;
  --map: #0e2932;
  --shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --shadow-soft: 0 16px 42px rgba(0, 0, 0, .24);
}

html {
  scrollbar-width: thin;
  scrollbar-color: var(--green-dark) var(--paper);
}

body {
  background:
    radial-gradient(circle at 8% 16%, rgba(43, 155, 125, .07), transparent 24rem),
    radial-gradient(circle at 92% 44%, rgba(44, 142, 179, .055), transparent 30rem),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .23;
  background-image:
    linear-gradient(rgba(23, 97, 138, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 97, 138, .04) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

::selection {
  color: var(--navy-deep);
  background: var(--green);
}

.section {
  padding: 126px 0;
}

.section-sm {
  padding: 88px 0;
}

.section-mist {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(43, 155, 125, .12), transparent 24rem),
    radial-gradient(circle at 90% 85%, rgba(44, 142, 179, .09), transparent 28rem),
    var(--mist);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(44, 142, 179, .36), transparent 34rem),
    radial-gradient(circle at 12% 100%, rgba(43, 155, 125, .14), transparent 28rem),
    linear-gradient(145deg, #031722, #082c3d 58%, #061f2d);
}

.section-dark::after {
  position: absolute;
  right: -140px;
  bottom: -240px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, .018),
    0 0 0 140px rgba(255, 255, 255, .012);
  content: "";
  pointer-events: none;
}

.eyebrow {
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(23, 97, 138, .14);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255, 255, 255, .46);
  font-size: 10px;
  letter-spacing: .18em;
  backdrop-filter: blur(10px);
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: 0 0 0 5px rgba(23, 108, 89, .1);
}

.section-dark .eyebrow,
.hero .eyebrow,
.page-hero .eyebrow {
  border-color: rgba(255, 255, 255, .15);
  color: #dceef4;
  background: rgba(255, 255, 255, .07);
}

.section-dark .eyebrow::before,
.hero .eyebrow::before,
.page-hero .eyebrow::before {
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(43, 155, 125, .12);
}

h1,
h2,
.display {
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(42px, 4.8vw, 70px);
  line-height: 1;
}

h3 {
  letter-spacing: -.015em;
}

p {
  font-size: 16px;
  line-height: 1.8;
}

.lead {
  font-size: clamp(18px, 1.7vw, 22px);
}

.section-head {
  margin-bottom: 62px;
}

.section-head > div:first-child {
  max-width: 840px;
}

.text-link {
  color: var(--ink);
  letter-spacing: .11em;
}

.text-link::after {
  color: var(--navy);
  border-color: rgba(16, 37, 50, .2);
  background: var(--green);
}

.btn {
  min-height: 57px;
  padding: 0 28px;
  border-radius: 16px;
  letter-spacing: .08em;
  box-shadow: 0 12px 30px rgba(3, 23, 34, .12);
  transition:
    color .35s var(--ease),
    border-color .35s var(--ease),
    box-shadow .35s var(--ease),
    transform .35s var(--ease);
}

.btn::before {
  background: linear-gradient(120deg, var(--green), #70c3a8);
}

.btn::after {
  position: absolute;
  top: -60%;
  left: -35%;
  z-index: 0;
  width: 22%;
  height: 220%;
  background: rgba(255, 255, 255, .48);
  content: "";
  filter: blur(5px);
  opacity: 0;
  transform: rotate(18deg);
  transition: left .7s var(--ease), opacity .25s;
}

.btn:hover {
  box-shadow: 0 18px 38px rgba(3, 23, 34, .2);
  transform: translateY(-4px);
}

.btn:hover::after {
  left: 118%;
  opacity: 1;
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(10px);
}

.btn-blue::before {
  background: linear-gradient(120deg, var(--navy), var(--blue));
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue-bright));
  box-shadow: 0 0 18px rgba(43, 155, 125, .45);
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  padding-top: 15px;
}

.nav-shell {
  min-height: 76px;
  padding: 7px 9px 7px 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background: rgba(3, 23, 34, .28);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .09);
  backdrop-filter: blur(18px) saturate(130%);
}

.site-header.scrolled {
  padding-top: 9px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled .nav-shell {
  min-height: 68px;
  border-color: var(--line);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  box-shadow: 0 14px 45px rgba(3, 35, 51, .1);
}

.site-header.scrolled .nav-links a:not(.btn),
.site-header.scrolled .theme-toggle,
.site-header.scrolled .nav-toggle {
  color: var(--ink);
}

html[data-theme="dark"] .site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

html[data-theme="dark"] .site-header.scrolled .nav-shell {
  background: rgba(6, 24, 33, .88);
}

.brand-mark {
  width: 178px;
  height: 57px;
}

.brand-mark img {
  filter:
    drop-shadow(0 0 1px rgba(255, 255, 255, .85))
    drop-shadow(0 4px 12px rgba(0, 0, 0, .12));
}

.nav-links {
  gap: 7px;
}

.nav-links a:not(.btn) {
  padding: 11px 14px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: .02em;
  transition: color .3s, background .3s;
}

.nav-links a:not(.btn)::after {
  display: none;
}

.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) {
  color: var(--navy-deep);
  background: var(--green);
}

.nav-links .btn {
  min-height: 48px;
  margin-left: 6px;
  border-radius: 14px;
}

.theme-toggle {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 14px;
}

.hero {
  min-height: max(780px, 100svh);
  background: var(--navy-deep);
}

.hero::after {
  position: absolute;
  top: 15%;
  left: 48%;
  z-index: 2;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, .022),
    0 0 0 180px rgba(255, 255, 255, .014);
  content: "";
  pointer-events: none;
  animation: orbit-float 10s ease-in-out infinite alternate;
}

.hero-media img {
  height: 108%;
  object-position: 64% center;
  filter: saturate(.72) contrast(1.08);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .98) 0%, rgba(3, 23, 34, .9) 35%, rgba(3, 23, 34, .43) 68%, rgba(3, 23, 34, .35) 100%),
    linear-gradient(0deg, rgba(3, 23, 34, .82), transparent 54%),
    radial-gradient(circle at 75% 35%, rgba(43, 155, 125, .09), transparent 32%);
}

.weave-lines {
  opacity: .14;
}

.weave-lines::before,
.weave-lines::after {
  background-image: repeating-linear-gradient(90deg, transparent 0 74px, rgba(255, 255, 255, .13) 75px 76px);
}

.weave-lines::after {
  background-image: repeating-linear-gradient(0deg, transparent 0 74px, rgba(43, 155, 125, .12) 75px 76px);
}

.hero-content {
  width: min(850px, 72%);
  padding: 168px 0 130px;
}

.hero-kicker {
  width: fit-content;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(12px);
  font-size: 10px;
  letter-spacing: .17em;
}

.hero-kicker i {
  width: 7px;
  height: 7px;
  box-shadow: 0 0 0 6px rgba(43, 155, 125, .13);
}

.hero h1 {
  max-width: 930px;
  margin-bottom: 30px;
  font-size: clamp(60px, 7vw, 106px);
  line-height: .92;
}

.hero h1 em {
  color: var(--green);
  text-shadow: 0 0 34px rgba(43, 155, 125, .13);
}

.hero .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, .76);
}

.hero-proof {
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 68px;
  padding: 10px 16px 10px 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(3, 23, 34, .38);
  backdrop-filter: blur(14px);
}

.proof-ring {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, .05);
}

.trust-strip {
  margin-top: -54px;
  padding-bottom: 46px;
  color: var(--ink);
  background: transparent;
}

.trust-grid {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 26px;
  background: color-mix(in srgb, var(--surface) 91%, transparent);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.trust-item {
  padding: 32px 30px;
  border-right-color: var(--line);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item::after {
  position: absolute;
  right: 25px;
  bottom: 20px;
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.trust-item strong {
  color: var(--navy);
  font-size: 39px;
}

html[data-theme="dark"] .trust-item strong {
  color: var(--green);
}

.trust-item span {
  color: var(--muted);
}

.split {
  gap: clamp(62px, 8vw, 118px);
}

.image-frame::before {
  top: -18px;
  right: -18px;
  width: 42%;
  height: 46%;
  border-width: 1px;
  border-color: var(--green-dark);
  border-radius: 0 28px 0 0;
}

.image-frame::after {
  position: absolute;
  bottom: -22px;
  left: -22px;
  z-index: -1;
  width: 45%;
  height: 42%;
  border-radius: 0 0 0 30px;
  background:
    radial-gradient(circle, rgba(23, 97, 138, .22) 1.4px, transparent 1.4px);
  background-size: 13px 13px;
  content: "";
}

.image-frame img {
  min-height: 560px;
  border-radius: 36px;
  filter: saturate(.9) contrast(1.02);
}

.floating-note {
  right: -30px;
  bottom: 34px;
  width: 230px;
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0, rgba(43, 155, 125, .2), transparent 40%),
    rgba(3, 31, 45, .94);
  backdrop-filter: blur(15px);
}

.floating-note::before {
  display: block;
  width: 36px;
  height: 4px;
  margin-bottom: 18px;
  border-radius: 99px;
  background: var(--green);
  content: "";
}

.check-list {
  gap: 5px 30px;
}

.check-list li {
  padding: 14px 0;
}

.check-list li::before {
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 7px 16px rgba(23, 108, 89, .16);
}

.service-grid {
  gap: 18px;
}

.service-card {
  min-height: 328px;
  padding: 34px 30px;
  border-color: rgba(255, 255, 255, .09);
  border-radius: 26px;
  color: white;
  background:
    radial-gradient(circle at var(--spot-x, 90%) var(--spot-y, 4%), rgba(43, 155, 125, .16), transparent 28%),
    linear-gradient(145deg, #0a3044, #061d2b);
  box-shadow: 0 20px 50px rgba(3, 23, 34, .13);
}

.service-card::before {
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
}

.service-card:hover {
  box-shadow: 0 30px 65px rgba(3, 23, 34, .25);
  transform: translateY(-12px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .number {
  width: fit-content;
  margin-bottom: 52px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  color: var(--green);
  background: rgba(255, 255, 255, .04);
}

.service-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.service-card p,
.service-card:hover p {
  color: rgba(255, 255, 255, .64);
}

.service-card .arrow {
  border-color: rgba(255, 255, 255, .18);
  color: var(--green);
}

.product-showcase {
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 390px 310px 320px;
  gap: 18px;
}

.product-showcase .product-tile:first-child {
  grid-column: 1 / 7;
  grid-row: 1 / 3;
}

.product-showcase .product-tile:nth-child(2) {
  grid-column: 7 / 10;
  grid-row: 1;
}

.product-showcase .product-tile:nth-child(3) {
  grid-column: 10 / 13;
  grid-row: 1;
}

.product-showcase .product-tile:nth-child(4) {
  grid-column: 7 / 13;
  grid-row: 2;
}

.product-showcase .product-tile:nth-child(5) {
  grid-column: 1 / 7;
  grid-row: 3;
}

.product-showcase .product-tile:nth-child(6) {
  grid-column: 7 / 13;
  grid-row: 3;
}

.product-tile {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.product-tile::after {
  background:
    linear-gradient(0deg, rgba(3, 23, 34, .94), transparent 66%),
    linear-gradient(120deg, rgba(3, 23, 34, .08), transparent);
}

.product-tile img {
  filter: saturate(.88);
}

.product-tile:hover img {
  filter: saturate(1.08) contrast(1.02);
  transform: scale(1.08);
}

.product-tile-content {
  right: 28px;
  bottom: 27px;
  left: 28px;
}

.product-tile-content h3 {
  font-size: 27px;
}

.product-tile-content span {
  color: var(--green);
}

.product-tile-content i {
  width: 46px;
  height: 46px;
  flex-basis: 46px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.process-grid {
  gap: 22px;
}

.process-step {
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .045);
  backdrop-filter: blur(8px);
  transition: border-color .35s, background .35s, transform .35s var(--ease);
}

.process-step:hover {
  border-color: rgba(43, 155, 125, .4);
  background: rgba(255, 255, 255, .075);
  transform: translateY(-7px);
}

.process-step::before {
  top: 26px;
  left: auto;
  right: 26px;
}

.process-step::after {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, .22);
  font-size: 49px;
}

.cert-strip {
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.cert-badge {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--navy);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .48));
  box-shadow: 0 14px 32px rgba(3, 35, 51, .06);
  backdrop-filter: blur(12px);
}

.cert-badge::before {
  position: absolute;
  top: -35px;
  right: -35px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(43, 155, 125, .18);
  content: "";
  transition: transform .45s var(--ease);
}

.cert-badge:hover {
  border-color: rgba(23, 108, 89, .35);
  box-shadow: 0 22px 45px rgba(3, 35, 51, .12);
  transform: translateY(-8px);
}

.cert-badge:hover::before {
  transform: scale(1.45);
}

.cert-badge strong {
  position: relative;
  font-size: 22px;
}

html[data-theme="dark"] .cert-badge {
  color: var(--ink);
  background: linear-gradient(145deg, rgba(17, 47, 58, .92), rgba(8, 31, 40, .9));
}

.cta-panel {
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 38px;
  box-shadow: 0 35px 90px rgba(3, 23, 34, .22);
}

.cta-panel::before {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .99) 0%, rgba(4, 31, 44, .92) 48%, rgba(4, 31, 44, .33) 100%),
    url("images/fabrics.png") center right / cover no-repeat;
  transition: transform 1.1s var(--ease);
}

.cta-panel:hover::before {
  transform: scale(1.025);
}

.cta-content {
  max-width: 720px;
  padding: 72px;
}

.page-hero {
  min-height: 650px;
  padding: 195px 0 105px;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .94), rgba(3, 23, 34, .59) 58%, rgba(3, 23, 34, .25)),
    linear-gradient(0deg, rgba(3, 23, 34, .58), transparent 58%),
    var(--page-image, url("images/fabrics.png")) center / cover;
  animation: page-hero-breathe 15s ease-in-out infinite alternate;
}

body[data-page="products"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .94), rgba(3, 23, 34, .59) 58%, rgba(3, 23, 34, .25)),
    linear-gradient(0deg, rgba(3, 23, 34, .58), transparent 58%),
    url("images/bedding.png") center / cover;
}

body[data-page="services"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .94), rgba(3, 23, 34, .59) 58%, rgba(3, 23, 34, .25)),
    linear-gradient(0deg, rgba(3, 23, 34, .58), transparent 58%),
    url("images/hero-textile.png") center / cover;
}

body[data-page="about"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .94), rgba(3, 23, 34, .59) 58%, rgba(3, 23, 34, .25)),
    linear-gradient(0deg, rgba(3, 23, 34, .58), transparent 58%),
    url("images/fabrics.png") center / cover;
}

body[data-page="contact"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 23, 34, .94), rgba(3, 23, 34, .59) 58%, rgba(3, 23, 34, .25)),
    linear-gradient(0deg, rgba(3, 23, 34, .58), transparent 58%),
    url("images/bath-kitchen.png") center / cover;
}

.page-hero::after {
  right: -10%;
  bottom: -62%;
  width: 760px;
  height: 760px;
  border-color: rgba(43, 155, 125, .17);
}

.page-hero-content {
  max-width: 960px;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(58px, 6.5vw, 92px);
  line-height: .96;
}

.page-hero p {
  color: rgba(255, 255, 255, .76);
  font-size: 19px;
}

.breadcrumb {
  bottom: 106px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(3, 23, 34, .28);
  backdrop-filter: blur(12px);
}

.product-grid {
  gap: 30px;
}

.product-card {
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(3, 35, 51, .07);
}

.product-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue-bright));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-11px);
}

.product-card:hover::after {
  transform: scaleX(1);
}

.product-card-media {
  height: 420px;
}

.product-card-media img {
  filter: saturate(.9);
}

.product-card:hover img {
  filter: saturate(1.05);
  transform: scale(1.075);
}

.product-card-tag {
  top: 21px;
  left: 21px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(3, 23, 34, .72);
}

.product-card-body {
  padding: 34px;
}

.product-card-body h3 {
  font-size: 32px;
}

.mini-specs span {
  color: var(--navy);
  background: rgba(43, 155, 125, .18);
}

.services-detail {
  gap: 14px;
  border-top: 0;
}

.service-row {
  grid-template-columns: 68px minmax(230px, .8fr) 1.2fr 60px;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  box-shadow: 0 10px 30px rgba(3, 35, 51, .035);
}

.service-row:hover {
  padding-inline: 34px;
  border-color: rgba(23, 108, 89, .35);
  background:
    radial-gradient(circle at 90% 20%, rgba(43, 155, 125, .13), transparent 18rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.service-row .num {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  color: var(--navy);
  background: var(--green);
}

.service-row h3 {
  font-size: 28px;
}

.service-row .row-arrow {
  border-color: var(--line);
  background: var(--mist);
}

.expertise-grid {
  gap: 18px;
}

.expertise-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 30px;
  border-radius: 24px;
  background:
    radial-gradient(circle at var(--spot-x, 92%) var(--spot-y, 8%), rgba(43, 155, 125, .16), transparent 30%),
    var(--surface);
  box-shadow: 0 14px 38px rgba(3, 35, 51, .055);
  transition: border-color .35s, box-shadow .35s, transform .35s var(--ease);
}

.expertise-card:hover {
  border-color: rgba(23, 108, 89, .3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-8px);
}

.expertise-card i {
  width: 48px;
  height: 48px;
  margin-bottom: 38px;
  border-radius: 15px;
  color: var(--navy);
  background: var(--green);
}

.stat-panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(43, 155, 125, .17), transparent 26rem),
    linear-gradient(120deg, var(--navy-deep), var(--blue));
  box-shadow: var(--shadow);
}

.stat {
  padding: 56px 40px;
}

.stat strong {
  color: var(--green);
  font-size: 60px;
}

.contact-layout {
  align-items: start;
  gap: clamp(50px, 7vw, 94px);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(43, 155, 125, .2), transparent 38%),
    linear-gradient(145deg, #092f43, #041b28);
  box-shadow: var(--shadow);
}

.contact-layout > div:last-child {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: color-mix(in srgb, var(--surface) 93%, transparent);
  box-shadow: var(--shadow-soft);
}

.contact-detail i {
  color: var(--navy);
  background: var(--green);
}

.contact-form {
  gap: 23px 20px;
}

.field input,
.field textarea,
.field select {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--mist);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 4px rgba(23, 108, 89, .1);
}

.map-card {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.map-pin {
  background: var(--navy);
  box-shadow:
    0 0 0 14px rgba(43, 155, 125, .16),
    var(--shadow);
  animation: pin-float 2.8s ease-in-out infinite;
}

.map-label {
  background: var(--navy);
}

.marquee {
  border-block: 1px solid var(--line);
  background: var(--sand);
}

.marquee-track {
  animation-duration: 36s;
}

.marquee-track span {
  padding-block: 27px;
  font-size: 24px;
}

.site-footer {
  background:
    radial-gradient(circle at 8% 0, rgba(44, 142, 179, .22), transparent 28rem),
    radial-gradient(circle at 92% 100%, rgba(43, 155, 125, .1), transparent 25rem),
    #02141e;
}

.site-footer::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), transparent);
  content: "";
}

.footer-main {
  padding: 92px 0 70px;
}

.footer-col h3 {
  color: var(--green);
}

.footer-col .linkedin-button {
  border-color: rgba(255, 255, 255, .18);
  border-radius: 13px;
  background: linear-gradient(120deg, #0a66c2, #147cca);
}

.preloader {
  background:
    radial-gradient(circle at 50% 45%, rgba(44, 142, 179, .22), transparent 28rem),
    var(--navy-deep);
}

.loader-word {
  font-size: 30px;
  letter-spacing: .12em;
}

.loader-line {
  height: 3px;
  border-radius: 99px;
}

.loader-line::after {
  background: linear-gradient(90deg, var(--green), var(--gold), var(--blue-bright));
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(42px) scale(.985);
  transition:
    opacity .9s var(--ease),
    filter .9s var(--ease),
    transform .9s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.hero .reveal,
.page-hero .reveal {
  filter: blur(8px);
  animation: first-view-refresh .95s var(--ease) .12s forwards;
}

.back-top {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  color: var(--navy);
  background: var(--green);
  box-shadow: 0 15px 35px rgba(3, 35, 51, .18);
}

.back-top:hover {
  transform: translateY(-4px);
}

.magnetic {
  will-change: transform;
}

@keyframes orbit-float {
  to { transform: translate3d(40px, -25px, 0) rotate(8deg); }
}

@keyframes page-hero-breathe {
  to { transform: scale(1.045); }
}

@keyframes pin-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -10px; }
}

@keyframes first-view-refresh {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .nav-shell {
    gap: 14px;
  }

  .brand-mark {
    width: 158px;
  }

  .nav-links a:not(.btn) {
    padding-inline: 10px;
  }

  .hero h1 {
    font-size: clamp(58px, 8vw, 88px);
  }

  .cert-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 860px) {
  .section {
    padding: 94px 0;
  }

  .site-header {
    padding-top: 10px;
  }

  .nav-shell {
    min-height: 70px;
    padding-inline: 14px 10px;
    border-radius: 20px;
  }

  .nav-links {
    z-index: 8999;
    gap: 9px;
    background:
      radial-gradient(circle at 80% 18%, rgba(44, 142, 179, .32), transparent 22rem),
      radial-gradient(circle at 20% 88%, rgba(43, 155, 125, .12), transparent 19rem),
      var(--navy-deep);
  }

  .nav-links a:not(.btn) {
    padding: 8px 18px;
    color: white;
    font-size: 30px;
  }

  .site-header.scrolled .nav-links a:not(.btn) {
    color: white;
  }

  .nav-links a:not(.btn):hover,
  .nav-links a.active:not(.btn) {
    color: var(--navy-deep);
  }

  .nav-links .btn {
    margin-left: 0;
  }

  .hero {
    min-height: 850px;
  }

  .hero::after {
    left: 58%;
  }

  .hero-content {
    width: 92%;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(3, 23, 34, .95), rgba(3, 23, 34, .68)),
      linear-gradient(0deg, rgba(3, 23, 34, .8), transparent 55%);
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 23, 34, .9), rgba(3, 23, 34, .48)),
      linear-gradient(0deg, rgba(3, 23, 34, .66), transparent 58%),
      var(--page-image, url("images/fabrics.png")) 58% center / cover;
  }

  body[data-page="products"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 23, 34, .86), rgba(3, 23, 34, .43)),
      linear-gradient(0deg, rgba(3, 23, 34, .68), transparent 58%),
      url("images/bedding.png") 58% center / cover;
  }

  body[data-page="services"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 23, 34, .86), rgba(3, 23, 34, .43)),
      linear-gradient(0deg, rgba(3, 23, 34, .68), transparent 58%),
      url("images/hero-textile.png") 58% center / cover;
  }

  body[data-page="about"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 23, 34, .86), rgba(3, 23, 34, .43)),
      linear-gradient(0deg, rgba(3, 23, 34, .68), transparent 58%),
      url("images/fabrics.png") 58% center / cover;
  }

  body[data-page="contact"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 23, 34, .86), rgba(3, 23, 34, .43)),
      linear-gradient(0deg, rgba(3, 23, 34, .68), transparent 58%),
      url("images/bath-kitchen.png") 58% center / cover;
  }

  .trust-strip {
    margin-top: -38px;
  }

  .product-showcase {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 320px 320px 320px;
  }

  .product-showcase .product-tile:first-child {
    grid-column: 1 / 3;
    grid-row: 1;
  }

  .product-showcase .product-tile:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }

  .product-showcase .product-tile:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .product-showcase .product-tile:nth-child(4) {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .product-showcase .product-tile:nth-child(5) {
    grid-column: 1;
    grid-row: 4;
  }

  .product-showcase .product-tile:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
  }

  .process-grid {
    gap: 16px;
  }

  .service-row {
    grid-template-columns: 55px 1fr 46px;
  }

  .contact-layout > div:last-child {
    padding: 36px;
  }
}

@media (max-width: 600px) {
  body::before {
    background-size: 48px 48px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .site-header,
  .site-header.scrolled {
    padding-top: 7px;
  }

  .nav-shell {
    min-height: 64px;
    padding: 5px 7px 5px 11px;
    border-radius: 17px;
  }

  .brand-mark {
    width: 128px;
    height: 47px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 41px;
    height: 41px;
    flex-basis: 41px;
    border-radius: 12px;
  }

  .hero {
    min-height: 800px;
  }

  .hero::after {
    top: 28%;
    left: 65%;
    width: 250px;
    height: 250px;
  }

  .hero-content {
    padding: 120px 0 112px;
  }

  .hero-kicker {
    max-width: 310px;
    padding: 9px 12px;
  }

  .hero h1 {
    font-size: clamp(47px, 14vw, 62px);
  }

  .hero .btn {
    width: 100%;
  }

  .trust-strip {
    margin-top: -30px;
    padding-bottom: 25px;
  }

  .trust-grid {
    border-radius: 20px;
  }

  .trust-item {
    padding: 24px 18px;
  }

  .trust-item::after {
    display: none;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .section-head {
    margin-bottom: 42px;
  }

  .image-frame img {
    min-height: 400px;
    border-radius: 26px;
  }

  .floating-note {
    right: 12px;
    width: 200px;
    padding: 22px;
  }

  .service-card {
    min-height: 280px;
    border-radius: 22px;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 330px);
  }

  .product-showcase .product-tile:first-child,
  .product-showcase .product-tile:nth-child(2),
  .product-showcase .product-tile:nth-child(3),
  .product-showcase .product-tile:nth-child(4),
  .product-showcase .product-tile:nth-child(5),
  .product-showcase .product-tile:nth-child(6) {
    grid-column: 1;
    grid-row: auto;
  }

  .product-tile {
    border-radius: 22px;
  }

  .cert-strip {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cert-badge {
    min-height: 120px;
    border-radius: 18px;
  }

  .cta-panel {
    min-height: 470px;
    border-radius: 26px;
  }

  .cta-content {
    padding: 38px 25px;
  }

  .page-hero {
    min-height: 560px;
    padding: 150px 0 72px;
  }

  .page-hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .product-card {
    border-radius: 23px;
  }

  .product-card-media {
    height: 300px;
  }

  .product-card-body {
    padding: 26px;
  }

  .product-card-body h3 {
    font-size: 28px;
  }

  .service-row {
    padding: 24px 18px;
    border-radius: 17px;
  }

  .service-row:hover {
    padding-inline: 21px;
  }

  .service-row .num {
    width: 40px;
    height: 40px;
  }

  .expertise-card {
    min-height: 180px;
  }

  .stat {
    padding: 40px 30px;
  }

  .contact-card,
  .contact-layout > div:last-child {
    padding: 27px 22px;
    border-radius: 23px;
  }

  .map-card {
    min-height: 360px;
    border-radius: 24px;
  }

  .footer-main {
    padding-top: 75px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress {
    transition: none !important;
  }

  .hero-media img,
  .page-hero::before,
  .hero::after,
  .map-pin {
    animation: none !important;
  }

  .reveal,
  .hero .reveal,
  .page-hero .reveal {
    filter: none;
  }
}

/* Bright, image-forward responsive refinement */
:root {
  --navy: #123d56;
  --navy-deep: #082838;
  --blue: #247aa1;
  --blue-bright: #55afd0;
  --green: #47bd98;
  --green-dark: #20846b;
  --gold: #d7b36f;
  --ink: #143141;
  --muted: #61757e;
  --line: rgba(18, 73, 94, .13);
  --paper: #fffdf8;
  --mist: #f2f8f5;
  --sand: #fbf2e2;
  --surface: #ffffff;
  --surface-raised: #ffffff;
  --map: #edf5f1;
  --shadow: 0 26px 72px rgba(24, 82, 101, .12);
  --shadow-soft: 0 14px 38px rgba(24, 82, 101, .08);
}

body {
  background:
    radial-gradient(circle at 7% 12%, rgba(71, 189, 152, .1), transparent 26rem),
    radial-gradient(circle at 94% 42%, rgba(85, 175, 208, .08), transparent 31rem),
    var(--paper);
}

body::before {
  opacity: .13;
}

.section-mist {
  background:
    radial-gradient(circle at 8% 18%, rgba(71, 189, 152, .13), transparent 25rem),
    radial-gradient(circle at 91% 84%, rgba(85, 175, 208, .1), transparent 29rem),
    var(--mist);
}

.section-dark {
  background:
    radial-gradient(circle at 88% 8%, rgba(85, 175, 208, .42), transparent 34rem),
    radial-gradient(circle at 12% 100%, rgba(71, 189, 152, .2), transparent 28rem),
    linear-gradient(145deg, #0a3142, #15516a 58%, #0c3b50);
}

.eyebrow {
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 24px rgba(24, 82, 101, .06);
}

.hero-media img {
  filter: brightness(1.14) saturate(.96) contrast(1.01);
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .82) 0%, rgba(4, 34, 48, .66) 35%, rgba(4, 34, 48, .2) 70%, rgba(4, 34, 48, .08) 100%),
    linear-gradient(0deg, rgba(4, 34, 48, .42), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(71, 189, 152, .06), transparent 34%);
}

.hero h1 {
  text-shadow: 0 4px 28px rgba(2, 23, 34, .28);
}

.hero .lead {
  color: rgba(255, 255, 255, .9);
  text-shadow: 0 2px 14px rgba(2, 23, 34, .28);
}

.hero-proof {
  background: rgba(4, 34, 48, .58);
}

.trust-grid,
.product-card,
.expertise-card,
.contact-layout > div:last-child {
  background: rgba(255, 255, 255, .94);
}

.image-frame img {
  filter: brightness(1.06) saturate(1.04) contrast(1.01);
}

.product-tile img,
.product-card-media img {
  filter: brightness(1.05) saturate(1.03);
}

.product-tile:hover img,
.product-card:hover img {
  filter: brightness(1.07) saturate(1.1) contrast(1.01);
}

.product-tile::after {
  background:
    linear-gradient(0deg, rgba(4, 34, 48, .82), transparent 62%),
    linear-gradient(120deg, rgba(4, 34, 48, .03), transparent);
}

.cta-panel::before {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .84) 0%, rgba(4, 34, 48, .62) 48%, rgba(4, 34, 48, .09) 100%),
    url("images/fabrics.png") center right / cover no-repeat;
  filter: brightness(1.08) saturate(1.02);
}

.page-hero::before,
body[data-page="products"] .page-hero::before,
body[data-page="services"] .page-hero::before,
body[data-page="about"] .page-hero::before,
body[data-page="contact"] .page-hero::before {
  filter: brightness(1.1) saturate(1.02);
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .8), rgba(4, 34, 48, .4) 58%, rgba(4, 34, 48, .08)),
    linear-gradient(0deg, rgba(4, 34, 48, .35), transparent 58%),
    var(--page-image, url("images/fabrics.png")) center / cover;
}

body[data-page="products"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .8), rgba(4, 34, 48, .4) 58%, rgba(4, 34, 48, .08)),
    linear-gradient(0deg, rgba(4, 34, 48, .35), transparent 58%),
    url("images/bedding.png") center / cover;
}

body[data-page="services"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .8), rgba(4, 34, 48, .4) 58%, rgba(4, 34, 48, .08)),
    linear-gradient(0deg, rgba(4, 34, 48, .35), transparent 58%),
    url("images/hero-textile.png") center / cover;
}

body[data-page="about"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .8), rgba(4, 34, 48, .4) 58%, rgba(4, 34, 48, .08)),
    linear-gradient(0deg, rgba(4, 34, 48, .35), transparent 58%),
    url("images/fabrics.png") center / cover;
}

body[data-page="contact"] .page-hero::before {
  background:
    linear-gradient(90deg, rgba(4, 34, 48, .8), rgba(4, 34, 48, .4) 58%, rgba(4, 34, 48, .08)),
    linear-gradient(0deg, rgba(4, 34, 48, .35), transparent 58%),
    url("images/bath-kitchen.png") center / cover;
}

.page-hero p {
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 14px rgba(2, 23, 34, .28);
}

.site-header.scrolled .nav-shell {
  background: rgba(255, 253, 248, .94);
}

.field input,
.field textarea,
.field select {
  background: #f8fbf9;
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    width: 100%;
    padding: 136px 0 104px;
  }

  .hero-media img {
    object-position: 62% center;
    filter: brightness(1.16) saturate(.96) contrast(1);
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .78), rgba(4, 34, 48, .42)),
      linear-gradient(0deg, rgba(4, 34, 48, .52), transparent 58%);
  }

  .page-hero::before,
  body[data-page="products"] .page-hero::before,
  body[data-page="services"] .page-hero::before,
  body[data-page="about"] .page-hero::before,
  body[data-page="contact"] .page-hero::before {
    filter: brightness(1.12) saturate(1.03);
  }

  .page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .7), rgba(4, 34, 48, .3)),
      linear-gradient(0deg, rgba(4, 34, 48, .45), transparent 60%),
      var(--page-image, url("images/fabrics.png")) 58% center / cover;
  }

  body[data-page="products"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .7), rgba(4, 34, 48, .3)),
      linear-gradient(0deg, rgba(4, 34, 48, .45), transparent 60%),
      url("images/bedding.png") 58% center / cover;
  }

  body[data-page="services"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .7), rgba(4, 34, 48, .3)),
      linear-gradient(0deg, rgba(4, 34, 48, .45), transparent 60%),
      url("images/hero-textile.png") 58% center / cover;
  }

  body[data-page="about"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .7), rgba(4, 34, 48, .3)),
      linear-gradient(0deg, rgba(4, 34, 48, .45), transparent 60%),
      url("images/fabrics.png") 58% center / cover;
  }

  body[data-page="contact"] .page-hero::before {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .7), rgba(4, 34, 48, .3)),
      linear-gradient(0deg, rgba(4, 34, 48, .45), transparent 60%),
      url("images/bath-kitchen.png") 58% center / cover;
  }

  .split > *,
  .section-head > *,
  .contact-layout > *,
  .product-card,
  .service-row > * {
    min-width: 0;
  }

  .section-head {
    gap: 24px;
  }
}

@media (max-width: 600px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  h1,
  h2,
  h3,
  p,
  .hero-kicker,
  .eyebrow {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav-shell {
    gap: 5px;
    padding: 5px 6px 5px 9px;
  }

  .brand {
    min-width: 0;
    flex: 0 1 112px;
  }

  .brand-mark {
    width: 100%;
    height: 43px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 39px;
    min-width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    max-width: 100%;
    padding: 112px 0 88px;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 9px;
    letter-spacing: .12em;
  }

  .hero h1 {
    width: 100%;
    margin-bottom: 22px;
    font-size: clamp(41px, 12.5vw, 56px);
    line-height: .96;
  }

  .hero h1 em {
    display: inline;
  }

  .hero .lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero .btn-row {
    gap: 10px;
  }

  .hero-proof {
    right: 10px;
    bottom: 34px;
    transform: scale(.86);
    transform-origin: right bottom;
  }

  .section,
  .section-sm {
    padding: 68px 0;
  }

  h2 {
    font-size: clamp(35px, 10.8vw, 48px);
  }

  p {
    font-size: 15px;
    line-height: 1.7;
  }

  .section-head {
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 34px;
  }

  .image-frame img {
    width: 100%;
    min-height: 320px;
    max-height: 460px;
    object-fit: cover;
  }

  .floating-note {
    right: 10px;
    bottom: 12px;
    width: min(190px, calc(100% - 20px));
    padding: 18px;
  }

  .product-showcase {
    grid-template-rows: repeat(6, 290px);
  }

  .product-tile-content {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .product-tile-content h3 {
    font-size: 23px;
  }

  .product-card-media {
    height: 260px;
  }

  .product-card-body {
    padding: 23px 20px;
  }

  .product-card-body h3 {
    font-size: 26px;
  }

  .mini-specs {
    gap: 7px;
  }

  .mini-specs span {
    padding: 7px 10px;
    font-size: 11px;
  }

  .service-row {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 16px;
  }

  .service-row p {
    grid-column: 2;
  }

  .service-row .row-arrow {
    display: none;
  }

  .service-row h3 {
    font-size: 23px;
  }

  .cert-badge {
    min-height: 105px;
    padding: 16px 10px;
  }

  .cert-badge strong {
    font-size: 18px;
  }

  .cta-panel {
    min-height: 430px;
  }

  .cta-panel::before {
    background:
      linear-gradient(90deg, rgba(4, 34, 48, .75), rgba(4, 34, 48, .31)),
      linear-gradient(0deg, rgba(4, 34, 48, .35), transparent 64%),
      url("images/fabrics.png") 64% center / cover no-repeat;
  }

  .cta-content {
    padding: 32px 20px;
  }

  .page-hero {
    min-height: 500px;
    padding: 130px 0 62px;
  }

  .page-hero h1 {
    width: 100%;
    margin-bottom: 20px;
    font-size: clamp(40px, 12vw, 54px);
    line-height: .98;
  }

  .page-hero p {
    font-size: 16px;
    line-height: 1.65;
  }

  .breadcrumb {
    bottom: 58px;
    max-width: calc(100% - 20px);
  }

  .contact-card,
  .contact-layout > div:last-child {
    padding: 24px 18px;
  }

  .contact-form,
  .field-row {
    grid-template-columns: 1fr;
  }

  .field input,
  .field textarea,
  .field select {
    width: 100%;
    font-size: 16px;
  }

  .map-card {
    min-height: 310px;
  }

  .footer-main {
    padding: 64px 0 48px;
  }
}

@media (max-width: 390px) {
  .brand {
    flex-basis: 96px;
  }

  .brand-mark {
    width: 100%;
  }

  .theme-toggle,
  .nav-toggle {
    width: 37px;
    min-width: 37px;
    height: 37px;
    flex-basis: 37px;
    border-radius: 11px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 47px);
  }

  .cert-strip {
    grid-template-columns: 1fr;
  }
}


/* ===================================================================
