/* ==========================================================
   VELTEX & HIDE — Complete Stylesheet
   Palette: #29241F · #937A4B · #4B4239 · #8E5D44 · #EFEDE3 · #FFFFFF
   ========================================================== */

/* ---- TOKENS ---- */
:root {
  --c-deepest: #29241F;
  /* darkest — main dark bg */
  --c-mid: #4B4239;
  /* medium dark sections */
  --c-copper: #8E5D44;
  /* copper rust accent */
  --c-gold: #937A4B;
  /* warm gold / tan primary accent */
  --c-gold-lt: #b89a68;
  /* lighter gold for hover */
  --c-gold-dk: #6b5630;
  /* darker gold for press */
  --c-cream: #EFEDE3;
  /* parchment — light bg */
  --c-cream-dk: #e0ddd2;
  /* slightly darker cream */
  --c-white: #FFFFFF;
  --c-text-dk: #29241F;
  /* body text on light */
  --c-text-md: #4B4239;
  /* secondary text on light */
  --c-text-lt: #EFEDE3;
  /* body text on dark */
  --c-muted-lt: #c9b89e;
  /* muted text on dark */
  --c-muted-dk: #7a6a58;
  /* muted text on light */

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 72px;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;

  --t-fast: 0.2s ease;
  --t-med: 0.35s ease;
  --t-slow: 0.65s cubic-bezier(0.22, 1, 0.36, 1);

  --shadow: 0 8px 36px rgba(41, 36, 31, 0.22);
  --shadow-lg: 0 20px 60px rgba(41, 36, 31, 0.30);
}

/* ---- RESET ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--c-deepest);
  color: var(--c-text-lt);
  font-family: var(--f-sans);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* ---- SECTION BACKGROUNDS ---- */
.section-light {
  background: var(--c-cream);
  color: var(--c-text-dk);
}

.section-dark {
  background: var(--c-deepest);
}

.section-mid {
  background: var(--c-mid);
}

/* ---- CONTAINER ---- */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ---- TYPOGRAPHY HELPERS ---- */
.eyebrow {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.75rem;
}

.eyebrow.light {
  color: var(--c-gold-lt);
}

.eyebrow.center {
  text-align: center;
}

.section-h2 {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--c-deepest);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}

.section-h2.light {
  color: var(--c-white);
}

.section-sub {
  font-size: 1rem;
  color: var(--c-muted-dk);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  text-align: center;
}

.section-sub.light {
  color: var(--c-muted-lt);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.body-text {
  font-size: 0.95rem;
  color: var(--c-muted-dk);
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-gold);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 2.4rem;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-gold:hover {
  background: var(--c-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(147, 122, 75, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.92rem 2.2rem;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), color var(--t-fast), transform var(--t-fast);
}

.btn-outline:hover {
  border-color: var(--c-gold-lt);
  color: var(--c-gold-lt);
  transform: translateY(-2px);
}

.btn-sm-gold {
  display: inline-flex;
  align-items: center;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  border-radius: var(--r-sm);
  transition: background var(--t-fast), transform var(--t-fast);
}

.btn-sm-gold:hover {
  background: var(--c-gold-lt);
  transform: translateY(-1px);
}

/* ---- REVEAL ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.d1 {
  transition-delay: 0.12s;
}

.d2 {
  transition-delay: 0.22s;
}

.d3 {
  transition-delay: 0.32s;
}

.d4 {
  transition-delay: 0.42s;
}

/* ================================================================
   NEW PRESTIGE NAVBAR
   ================================================================ */
.prestige-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--t-med), box-shadow var(--t-med), padding var(--t-med);
  padding: 0.5rem 0;
}

.prestige-navbar.scrolled {
  background: rgba(41, 36, 31, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  padding: 0;
  border-bottom: 1px solid rgba(147, 122, 75, 0.15);
}

.prestige-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.prestige-logo {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--c-white);
  text-transform: uppercase;
  position: relative;
  z-index: 1001;
  white-space: nowrap;
}

