:root {
  --ink: #18212a;
  --muted: #5c6975;
  --line: #dbe2e8;
  --paper: #fbfaf7;
  --white: #ffffff;
  --surface: #ffffff;
  --field: #ffffff;
  --blue: #1d5c83;
  --blue-dark: #123d5a;
  --green: #5d7b53;
  --clay: #b66c4a;
  --gold: #c39a4a;
  --shadow: 0 18px 55px rgba(24, 33, 42, 0.13);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --ink: #f4efe7;
  --muted: #b7c3cd;
  --line: #334351;
  --paper: #0f151b;
  --surface: #17212a;
  --field: #111a22;
  --blue: #78b8db;
  --blue-dark: #9bc7df;
  --green: #a6c094;
  --clay: #df9a78;
  --gold: #e2bb61;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(24, 33, 42, 0.09);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: currentColor;
  font-size: 0.76rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
}

.site-nav a + a::before {
  content: "|";
  display: inline-block;
  margin: 0 14px;
  color: currentColor;
  font-weight: 500;
  opacity: 0.46;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform-origin: right center;
  transform: scaleX(0.35);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-nav a:first-child::after {
  transform-origin: center;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-controls,
.legal-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  position: relative;
  display: inline-grid;
  align-items: center;
  width: 74px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.language-switcher::after {
  position: absolute;
  right: 8px;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: opacity 140ms ease, transform 140ms ease;
}

.language-switcher:hover::after,
.language-switcher:focus-within::after,
.language-switcher.is-open::after {
  opacity: 0.72;
}

.language-switcher.is-open::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.site-header.is-scrolled .language-switcher,
.site-header.is-open .language-switcher,
.landing-page .language-switcher,
.legal-header .language-switcher {
  border-color: var(--line);
  background: var(--surface);
}

.language-option {
  display: none;
  min-width: 72px;
  min-height: 38px;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 8px 10px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(24, 33, 42, 0.14);
}

.language-option.is-active {
  display: inline-flex;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font-size: 0.78rem;
  box-shadow: none;
}

.language-switcher.is-open .language-option:not(.is-active) {
  position: absolute;
  top: calc(100% + 7px);
  right: 0;
  z-index: 30;
  display: inline-flex;
}

.language-switcher.is-open .language-option:not(.is-active):hover,
.language-switcher.is-open .language-option:not(.is-active):focus-visible {
  background: var(--gold);
  color: #111820;
}

.theme-toggle {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  transform: translateY(-1px);
}

.theme-toggle svg {
  grid-area: 1 / 1;
  width: 20px;
  height: 20px;
  transition: opacity 160ms ease, transform 160ms ease;
}

.theme-icon-sun {
  opacity: 0;
  transform: scale(0.78) rotate(-24deg);
}

.site-header.is-scrolled .theme-toggle,
.site-header.is-open .theme-toggle,
.landing-page .theme-toggle,
.legal-header .theme-toggle {
  border-color: var(--line);
  background: var(--surface);
}

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

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

.flag-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 14px;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(17, 24, 32, 0.22);
}

.language-option.is-active .flag-icon {
  width: 20px;
  height: 14px;
}

.flag-us {
  background: repeating-linear-gradient(
    to bottom,
    #b22234 0 1.1px,
    #fff 1.1px 2.2px
  );
}

.flag-us::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 7.8px;
  height: 6.6px;
  background: #3c3b6e;
  content: "";
}

.flag-es {
  background: linear-gradient(
    to bottom,
    #aa151b 0 25%,
    #f1bf00 25% 75%,
    #aa151b 75% 100%
  );
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  min-height: 86vh;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 76px) 96px;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 31, 42, 0.87), rgba(18, 31, 42, 0.62) 46%, rgba(18, 31, 42, 0.28)),
    linear-gradient(0deg, rgba(18, 31, 42, 0.55), rgba(18, 31, 42, 0.08) 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  align-self: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.18;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

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

.button.primary {
  background: var(--gold);
  color: #111820;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #d3a957;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 24px;
  z-index: 1;
  display: flex;
  max-width: min(760px, calc(100% - 40px));
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel span {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 6vw, 76px);
}

.intro-grid,
.business-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.intro p,
.section-heading p,
.business-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.statement {
  border-left: 6px solid var(--green);
  padding: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.statement svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  color: var(--green);
}

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

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  padding: 0;
  background: var(--surface);
}

