/* inter-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  src: url('fonts/inter-v20-latin-300.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/inter-v20-latin-300.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter-v20-latin-regular.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/inter-v20-latin-regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter-v20-latin-500.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/inter-v20-latin-500.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter-v20-latin-600.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/inter-v20-latin-600.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter-v20-latin-700.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/inter-v20-latin-700.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}

/* inter-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  src: url('fonts/inter-v20-latin-800.woff2') format('woff2'), /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
       url('fonts/inter-v20-latin-800.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5+, IE 9+, Safari 3.1+, iOS 4.2+, Android Browser 2.2+ */
}



:root {
  --bg: #14181d;
  --bg-soft: #1d2229;
  --panel: #171b20;
  --panel-2: #212731;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(0, 0, 0, .08);
  --yellow: #f2d740;
  --yellow-soft: rgba(242, 215, 64, .14);
  --cream: #f6f2e9;
  --cream-2: #ede6d8;
  --text: #fbf8f1;
  --text-dark: #161616;
  --muted: rgba(255, 255, 255, .9);
  --muted-dark: rgba(22, 22, 22, .8);
  --radius: 24px;
  --radius-lg: 36px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .2);
  --display: "Inter", "Roboto Condensed", "Helvetica Neue Condensed", "Segoe UI", Arial, sans-serif;
  --body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 20px;
  top: 12px;
  z-index: 3000;
  background: var(--yellow);
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
}

.section {
  padding: 96px 0;
}

.section.light {
  background: var(--cream);
  color: var(--text-dark);
}

.section.light .eyebrow,
.section.light .section-kicker {
  color: #3e3a2d;
}

.section.light .section-title,
.section.light h2,
.section.light h3,
.section.light p,
.section.light li,
.section.light .label {
  color: var(--text-dark);
}

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

.section-copy {
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: .8;
}

.section-title {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.01;
  font-size: clamp(2.4rem, 5vw, 5rem);
  margin-top: 16px;
  padding-top: .04em;
}

.section-sub {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
}

.section.light .section-sub {
  color: var(--muted-dark);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cg fill='none' stroke='rgba(255,255,255,.05)' stroke-width='1'%3E%3Cpath d='M0 .5H180M0 60.5H180M0 120.5H180M0 179.5H180M.5 0V180M60.5 0V180M120.5 0V180M179.5 0V180'/%3E%3C/g%3E%3C/svg%3E");
}

header.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: saturate(140%) blur(14px);
  background: rgba(17, 20, 24, .8);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding-top:20px;
  padding-bottom:20px
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.brand img {
  width: 204px;
  height: auto;
}

.brand-fallback {
  display: none;
  font-family: var(--display);
  letter-spacing: .24em;
  font-size: 1rem;
  text-transform: uppercase;
}

.brand-fallback strong {
  display: block;
  letter-spacing: .3em;
}

.brand-fallback span {
  display: inline-block;
  margin-top: 5px;
  background: var(--yellow);
  color: #000;
  padding: 2px 8px;
  font-size: .72rem;
  letter-spacing: .22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, .88);
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 999px;
  transition: background .22s var(--ease), color .22s var(--ease);
  font-weight: 600;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 17px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform .22s var(--ease), background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  cursor: pointer;
  font-size: 15px;
}

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

.btn-primary {
  background: var(--yellow);
  color: #000;
}



.btn::after {
  content: "→";
  margin-left: auto;
}




.btn-primary:hover {
  background: #f1dc50;
  background:#fff;
  color:#000;
  border:1px solid #000
}

.btn-secondary {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.btn-secondary:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}


.btn-dark {
  background: #101010;
  color: #fff;
  border-color: #282828;
}

.btn-ghost-yellow {
  background: rgba(232, 209, 53, .1);
  color: var(--yellow);
  border-color: rgba(232, 209, 53, .24);
}

.btn-light {
  background: #fff;
  color: #111;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: #111;
  color: #fff;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 82px 20px auto 20px;
  z-index: 1150;
  background: #121212;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.mobile-panel a {
  display: block;
  padding: 14px 12px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .92rem;
}

.mobile-panel a:last-child {
  border-bottom: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 88px;
  background: linear-gradient(180deg, #171b20 0%, #111519 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 12%, rgba(242, 215, 64, .26), transparent 34%), radial-gradient(circle at 10% 0%, rgba(255, 255, 255, .06), transparent 28%), linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 40px;
  align-items: center;
}

.hero-copy {
  padding: 32px 0 24px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 15px;
  border-radius: 999px;
  background: none;
  color: #f2d740;
  font-size: .82rem;
  font-weight: 800;
  border: 1px solid #666;
  text-shadow: none;
  font-weight: 400;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 7vw, 5.3rem);
  line-height: .96;
  letter-spacing: .015em;
  text-transform: uppercase;
  margin-top: 18px;
  max-width: 100%;
  padding-top: .04em;
}