.prestige-logo-amp {
  color: var(--c-white);
  font-weight: 400;
  font-style: italic;
}

/* Desktop Nav */
.prestige-desktop-nav {
  display: flex;
  align-items: end;
}

.prestige-nav-list {
  display: flex;
  gap: 1.5rem;
  align-items: end;
}

.prestige-nav-link {
  font-family: var(--f-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(239, 237, 227, 0.8);
  text-transform: uppercase;
  padding: 0.5rem;
  position: relative;
  white-space: nowrap;
  transition: color var(--t-fast);
}

.prestige-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c-gold);
  transition: width var(--t-med) ease, left var(--t-med) ease;
}

.prestige-nav-link:hover,
.prestige-nav-link.active {
  color: var(--c-white);
}

.prestige-nav-link:hover::before,
.prestige-nav-link.active::before {
  width: 100%;
  left: 0;
}

/* Actions */
.prestige-nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  z-index: 1001;
}

.prestige-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-gold);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  border: 1px solid transparent;
}

.prestige-quote-btn:hover {
  background: transparent;
  border-color: var(--c-gold);
  color: var(--c-gold);
}

/* Burger */
.prestige-burger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.p-line {
  width: 100%;
  height: 2px;
  background-color: var(--c-white);
  transition: all 0.3s linear;
  transform-origin: 1px;
}

.prestige-burger.open .p-line-1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.prestige-burger.open .p-line-2 {
  opacity: 0;
}

.prestige-burger.open .p-line-3 {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* Fullscreen Mobile Menu */
.prestige-mobile-menu {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(41, 36, 31, 0.99);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.prestige-mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.p-mob-menu-inner {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.prestige-mobile-menu.open .p-mob-menu-inner {
  transform: translateY(0);
}

.p-mob-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.p-mob-link {
  font-family: var(--f-serif);
  font-size: 2.2rem;
  color: rgba(239, 237, 227, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color var(--t-fast), transform var(--t-fast);
  display: inline-block;
}

.p-mob-link:hover,
.p-mob-link.active {
  color: var(--c-gold);
  transform: scale(1.05);
}

.p-mob-footer {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.p-mob-quote {
  width: 100%;
}

@media (max-width: 992px) {

  .prestige-desktop-nav,
  .prestige-nav-actions .prestige-quote-btn {
    display: none;
  }

  .prestige-burger {
    display: flex;
  }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  filter: brightness(0.48) saturate(0.85);
  transform: scale(1.05);
  transition: transform 5s ease;
}

.hero:is(:hover) .hero-img {
  transform: scale(1.02);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(41, 36, 31, 0.82) 0%, rgba(75, 66, 57, 0.38) 55%, rgba(41, 36, 31, 0.70) 100%);
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2.5rem;
  padding-top: var(--nav-h);
}

.hero-tag {
  display: block;
  font-family: var(--f-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--c-gold-lt);
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--f-serif);
  font-weight: 550;
  font-size: 5rem;
  color: var(--c-white);
  line-height: 7.0rem;
  margin-bottom: 2.75rem;
  letter-spacing: -0.01em;
  text-shadow: 0 6px 40px rgba(41, 36, 31, 0.5);
}

.home-sub {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 7.5rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.0;
  margin-bottom: 2.75rem;
  letter-spacing: -0.05em;
  text-shadow: 0 6px 40px rgba(41, 36, 31, 0.5);
}

.home-sub em {
  font-style: italic;
  color: var(--c-cream);
}

.headline-accent {
  color: var(--c-gold-lt);
  line-height: 1.0rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(239, 237, 227, 0.78);
  max-width: 540px;
  margin-bottom: 2.75rem;
  font-weight: 300;
  line-height: 1.75;
}

.br-desk {
  display: inline;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-track {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  color: rgba(239, 237, 227, 0.45);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scaleY(1);
  }

  50% {
    opacity: 0.25;
    transform: scaleY(0.55);
  }
}

/* ================================================================
   ABOUT US
   ================================================================ */
.about-section {
  padding: 8rem 0 6rem;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 7rem;
}

.about-text .section-h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.about-text .eyebrow {
  color: var(--c-copper);
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

.about-stats {
  position: absolute;
  bottom: -2.5rem;
  left: -2rem;
  display: flex;
  gap: 0;
  background: var(--c-deepest);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(147, 122, 75, 0.3);
}

.stat-pill {
  padding: 1.25rem 1.75rem;
  text-align: center;
  border-right: 1px solid rgba(147, 122, 75, 0.2);
}

.stat-pill:last-child {
  border-right: none;
}

.stat-n {
  display: block;
  font-family: var(--f-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-gold-lt);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-l {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: var(--c-muted-lt);
  text-transform: uppercase;
}

/* Products label */
.products-label {
  text-align: center;
  margin-bottom: 2.5rem;
}

.sub-h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  font-weight: 600;
  color: var(--c-deepest);
  margin-bottom: 0;
}

.sub-h3.center {
  text-align: center;
}

.products-label .eyebrow {
  color: var(--c-gold-dk);
}

/* Product cards row */
.products-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.prod-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(147, 122, 75, 0.15);
  box-shadow: 0 4px 20px rgba(41, 36, 31, 0.08);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.prod-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 50px rgba(41, 36, 31, 0.18);
  border-color: rgba(147, 122, 75, 0.4);
}

.prod-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.prod-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.prod-card:hover .prod-img {
  transform: scale(1.08);
}

.prod-hover {
  position: absolute;
  inset: 0;
  background: rgba(41, 36, 31, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-med);
}

.prod-card:hover .prod-hover {
  opacity: 1;
}

.prod-hover .btn-sm-gold {
  transform: translateY(8px);
  transition: background var(--t-fast), transform var(--t-med);
}

.prod-card:hover .prod-hover .btn-sm-gold {
  transform: translateY(0);
}

.prod-info {
  padding: 1.4rem 1.5rem;
}

.prod-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-copper);
}

.prod-name {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-deepest);
  margin: 0.35rem 0 0.55rem;
}

