/* ============================================================
   QUICK ARC — MASTER STYLESHEET
   American Design · Built for the Field
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Manrope:wght@400;500;600;700&display=swap');

/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-mid:    #152333;
  --navy-light:  #1C2E42;
  --navy-border: #243550;
  --gold:        #F5A520;
  --gold-hover:  #FFB84D;
  --gold-dim:    #C8851A;
  --cream:       #F4EEE4;
  --cream-dark:  #E8E0D3;
  --white:       #FFFFFF;
  --mid:         #8A9BAB;
  --mid-dark:    #5A7080;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Manrope', sans-serif;

  --max-w: 1200px;
  --nav-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── 2. RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── 3. TYPOGRAPHY ────────────────────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  line-height: 1.75;
}

.body-md {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
}

.label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── 4. LAYOUT ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

.section--lg {
  padding: 10rem 0;
}

.section--sm {
  padding: 4rem 0;
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,165,32,0.35);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,27,42,0.4);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── 6. NAV ───────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 1px 0 var(--navy-border), 0 4px 32px rgba(0,0,0,0.4);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-right: auto; /* pushes toggle + lang-switcher + links to the right */
}

.nav__logo-img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 1rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link--cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.nav__link--cta:hover {
  background: var(--gold-hover);
  color: var(--navy) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  background-color: var(--navy);
  background-size: cover;
  background-position: center 20%;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.82) 100%
  );
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,165,32,0.05) 0%, transparent 60%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 0.88;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.15); }
}

/* ── 8. PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(245,165,32,0.06) 0%, transparent 60%);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  color: var(--gold);
  margin-bottom: 1rem;
}

.page-hero__headline {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.page-hero__sub {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ── 9. INTRO SECTION ─────────────────────────────────────── */
.intro {
  background: var(--navy);
  padding: 7rem 0;
}

.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.intro__label {
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.intro__headline {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.intro__body {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.intro__stats {
  display: flex;
  gap: 2.5rem;
}

.intro__stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.intro__stat-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  line-height: 1;
  color: var(--white);
}

.intro__stat-unit {
  font-size: 1.4rem;
  color: var(--gold);
}

.intro__stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
}

.intro__visual {
  position: relative;
}

.intro__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
}

.intro__img-accent {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--gold);
  border-radius: 4px;
  z-index: -1;
}

/* ── 10. PRODUCT PREVIEW CARDS ────────────────────────────── */
.products-preview {
  background: var(--cream);
  padding: 7rem 0;
}

.section-header {
  margin-bottom: 4rem;
}

.section-header__label {
  color: var(--gold-dim);
  margin-bottom: 0.75rem;
}

.section-header__headline {
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header__body {
  color: var(--mid-dark);
  max-width: 560px;
  font-size: 1.05rem;
}

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(13,27,42,0.15);
}

.product-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.product-card__body {
  padding: 2rem;
}

.product-card__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 0.75rem;
}

.product-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.product-card__desc {
  color: var(--mid-dark);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-card__specs {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream-dark);
}

.product-card__spec {
  display: flex;
  flex-direction: column;
}

.product-card__spec-val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  line-height: 1;
}

.product-card__spec-val span {
  font-size: 0.9rem;
  color: var(--gold-dim);
}

.product-card__spec-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-top: 0.2rem;
}

.product-card__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, gap 0.2s;
}

.product-card__link:hover {
  color: var(--gold-dim);
  gap: 0.9rem;
}

.product-card__link::after {
  content: '→';
}

/* ── 11. FEATURE GRID ─────────────────────────────────────── */
.features {
  background: var(--navy);
  padding: 7rem 0;
}

.features .section-header__headline {
  color: var(--white);
}

.features .section-header__label {
  color: var(--gold);
}

.features .section-header__body {
  color: rgba(255,255,255,0.55);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--navy-border);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  overflow: hidden;
}

.feature-item {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  position: relative;
}

.feature-item:hover {
  background: var(--navy-light);
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(245,165,32,0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.feature-item__num {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3.5rem;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}

.feature-item__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.feature-item__desc {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ── 12. TESTIMONIALS ─────────────────────────────────────── */
.testimonials {
  background: var(--cream-dark);
  padding: 7rem 0;
}

.testimonials .section-header__label {
  color: var(--gold-dim);
}

.testimonials .section-header__headline {
  color: var(--navy);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 4px;
  padding: 2.25rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.15;
}

.testimonial-card__quote {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-dark);
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--navy);
}

.testimonial-card__title {
  font-size: 0.8rem;
  color: var(--mid-dark);
  margin-top: 0.1rem;
}

/* ── 13. CTA STRIP ────────────────────────────────────────── */
.cta-strip {
  background: var(--gold);
  padding: 5rem 0;
}

.cta-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-strip__headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--navy);
}

.cta-strip__sub {
  color: rgba(13,27,42,0.65);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

.cta-strip__actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── 14. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 5rem 0 2.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer__logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
  max-width: 260px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer__link:hover {
  color: var(--white);
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1rem;
}

.footer__contact-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__contact-val {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.footer__bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--mid);
}

.footer__bottom-link {
  font-size: 0.8rem;
  color: var(--mid);
  transition: color 0.2s;
}

.footer__bottom-link:hover {
  color: var(--gold);
}

/* ── 15. PRODUCT PAGE SPECIFIC ────────────────────────────── */
.product-detail {
  padding: 7rem 0;
}

.product-detail:nth-child(even) {
  background: var(--cream);
}

.product-detail:nth-child(odd) {
  background: var(--white);
}