.hero-title em {
  font-style: normal;
  color: var(--yellow);
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .94);
  max-width: 720px;
  margin-top: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #fff;
  font-size: .88rem;
  backdrop-filter: blur(10px);
}

.hero-chip strong {
  color: var(--yellow);
  font-size: .92rem;
}

.hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  max-width: ;
}

.store-badge img {
  width: 160px;
  height: auto;
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.05fr .92fr;
  gap: 16px;
  align-items: stretch;
}

.visual-stack {
  display: grid;
  gap: 16px;
}

.visual-card,
.visual-photo,
.metric-panel,
.brand-panel {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-photo {
  min-height: 260px;
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, .08);
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1) contrast(1.04) brightness(1.03);
}

.visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .01), rgba(0, 0, 0, .14));
  pointer-events: none;
}

.metric-panel {
  background: linear-gradient(180deg, #1b1b1b, #121212);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 28px;
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.metric {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .06);
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  letter-spacing: .03em;
  color: #fff;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-size: .95rem;
  margin-top: 3px;
}

.metric-panel .label {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .76rem;
  font-weight: 700;
}

.brand-panel {
  background: linear-gradient(180deg, #fbf7ef, #efe8db);
  color: #111;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .12);
}

.brand-panel .small {
  color: rgba(17, 17, 17, .94);
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.65;
}

.brand-panel h3 {
  font-family: var(--display);
  font-size: 2.4rem;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.brand-panel img {
  width: 176px;
}

.strip {
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #101010;
}

.strip-inner {
  display: flex;
  gap: 0;
  overflow: auto;
  scrollbar-width: none;
}

.strip-inner::-webkit-scrollbar {
  display: none;
}

.strip-item {
  padding: 18px 26px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  white-space: nowrap;
  font-size: .88rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.strip-item strong {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .82rem;
}

.cards {
  display: grid;
  gap: 18px;
}

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

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

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

.panel {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel.light {
  background: #fff;
  border-color: rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
}

.panel-head {
  padding: 24px 24px 0;
}

.panel-body {
  padding: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-media {
  aspect-ratio: 16 / 10;
  background: #ddd;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
}

.service-card h3 {
  font-family: var(--display);
  font-size: 1.9rem;
  line-height: 1.01;
  text-transform: uppercase;
  letter-spacing: .02em;
  padding-top: .03em;
}

.service-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .84);
}

.service-card.light p {
  color: rgba(17, 17, 17, .82);
}

.service-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.service-list li {
  display: flex;
  gap: 10px;
  font-size: .95rem;
  align-items: flex-start;
}

.service-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: .52em;
  flex: 0 0 auto;
}

.service-card .tagline {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(242, 215, 64, .28);
  border: 1px solid rgba(17, 17, 17, .12);
  color: #111;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 800;
}

.section.light .service-card .tagline {
  color: #111;
  background: rgba(242, 215, 64, .28);
  border-color: rgba(17, 17, 17, .12);
}

.bma-wrap {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
}

.bma-photo {
  min-height: 560px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.bma-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.98) contrast(1.02) brightness(1.03);
}

.bma-panel {
  background: linear-gradient(180deg, #171717, #121212);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 32px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.bma-panel h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  line-height: 1.0;
  padding-top: .04em;
}

.bma-panel p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 1rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.feature {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.feature strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}

.feature span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: .92rem;
}

.keyword-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.keyword-row span {
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(232, 209, 53, .08);
  border: 1px solid rgba(232, 209, 53, .16);
  color: var(--yellow);
  font-size: .86rem;
}

.quickcheck {
  background: #fff;
  color: #111;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.quick-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: #faf7f1;
}

.quick-tab {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.quick-tab.active {
  background: var(--yellow);
  color: #000;
  border-color: rgba(0, 0, 0, .12);
}

.quick-body {
  padding: 28px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 24px;
  align-items: start;
}

.quick-copy h3 {
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1.02;
  text-transform: uppercase;
  padding-top: .03em;
}

.quick-copy p {
  margin-top: 12px;
  color: rgba(17, 17, 17, .82);
}

.quick-points {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.quick-points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.quick-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #111;
  margin-top: .52em;
  flex: 0 0 auto;
}

.quick-box {
  padding: 20px;
  border-radius: 22px;
  background: #111;
  color: #fff;
}

.quick-box strong {
  display: block;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.quick-box p {
  color: rgba(255, 255, 255, .82);
  margin-top: 10px;
  font-size: .95rem;
}

.sector-card {
  position: relative;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  min-height: 220px;
  overflow: hidden;
}

.sector-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 209, 53, .2), rgba(232, 209, 53, 0));
}

.sector-card h3 {
  font-family: var(--display);
  font-size: 1.75rem;
  text-transform: uppercase;
  line-height: 1.01;
  letter-spacing: .02em;
  padding-top: .03em;
}

.sector-card p {
  margin-top: 12px;
  color: rgba(17, 17, 17, .82);
}

.sector-card .mini {
  margin-top: 16px;
  font-size: .84rem;
  color: #4f4a3a;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr .85fr;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.96) contrast(1.02);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .36));
}

.gallery-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(11, 11, 11, .78);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
}