.prod-desc {
  font-size: 0.83rem;
  color: var(--c-muted-dk);
  line-height: 1.65;
  margin-bottom: 0.9rem;
}

.prod-link {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--c-gold-dk);
  letter-spacing: 0.04em;
  transition: color var(--t-fast), letter-spacing var(--t-fast);
}

.prod-link:hover {
  color: var(--c-copper);
  letter-spacing: 0.08em;
}

/* ================================================================
   STRENGTHS
   ================================================================ */
.strengths-section {
  padding: 8rem 0 5rem;
}

.strengths-section .section-h2 {
  color: var(--c-white);
}

.strengths-section .eyebrow.light {
  color: var(--c-gold-lt);
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.str-card {
  background: var(--c-mid);
  border: 1px solid rgba(147, 122, 75, 0.18);
  border-radius: var(--r-md);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}

.str-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(147, 122, 75, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med);
}

.str-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-copper), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}

.str-card:hover {
  transform: translateY(-5px);
  border-color: rgba(147, 122, 75, 0.45);
  background: #523d30;
}

.str-card:hover::before {
  transform: scaleX(1);
}

.str-card:hover::after {
  opacity: 1;
}

.str-icon {
  width: 44px;
  height: 44px;
  color: var(--c-gold-lt);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.str-icon svg {
  width: 100%;
  height: 100%;
}

.str-title {
  font-family: var(--f-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.65rem;
  position: relative;
  z-index: 1;
}

.str-desc {
  font-size: 0.86rem;
  color: var(--c-muted-lt);
  line-height: 1.72;
  position: relative;
  z-index: 1;
}

/* Services strip */
.services-strip {
  background: var(--c-mid);
  border: 1px solid rgba(147, 122, 75, 0.22);
  border-radius: var(--r-md);
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.serv-item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2.25rem;
  transition: background var(--t-fast);
}

.serv-item:hover {
  background: rgba(147, 122, 75, 0.08);
}

.serv-icon {
  font-size: 1rem;
  color: var(--c-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.serv-title {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: 0.5rem;
}

.serv-desc {
  font-size: 0.84rem;
  color: var(--c-muted-lt);
  line-height: 1.7;
}

.serv-divider {
  width: 1px;
  background: rgba(147, 122, 75, 0.2);
  margin: 1.5rem 0;
}

/* ================================================================
   TARGET MARKETS
   ================================================================ */
.target-section {
  padding: 8rem 0;
}

.target-section .section-h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.target-section .eyebrow {
  color: var(--c-copper);
}

.target-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Market cards */
.market-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--c-white);
  border: 1px solid rgba(147, 122, 75, 0.18);
  border-radius: var(--r-md);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 3px 14px rgba(41, 36, 31, 0.07);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}

.market-card:last-child {
  margin-bottom: 0;
}

.market-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(41, 36, 31, 0.13);
  border-color: rgba(142, 93, 68, 0.4);
}

.market-flag {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--c-gold);
}