.product-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.product-detail__inner--reverse {
  direction: rtl;
}

.product-detail__inner--reverse > * {
  direction: ltr;
}

.product-detail__media {
  position: relative;
}

.product-detail__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.product-detail__img-sm {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  border: 6px solid var(--white);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-detail__tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.product-detail__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 4rem);
  text-transform: uppercase;
  color: var(--navy);
  line-height: 0.95;
  margin-bottom: 0.5rem;
}

.product-detail__subtitle {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--mid-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.product-detail__desc {
  font-size: 1rem;
  color: var(--mid-dark);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.product-detail__features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--navy);
}

.product-detail__feature::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.specs-table {
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 2rem;
}

.specs-table__header {
  padding: 1rem 1.5rem;
  background: var(--navy-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.specs-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
  border-top: 1px solid var(--navy-border);
}

.specs-table__key {
  font-size: 0.85rem;
  color: var(--mid);
  font-weight: 500;
}

.specs-table__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

/* ── 16. ABOUT PAGE SPECIFIC ──────────────────────────────── */
.about-story {
  padding: 7rem 0;
  background: var(--cream);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-story__img-wrap {
  position: relative;
  padding-bottom: 2rem;
  padding-right: 2rem;
}

.about-story__img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
}

.about-story__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 4px;
  z-index: -1;
}

.about-story__label {
  color: var(--gold-dim);
  margin-bottom: 1rem;
}

.about-story__headline {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-story__body {
  color: var(--mid-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ── 17. TEAM SECTION ─────────────────────────────────────── */
.team {
  background: var(--navy);
  padding: 7rem 0;
}

.team .section-header__label { color: var(--gold); }
.team .section-header__headline { color: var(--white); }
.team .section-header__body { color: rgba(255,255,255,0.55); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.team-card {
  background: var(--navy-mid);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  transition: transform 0.35s var(--ease-out), border-color 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.team-card__img-wrap {
  position: relative;
  padding: 2rem 2rem 0;
}

.team-card__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  margin: 0 auto;
  display: block;
}

.team-card__body {
  padding: 1.5rem 2rem 2rem;
  text-align: center;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.team-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.team-card__bio {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

.team-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.team-card__link:hover {
  color: var(--gold);
}

/* ── 18. CONTACT PAGE SPECIFIC ────────────────────────────── */
.contact-section {
  padding: 7rem 0;
  background: var(--cream);
}

.contact-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info__item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.3rem;
}

.contact-info__val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  line-height: 1.2;
}

.contact-info__val--sm {
  font-size: 1rem;
  font-weight: 600;
}

/* ── 19. CONTACT FORM ─────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-dark);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,165,32,0.12);
}

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

/* ── 20. GALLERY / MEDIA GRID ─────────────────────────────── */
.media-section {
  background: var(--navy);
  padding: 7rem 0;
}

.media-section .section-header__headline { color: var(--white); }
.media-section .section-header__label { color: var(--gold); }
.media-section .section-header__body { color: rgba(255,255,255,0.55); }

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.media-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.media-grid__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.media-grid__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.media-grid__item:first-child .media-grid__img {
  min-height: 400px;
}

.media-grid__item:hover .media-grid__img {
  transform: scale(1.05);
}

/* ── 21. DIVIDER ──────────────────────────────────────────── */
.divider {
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover), var(--gold));
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ── 22. SCROLL REVEAL ANIMATION ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── 23. UTILITIES ────────────────────────────────────────── */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-mid { color: var(--mid-dark); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── 24. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .intro__visual { display: none; }
  .intro__stats { flex-wrap: wrap; gap: 2rem; }

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

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

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

  .product-detail__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .product-detail__inner--reverse { direction: ltr; }

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
    border-top: 1px solid var(--navy-border);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__link {
    font-size: 1.1rem;
    padding: 0.6rem 0;
  }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    padding: 0.65rem 1.5rem;
    align-self: flex-start;
  }

  .nav__toggle { display: flex; }

  .hero {
    padding-bottom: 5rem;
    align-items: flex-end;
  }

  .hero__scroll { display: none; }

  .section, .section--lg {
    padding: 5rem 0;
  }

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

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

  .cta-strip__inner {
    flex-direction: column;
    text-align: center;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-story__inner,
  .contact-section__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-story__img-wrap { display: none; }

  .media-grid {
    grid-template-columns: 1fr 1fr;
  }
  .media-grid__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .form-group--half {
    grid-template-columns: 1fr;
  }

  .product-detail__img-sm { display: none; }
}

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

  .intro__stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

  .media-grid__item:first-child {
    grid-column: span 1;
  }
}

/* ── LANGUAGE SWITCHER ────────────────────────────────────── */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.lang-switcher__btn:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}

.lang-switcher__arrow {
  font-size: 0.55rem;
  opacity: 0.55;
  transition: transform 0.2s var(--ease-out);
  line-height: 1;
}

.lang-switcher.open .lang-switcher__arrow {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 300;
  min-width: 155px;
  background: var(--navy);
  border: 1px solid var(--navy-border);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  padding: 0.3rem 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.lang-switcher.open .lang-switcher__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.lang-switcher__menu button {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  padding: 0.55rem 1rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

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

.lang-switcher__menu button.active {
  color: var(--gold);
}

/* On mobile the switcher sits in the nav bar (always visible), keep it compact */
@media (max-width: 768px) {
  .lang-switcher__btn {
    padding: 0.28rem 0.55rem;
    font-size: 0.72rem;
  }
}