.gallery-label strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.02;
  padding-top: .02em;
}

.gallery-label span {
  display: block;
  color: rgba(255, 255, 255, .92);
  font-size: .94rem;
  margin-top: 6px;
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .03);
  color: #fff;
  font-weight: 700;
}

.social-link:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.shop-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 22px;
  align-items: stretch;
}

.shop-card {
  background: #fff;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  padding: 32px;
  color: #111;
}

.shop-card h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  line-height: .99;
  text-transform: uppercase;
  padding-top: .04em;
}

.shop-card p {
  margin-top: 16px;
  color: rgba(17, 17, 17, .82);
}

.shop-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.shop-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.shop-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: .55em;
  flex: 0 0 auto;
}

.app-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.app-row img {
  width: 160px;
  height: auto;
}

.shop-mock {
  background: linear-gradient(180deg, #1a1a1a, #121212);
  color: #fff;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  padding: 30px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
}

.phone {
  width: min(320px, 100%);
  margin: auto;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #101010;
  padding: 14px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.phone-screen {
  background: linear-gradient(180deg, #f6f2e8, #eae3d5);
  border-radius: 24px;
  padding: 22px;
  color: #111;
  min-height: 520px;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  color: rgba(17, 17, 17, .72);
}

.phone-hero {
  margin-top: 18px;
  padding: 18px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, .08);
}

.phone-hero h3 {
  font-family: var(--display);
  font-size: 2rem;
  line-height: .92;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.product-tile {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  padding: 14px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-tile strong {
  font-size: .96rem;
  line-height: 1.2;
}

.product-tile span {
  color: rgba(17, 17, 17, .72);
  font-size: .84rem;
}

.product-tile .price {
  color: #111;
  font-weight: 700;
}

.career-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 22px;
  align-items: stretch;
}

.career-card {
  background: linear-gradient(180deg, #191919, #121212);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  padding: 32px;
}

.career-card h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  line-height: 1.0;
  text-transform: uppercase;
  padding-top: .04em;
}

.career-card p {
  margin-top: 14px;
  color: var(--muted);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 35px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  color: #fff;
  font-size: .9rem;
}

.chip.yellow {
  background: rgba(232, 209, 53, .14);
  border-color: rgba(232, 209, 53, .26);
  color: var(--yellow);
}

.brand-panel .chip.yellow,
.section.light .chip.yellow {
  color: #111;
  background: rgba(242, 215, 64, .28);
  border-color: rgba(17, 17, 17, .12);
  font-weight: 700;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.partner-tile {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-tile strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .96rem;
}

.partner-tile span {
  display: block;
  color: rgba(255, 255, 255, .78);
  margin-top: 6px;
  font-size: .86rem;
}

.career-side {
  background: #fff;
  color: #111;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  padding: 32px;
}

.career-side h3 {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.01;
  text-transform: uppercase;
  padding-top: .03em;
}

.career-side p {
  color: rgba(17, 17, 17, .82);
  margin-top: 12px;
}

.career-side ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.career-side li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.career-side li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--yellow);
  margin-top: .55em;
  flex: 0 0 auto;
}

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

.location-card {
  background: #fff;
  color: #111;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  padding: 26px;
}

.location-card h3 {
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1.01;
  text-transform: uppercase;
  padding-top: .03em;
}

.location-role {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(232, 209, 53, .22);
  color: #3f3811;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.location-lines {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  color: rgba(17, 17, 17, .78);
}

.map-shell {
  margin-top: 22px;
  background: #fff;
  color: #111;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  overflow: hidden;
}

.map-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  background: #faf7f1;
}

.map-tab {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}

.map-tab.active {
  background: var(--yellow);
  color: #000;
}

.map-body {
  padding: 24px;
}

.map-placeholder {
  min-height: 420px;
  border-radius: 26px;
  border: 1px dashed rgba(0, 0, 0, .16);
  background: linear-gradient(180deg, #f4f0e7, #ebe4d7);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px;
}

.map-placeholder .inner {
  max-width: 620px;
}

.map-placeholder h3 {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.01;
  text-transform: uppercase;
  padding-top: .03em;
}

.map-placeholder p {
  margin-top: 12px;
  color: rgba(17, 17, 17, .82);
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 26px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 22px;
}

.faq-intro {
  background: linear-gradient(180deg, #191919, #121212);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 30px;
  box-shadow: var(--shadow);
  padding: 32px;
}

.faq-intro h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.8vw, 4rem);
  text-transform: uppercase;
  line-height: 1.0;
  padding-top: .04em;
}

.faq-intro p {
  margin-top: 14px;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #171717;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-btn {
  width: 100%;
  border: 0;
  background: none;
  color: #fff;
  text-align: left;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  cursor: pointer;
}

.faq-btn strong {
  font-size: 1.06rem;
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s var(--ease);
}

.faq-answer .inner {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, .82);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 22px;
}