.market-flag svg {
  width: 100%;
  height: 100%;
}

.market-name {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--c-deepest);
  margin-bottom: 0.4rem;
}

.market-desc {
  font-size: 0.85rem;
  color: var(--c-muted-dk);
  line-height: 1.68;
}

/* Business model */
.model-title {
  font-family: var(--f-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--c-deepest);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(147, 122, 75, 0.25);
}

.model-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.model-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--c-white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--c-gold);
  box-shadow: 0 3px 14px rgba(41, 36, 31, 0.06);
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.model-item:hover {
  border-left-color: var(--c-copper);
  transform: translateX(4px);
  box-shadow: 0 6px 24px rgba(41, 36, 31, 0.12);
}

.model-num {
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.8rem;
}

.model-name {
  font-family: var(--f-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-deepest);
  margin-bottom: 0.35rem;
}

.model-desc {
  font-size: 0.84rem;
  color: var(--c-muted-dk);
  line-height: 1.68;
}

/* ================================================================
   VISION & MISSION
   ================================================================ */
.vision-section {
  padding: 8rem 0 5rem;
}

.vision-header {
  text-align: center;
  margin-bottom: 4rem;
}

.vision-header .section-h2 {
  color: var(--c-white);
}

.vision-header .eyebrow {
  color: var(--c-gold-lt);
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4.5rem;
}

.vm-card {
  border-radius: var(--r-md);
  padding: 2.5rem;
  border: 1px solid rgba(147, 122, 75, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-med), border-color var(--t-med);
}

.vm-card:hover {
  transform: translateY(-4px);
  border-color: rgba(147, 122, 75, 0.5);
}

.vision-card {
  background: rgba(147, 122, 75, 0.1);
}

.mission-card {
  background: rgba(75, 66, 57, 0.6);
}

.sustain-card {
  background: rgba(142, 93, 68, 0.15);
}

.vm-label {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold-lt);
  margin-bottom: 1.25rem;
}

.vm-quote {
  font-family: var(--f-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--c-cream);
  line-height: 1.72;
  quotes: "\201C" "\201D";
}

.vm-quote::before {
  content: open-quote;
  font-size: 2rem;
  color: var(--c-gold);
  line-height: 0;
  vertical-align: -0.5rem;
  margin-right: 0.2rem;
}

.vm-deco {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at bottom right, rgba(147, 122, 75, 0.2), transparent 70%);
}

.mission-pts {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.mission-pts li {
  font-size: 0.9rem;
  color: var(--c-cream);
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.65;
}

.mission-pts li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-gold-lt);
  font-weight: 700;
}

.sustain-text {
  font-size: 0.9rem;
  color: var(--c-cream);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.sustain-pills {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.s-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(147, 122, 75, 0.15);
  border: 1px solid rgba(147, 122, 75, 0.3);
  color: var(--c-gold-lt);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
}

/* USP strip */
.usp-strip {
  background: var(--c-deepest);
  border: 1px solid rgba(147, 122, 75, 0.2);
  border-radius: var(--r-md);
  padding: 2.5rem;
}

.usp-head {
  margin-bottom: 1.75rem;
  display: block;
}

.usp-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--c-muted-lt);
  line-height: 1.55;
  padding: 1rem;
  border-radius: var(--r-sm);
  background: rgba(147, 122, 75, 0.06);
  border: 1px solid rgba(147, 122, 75, 0.14);
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}