.split-media {
  min-height: 620px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-content {
  padding: clamp(56px, 7vw, 96px) clamp(22px, 6vw, 76px);
}

.capability-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.capability-list article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.capability-list svg {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.capability-list p,
.category-card p,
.process-steps p,
.form-note,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

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

.category-carousel {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.category-track {
  display: grid;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  gap: 18px;
  overflow: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 32px rgba(24, 33, 42, 0.08);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(29, 92, 131, 0.38);
  box-shadow: 0 16px 38px rgba(24, 33, 42, 0.12);
  transform: translateY(-2px);
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.category-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 18px 22px;
}

.category-card-body span {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category-card-body h3 {
  font-size: 1.12rem;
  line-height: 1.22;
}

.category-card-body p {
  flex: 1;
  margin-bottom: 18px;
}

.category-card-body strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.category-card-body strong::after {
  content: "→";
  font-size: 1rem;
}

.process-band {
  background: #101820;
  color: var(--white);
}

.process-band .section-kicker {
  color: #e5c877;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.process-steps article {
  border-top: 2px solid rgba(255, 255, 255, 0.24);
  padding-top: 20px;
}

.process-steps span {
  display: block;
  margin-bottom: 36px;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 850;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.72);
}

.business-section {
  background:
    linear-gradient(color-mix(in srgb, var(--paper) 92%, transparent), color-mix(in srgb, var(--paper) 92%, transparent)),
    url("https://images.unsplash.com/photo-1607082349566-187342175e2f?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--ink);
  font-weight: 700;
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.inquiry-form h2 {
  margin-bottom: 4px;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: var(--field);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(29, 92, 131, 0.16);
}

textarea {
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-button {
  width: max-content;
  border: 0;
}

.form-result {
  min-height: 58vh;
}

.form-result .success,
.form-result .error {
  max-width: 720px;
  font-size: 1.12rem;
}

.form-result .success {
  color: var(--green);
}

.form-result .error {
  color: var(--clay);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: start;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 76px);
  background: #101820;
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-company {
  max-width: 760px;
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-contact li > span:first-child {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact a,
.social-link {
  color: rgba(255, 255, 255, 0.86);
}

.footer-contact a:hover,
.footer-contact a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.social-link:hover,
.social-link:focus-visible {
  color: var(--white);
}

.footer-actions {
  display: grid;
  justify-items: end;
  gap: 18px;
}

.site-footer .copyright {
  grid-column: 1 / -1;
  width: 100%;
  align-self: center;
  margin-top: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
  text-align: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
}

.footer-links {
  gap: 0;
  align-items: center;
}

.footer-links a + a::before {
  content: "|";
  display: inline-block;
  margin: 0 11px;
  color: rgba(255, 255, 255, 0.34);
  font-weight: 500;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 9px 12px;
  font-weight: 850;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.linkedin-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.legal-page {
  background: var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 6vw, 76px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.legal-header .brand {
  color: var(--ink);
}

.legal-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-back {
  border-color: var(--line);
  background: var(--ink);
  color: var(--white);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 8vw, 86px) 0;
}

.legal-main h1 {
  max-width: none;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}

.legal-main h2 {
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  line-height: 1.18;
}

.legal-main section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-main p {
  color: var(--muted);
}

.legal-date {
  margin-bottom: 34px;
  font-weight: 700;
}

.landing-page .site-header {
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(24, 33, 42, 0.09);
  backdrop-filter: blur(12px);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: 128px clamp(20px, 6vw, 76px) 70px;
  background: var(--paper);
}

.landing-hero h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(2rem, 3.35vw, 3.2rem);
  line-height: 1.1;
}

.landing-copy {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.landing-page .eyebrow {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.86rem;
}

.product-collage {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: 12px;
}

.product-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(24, 33, 42, 0.12);
}

.product-collage .collage-main {
  grid-row: span 2;
}

.product-collage .collage-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  grid-column: 1 / -1;
}

.product-collage .collage-strip img {
  aspect-ratio: 4 / 3;
}

.landing-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.landing-panel span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 12px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.visual-showcase {
  display: grid;
  gap: 14px;
}

.showcase-main {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(24, 33, 42, 0.13);
}

.showcase-main img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.showcase-main::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(0deg, rgba(12, 18, 24, 0.74), transparent);
  content: "";
}

.showcase-main div {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 4px;
  color: #fff;
}

.showcase-main span {
  color: #e5c877;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-main strong {
  max-width: 580px;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.2;
}

.image-rail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 12px;
  align-items: center;
}

.rail-track {
  display: grid;
  grid-auto-columns: calc((100% - 24px) / 3);
  grid-auto-flow: column;
  gap: 12px;
  overflow: hidden;
  scroll-behavior: auto;
  scrollbar-width: none;
}

.rail-track::-webkit-scrollbar {
  display: none;
}

.rail-track img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.rail-track img:hover,
.rail-track img:focus-visible {
  box-shadow: 0 16px 34px rgba(24, 33, 42, 0.16);
  transform: translateY(-2px) scale(1.035);
}

.rail-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(24, 33, 42, 0.08);
  transition: transform 160ms ease, background 160ms ease;
}

.rail-button:hover,
.rail-button:focus-visible {
  background: var(--gold);
  color: #111820;
  transform: translateY(-1px);
}

.rail-button svg {
  width: 20px;
  height: 20px;
}

.landing-band {
  background: var(--surface);
}

html[data-theme="dark"] .site-header {
  color: #ffffff;
}

html[data-theme="dark"] .site-header.is-scrolled,
html[data-theme="dark"] .site-header.is-open,
html[data-theme="dark"] .landing-page .site-header {
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .hero,
html[data-theme="dark"] .site-footer,
html[data-theme="dark"] .button.secondary {
  color: #ffffff;
}

html[data-theme="dark"] .hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 9, 14, 0.9), rgba(4, 9, 14, 0.68) 46%, rgba(4, 9, 14, 0.34)),
    linear-gradient(0deg, rgba(4, 9, 14, 0.66), rgba(4, 9, 14, 0.1) 58%);
}

html[data-theme="dark"] .process-band,
html[data-theme="dark"] .site-footer {
  background: #090d12;
}

.landing-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.landing-list article {
  border-top: 3px solid var(--blue);
  padding-top: 20px;
}

.landing-list p,
.landing-note p {
  color: var(--muted);
}

.landing-band .section-heading h2,
.landing-note h2 {
  font-size: clamp(1.85rem, 3vw, 3.15rem);
  line-height: 1.08;
}

.landing-note {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.landing-note .statement {
  border-left-color: var(--clay);
}

.landing-note .statement svg {
  color: var(--clay);
}

.detail-band {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.detail-band h2 {
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.08;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: color-mix(in srgb, var(--paper) 78%, var(--surface));
}

.detail-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.detail-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

@media (max-width: 1060px) {
  .category-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .split-band,
  .intro-grid,
  .business-section,
  .section-heading,
  .landing-hero,
  .landing-note,
  .detail-band {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 440px;
  }

  .landing-list {
    grid-template-columns: 1fr;
  }

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

  .product-collage .collage-main {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .product-collage img {
    aspect-ratio: 4 / 3;
  }

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

@media (max-width: 560px) {
  .landing-hero h1 {
    font-size: 2rem;
  }

  .product-collage {
    gap: 8px;
  }

  .product-collage .collage-strip {
    gap: 8px;
  }

  .image-rail {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .category-carousel {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
  }

  .rail-button {
    width: 38px;
    height: 38px;
  }

  .rail-track {
    grid-auto-columns: 100%;
    gap: 8px;
  }

  .category-track {
    grid-auto-columns: 100%;
    gap: 8px;
  }

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

@media (max-width: 780px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .site-nav a + a::before {
    display: none;
  }

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

  .header-controls {
    margin-left: auto;
  }

  .language-switcher {
    width: 70px;
    height: 42px;
    padding: 3px;
  }

  .language-option {
    min-height: 34px;
    padding: 7px 8px;
  }

  .language-option.is-active {
    min-height: 0;
    padding: 0;
  }

  .theme-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 0;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 360px;
  }

  .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .header-controls {
    gap: 7px;
  }

  .language-option {
    min-height: 32px;
    padding: 7px;
  }

  .language-option.is-active {
    min-height: 0;
    padding: 0;
  }

  .theme-toggle,
  .language-switcher,
  .nav-toggle {
    height: 38px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 38px;
  }

  .language-switcher {
    width: 66px;
  }

  .hero h1 {
    font-size: 2.72rem;
  }

  .landing-hero h1 {
    font-size: 2rem;
  }

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

  .hero-panel span {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

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

  .split-media {
    min-height: 320px;
  }

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

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

  .footer-actions {
    width: 100%;
    justify-items: start;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-actions {
    width: 100%;
    justify-content: space-between;
  }

  .form-button {
    width: 100%;
  }
}