.contact-panel {
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  padding: 32px;
}

.contact-panel h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.0;
  text-transform: uppercase;
  padding-top: .04em;
}

.contact-panel p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .9);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-box {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.contact-box small {
  display: block;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  font-size: .75rem;
}

.contact-box strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-form {
  background: #fff;
  color: #111;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .08);
  padding: 32px;
}

.contact-form h3 {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1.01;
  text-transform: uppercase;
  padding-top: .03em;
}

.form-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.input,
.select,
.textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  color: #111;
  border-radius: 16px;
  padding: 15px 16px;
  outline: none;
}

.input::placeholder,
.textarea::placeholder {
  color: #666;
  opacity: 1;
}

.contact-form .note a {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
}

.input:focus,
.select:focus,
.textarea:focus {
  border-color: #111;
}

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

.note {
  font-size: .9rem;
  color: rgba(17, 17, 17, .82);
}

.form-success {
  display: none;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(232, 209, 53, .18);
  color: #111;
  border: 1px solid rgba(168, 148, 22, .16);
  margin-top: 14px;
}

.form-error {
  display: none;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(180, 53, 53, .14);
  color: #4a1414;
  border: 1px solid rgba(180, 53, 53, .26);
  margin-top: 14px;
}

footer.footer {
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: #0d0d0d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 22px;
  padding: 48px 0;
}

.footer-col {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
}

.footer-col h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.footer-col p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .8);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-links a {
  color: #fff;
  opacity: .86;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0 28px;
  color: rgba(255, 255, 255, .68);
  font-size: .92rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1600;
  background: rgba(14, 14, 14, .96);
  border: 1px solid rgba(255, 255, 255, .08);
  border-left: 4px solid var(--yellow);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .38);
  padding: 22px;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.cookie-banner h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.cookie-banner p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .84);
  max-width: 820px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.float-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: #000;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .28);
}

.float-call svg {
  width: 26px;
  height: 26px;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .btn,
  .faq-answer {
    transition: none !important;
  }
}

@media (max-width: 1120px) {

  .hero-grid,
  .bma-wrap,
  .shop-grid,
  .career-grid,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .quick-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {

  .nav-links,
  .nav-actions .btn-secondary {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mobile-panel.open {
    display: block;
  }

  .brand img {
    width: 180px;
  }

  .hero {
    padding-top: 22px;
  }

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

  .cards-2,
  .cards-3,
  .cards-4,
  .locations-grid,
  .partner-grid,
  .metric-row,
  .feature-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cookie-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1380px);
  }

  .section {
    padding: 74px 0;
  }

  .hero-title {
    max-width: 11ch;
  }

  .hero-actions,
  .social-row,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges,
  .app-row {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }
  
  .nav-actions .btn {
    font-size: 12px !important;
  }

  .store-badge img,
  .app-row img {
    width: 160px;
    max-width: 100%;
    height: auto;
  }

  .float-call {
    right: 14px;
    bottom: 14px;
  }



  .section-copy {
    padding:25px !important
  }
   .panel-body, .quick-body, .sector-card, .shop-card, .career-side, .location-card, .map-body, .faq-intro, .contact-form, .contact-panel, .footer-col, .career-card, .bma-panel, .shop-mock, .quick-box {
    padding:50px 35px !important
  }
}

.brand-panel {
  padding:50px 30px
}

.panel-body, .quick-body, .sector-card, .shop-card, .career-side, .location-card, .map-body, .faq-intro, .contact-form, .contact-panel, .footer-col, .career-card, .bma-panel, .shop-mock, .quick-box {
  padding:70px 50px
}

.bma-panel p, .feature-grid, .keyword-row, .chip-row {
  padding-bottom:25px
}

p#quickCtaText { color:#fff}
.hero-actions { margin-top:25px !important}

h2 {
  font-size:clamp(2.4rem, 3vw, 3rem) !important;
  text-transform: none !important;
  margin-bottom:25px;
  line-height: 1.1 !important;
  margin-top:15px;
  letter-spacing:0px !important
}
h3 {
  text-transform: none !important;
  font-size: 1.5rem !important;
  line-height: 1.25 !important;
  letter-spacing: 0px !important;
}

.section-copy {
  padding-bottom:50px
}

.service-card .tagline {
  margin-bottom:25px
}