.usp-item:hover {
  border-color: rgba(147, 122, 75, 0.35);
  background: rgba(147, 122, 75, 0.1);
  color: var(--c-cream);
}

.usp-icon {
  color: var(--c-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ================================================================
   CONTACTS
   ================================================================ */
.contact-section {
  padding: 8rem 0;
}

.contact-section .section-h2 {
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}

.contact-section .eyebrow {
  color: var(--c-copper);
}

.contact-section .section-sub {
  color: var(--c-muted-dk);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 3.5rem;
  align-items: start;
}

/* Info panel */
.contact-panel {
  background: var(--c-deepest);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(147, 122, 75, 0.25);
}

.cp-block {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(147, 122, 75, 0.14);
}

.cp-block:last-of-type {
  border-bottom: none;
}

.cp-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.35rem;
}

.cp-value {
  font-size: 0.92rem;
  color: var(--c-cream);
  line-height: 1.5;
  transition: color var(--t-fast);
  display: block;
}

a.cp-value:hover {
  color: var(--c-gold-lt);
}

.cp-promises {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(147, 122, 75, 0.14);
}

.cp-promise {
  font-size: 0.83rem;
  color: var(--c-muted-lt);
  margin-bottom: 0.45rem;
}

.cp-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.75) saturate(0.8);
  transition: filter var(--t-med);
}

.contact-panel:hover .cp-img {
  filter: brightness(0.65) saturate(0.9);
}

/* Form */
.contact-form {
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 2.75rem;
  border: 1px solid rgba(147, 122, 75, 0.2);
  box-shadow: var(--shadow);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.flabel {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted-dk);
}

.finput {
  background: var(--c-cream);
  border: 1.5px solid rgba(147, 122, 75, 0.25);
  border-radius: var(--r-sm);
  padding: 0.85rem 1rem;
  color: var(--c-deepest);
  font-family: var(--f-sans);
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.finput::placeholder {
  color: var(--c-muted-dk);
  opacity: 0.6;
}

.finput:focus {
  border-color: var(--c-gold);
  background: var(--c-white);
  box-shadow: 0 0 0 3px rgba(147, 122, 75, 0.14);
}

.finput:invalid:not(:placeholder-shown) {
  border-color: rgba(180, 60, 60, 0.55);
}

.fselect {
  appearance: none;
  cursor: pointer;
}

option {
  background: var(--c-white);
  color: var(--c-deepest);
}

/* Multi-choice Chips */
.f-multi-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.f-chip {
  cursor: pointer;
  position: relative;
}

.f-chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.f-chip span {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  background: var(--c-cream);
  border: 1.5px solid rgba(147, 122, 75, 0.25);
  border-radius: 100px;
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-deepest);
  transition: all var(--t-fast);
  user-select: none;
}

.f-chip:hover span {
  border-color: var(--c-gold);
  background: var(--c-white);
}

.f-chip input:checked+span {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
  box-shadow: 0 4px 15px rgba(147, 122, 75, 0.25);
}

.ftextarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.62;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--c-gold);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.1rem;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-submit:hover {
  background: var(--c-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(147, 122, 75, 0.38);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-arrow {
  font-size: 1.1rem;
  transition: transform var(--t-fast);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(5px);
}

.form-ok {
  display: none;
  margin-top: 1.1rem;
  padding: 1rem 1.25rem;
  background: rgba(72, 160, 88, 0.1);
  border: 1px solid rgba(72, 160, 88, 0.3);
  border-radius: var(--r-sm);
  color: #4a9856;
  font-size: 0.87rem;
  text-align: center;
  font-weight: 500;
}

.form-ok.show {
  display: block;
}

/* ================================================================
   FLOATING CTA
   ================================================================ */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--c-gold);
  color: var(--c-white);
  font-family: var(--f-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  z-index: 900;
  box-shadow: 0 6px 28px rgba(41, 36, 31, 0.38);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: background var(--t-fast), transform var(--t-fast), opacity 0.4s ease;
}

.float-cta.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-cta:hover {
  background: var(--c-gold-lt);
  transform: translateY(-3px);
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--c-deepest);
  border-top: 1px solid rgba(147, 122, 75, 0.2);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.foot-logo {
  font-family: var(--f-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.foot-tag {
  font-size: 0.87rem;
  color: var(--c-muted-lt);
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

.foot-loc {
  font-size: 0.8rem;
  color: var(--c-muted-lt);
  opacity: 0.7;
}

.foot-col-h {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}

.foot-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.foot-link {
  font-size: 0.85rem;
  color: var(--c-muted-lt);
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.foot-link:hover {
  color: var(--c-gold-lt);
  padding-left: 4px;
}

.foot-contact-item {
  font-size: 0.85rem;
  color: var(--c-muted-lt);
  margin-bottom: 0.5rem;
}

.foot-contact-item a {
  transition: color var(--t-fast);
}

.foot-contact-item a:hover {
  color: var(--c-gold-lt);
}

.foot-cta {
  display: inline-block;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.7rem 1.3rem;
  border-radius: var(--r-sm);
  margin-top: 1.1rem;
  transition: background var(--t-fast);
}

.foot-cta:hover {
  background: var(--c-gold-lt);
}

.foot-bottom {
  border-top: 1px solid rgba(147, 122, 75, 0.12);
  padding: 1.5rem 0;
}

.foot-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.foot-copy,
.foot-legal {
  font-size: 0.77rem;
  color: rgba(201, 184, 158, 0.5);
}

/* ================================================================
   RESPONSIVE — Full Spectrum (1440px → 320px)
   ================================================================ */

/* ---- Large Desktop: 1440px+ ---- */
@media (min-width: 1440px) {
  .hero-headline {
    font-size: 8rem;
  }

  .prestige-nav-container {
    padding: 0 4rem;
  }

  .hero-body {
    padding: 0 4rem;
    padding-top: var(--nav-h);
  }
}

/* ---- Desktop / Laptop: up to 1280px ---- */
@media (max-width: 1280px) {
  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .about-top {
    gap: 3.5rem;
  }
}

/* ---- Tablet Landscape / Small Laptop: up to 1100px ---- */
@media (max-width: 1100px) {
  .prestige-nav-list {
    gap: 1rem;
  }

  .prestige-nav-link {
    font-size: 0.72rem;
  }

  .products-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }

  .about-top {
    gap: 3rem;
  }

  .about-img {
    height: 420px;
  }

  .strengths-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .str-card {
    padding: 1.75rem;
  }

  .target-grid {
    gap: 2.5rem;
  }

  .vm-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---- Tablet Portrait: up to 992px (navbar breakpoint) ---- */
@media (max-width: 992px) {

  /* Navbar handled via prestige navbar @media above */
  .prestige-burger {
    display: flex !important;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
  }

  .hero-body {
    padding-top: calc(var(--nav-h) + 1rem);
  }

  .hero-scroll {
    display: none;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 5rem;
  }

  .about-stats {
    position: static;
    margin-top: 1.5rem;
    justify-content: center;
  }

  .about-img {
    height: 380px;
  }

  .strengths-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .services-strip {
    flex-direction: column;
  }

  .serv-divider {
    width: auto;
    height: 1px;
    margin: 0;
  }

  .target-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .usp-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }

  .foot-contact-col {
    grid-column: 1 / -1;
  }

  .br-desk {
    display: none;
  }
}

/* ---- Large Phone / Small Tablet: up to 768px ---- */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .container {
    padding: 0 1.75rem;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
  }

  .hero-btns {
    gap: 0.75rem;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    padding: 0.85rem 1.75rem;
    font-size: 0.72rem;
  }

  .about-section {
    padding: 6rem 0 5rem;
  }

  .about-img {
    height: 300px;
  }

  .about-stats {
    flex-wrap: wrap;
  }

  .stat-pill {
    flex: 1 1 auto;
    min-width: 100px;
    padding: 1rem 1.25rem;
  }

  .strengths-section {
    padding: 6rem 0 4rem;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .str-card {
    padding: 1.5rem;
  }

  .services-strip {
    border-radius: var(--r-sm);
  }

  .serv-item {
    padding: 1.5rem;
  }

  .target-section {
    padding: 6rem 0;
  }

  .market-card {
    padding: 1.25rem;
  }

  .vision-section {
    padding: 6rem 0;
  }

  .vm-card {
    padding: 2rem;
  }

  .vm-quote {
    font-size: 1.1rem;
  }

  .usp-items {
    grid-template-columns: 1fr;
  }

  .usp-item {
    font-size: 0.9rem;
  }

  .contact-section {
    padding: 6rem 0;
  }

  .contact-form {
    padding: 1.75rem;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .foot-brand,
  .foot-contact-col {
    grid-column: auto;
  }

  .foot-bottom-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .p-mob-link {
    font-size: 1.8rem;
  }

  .float-cta {
    bottom: 1.25rem;
    right: 1.25rem;
    font-size: 0.65rem;
    padding: 0.65rem 1.25rem;
  }
}

/* ---- Phone: up to 640px ---- */
@media (max-width: 640px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-headline {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .hero-body {
    padding-top: calc(var(--nav-h) + 2rem);
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .about-section,
  .strengths-section,
  .target-section,
  .vision-section,
  .contact-section {
    padding: 5rem 0;
  }

  .about-top {
    margin-bottom: 4rem;
  }

  .about-img {
    height: 260px;
  }

  .about-stats {
    left: 0;
    right: 0;
  }

  .products-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .prod-img-wrap {
    height: 200px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .float-cta {
    bottom: 1rem;
    right: 1rem;
  }
}

/* ---- Small Phone: up to 400px ---- */
@media (max-width: 400px) {
  :root {
    --nav-h: 60px;
  }

  .container {
    padding: 0 1rem;
  }

  .prestige-logo {
    font-size: 1.25rem;
  }

  .hero-headline {
    font-size: clamp(1.7rem, 10vw, 2.5rem);
  }

  .hero-sub {
    font-size: 0.88rem;
  }

  .section-h2 {
    font-size: 1.75rem;
  }

  .stat-pill {
    padding: 0.85rem 1rem;
  }

  .stat-n {
    font-size: 1.3rem;
  }

  .str-card {
    padding: 1.25rem;
  }

  .str-title {
    font-size: 1.1rem;
  }

  .market-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .market-flag {
    font-size: 1.8rem;
  }

  .vm-card {
    padding: 1.5rem;
  }

  .vm-quote {
    font-size: 1rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .finput {
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
  }

  .p-mob-link {
    font-size: 1.5rem;
  }

  .p-mob-nav-list {
    gap: 1rem;
  }

  .footer-inner {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .foot-logo {
    font-size: 1.25rem;
  }

  .float-cta {
    display: none;
  }
}

/* ---- Very Small / Narrow: up to 360px ---- */
@media (max-width: 360px) {
  .hero-headline {
    font-size: 1.6rem;
  }

  .hero-tag {
    letter-spacing: 0.12em;
    font-size: 0.58rem;
  }

  .hero-btns .btn-gold,
  .hero-btns .btn-outline {
    padding: 0.8rem 1.2rem;
  }

  .section-h2 {
    font-size: 1.55rem;
  }

  .str-card {
    padding: 1rem;
  }

  .str-icon {
    width: 36px;
    height: 36px;
  }

  .contact-form {
    padding: 1rem;
  }

  .btn-submit {
    font-size: 0.75rem;
  }

  .foot-bottom-inner p {
    font-size: 0.68rem;
  }
}