:root {
  --brown: #4b2618;
  --brown-2: #2c1710;
  --gold: #bd8a32;
  --gold-2: #d8aa60;
  --cream: #fbf3e6;
  --cream-2: #fffaf1;
  --ink: #1f1713;
  --muted: #765f50;
  --line: rgba(189, 138, 50, .28);
  --white: #fff;
  --shadow: 0 20px 55px rgba(75, 38, 24, .14);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: Inter, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

img,
iframe {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--gold-2);
  outline-offset: 3px;
}

.container {
  width: 100%;
  margin: 0 auto;
}


/* HEADER */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  background: rgba(251, 243, 230, .9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(189, 138, 50, .22);
  box-shadow: 0 12px 34px rgba(75, 38, 24, .07);
}

.header-inner {
  height: 100px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand-logo {
  position: relative;
  z-index: 5;
  height: 86px;
  display: flex;
  align-items: center;
}

.brand-logo img {
  width: 118px;
  height: auto;
  display: block;
  transform: translateY(18px);
  filter: drop-shadow(0 10px 18px rgba(75,38,24,.16));
  transition: transform .25s ease, filter .25s ease;
}

.brand-logo:hover img {
  transform: translateY(18px) scale(1.03);
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.main-menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: #4c2a1b;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease;
}

.main-menu a:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(189,138,50,.10);
  color: var(--brown);
  transform: translateY(-1px);
  box-shadow:
    0 4px 12px rgba(75,38,24,.04),
    inset 0 1px 0 rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}

.main-menu a.active {
  background: linear-gradient(135deg, #4b2618, #6a3521);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 10px 22px rgba(75,38,24,.18),
    inset 0 1px 0 rgba(255,255,255,.10);
}

.main-menu,
.header-cta {
  align-self: center;
}

.header-cta {
  min-width: 210px;
  height: 58px;
  padding: 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b2f1f, #7a4128);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 14px 28px rgba(75,38,24,.22),
    inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .25s ease, box-shadow .25s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(75,38,24,.3),
    inset 0 1px 0 rgba(255,255,255,.12);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: var(--brown);
  color: #fff;
  box-shadow: 0 14px 28px rgba(75, 38, 24, .22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--brown-2);
}

.btn-light {
  background: rgba(255, 255, 255, .72);
  color: var(--brown);
  border-color: var(--line);
}

/* HOME */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 170px 0 80px;
  background:
    radial-gradient(circle at 20% 10%, rgba(216, 170, 96, .35), transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, var(--cream-2) 52%, #f5e2bf 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: -180px;
  top: 120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(75, 38, 24, .08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--gold);
  font-size: 16px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

h1 {
  margin-bottom: 22px;
  color: var(--brown);
  font-size: clamp(46px, 7vw, 88px);
  line-height: .95;
  letter-spacing: -.055em;
}

h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 650px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-feature-grid {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.hero-feature-card {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,.34);
  border: 1px solid rgba(189,138,50,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}

.hero-feature-card:hover {
  border-color: rgba(189,138,50,.32);
  background: rgba(255,255,255,.48);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.55),
    0 10px 22px rgba(75,38,24,.06);
}

.hero-feature-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, #f4ead4, #ead8aa);
  border: 1px solid rgba(189,138,50,.18);
  color: var(--brown);
  font-size: 30px;
}

.hero-feature-card strong {
  display: block;
  color: var(--brown);
  font-size: 22px;
  font-weight: 950;
  line-height: 1.15;
  margin-bottom: 5px;
}

.hero-feature-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-feature-card p {
  margin: 0;
  color: rgba(75,38,24,.72);
  font-size: 14px;
  line-height: 1.55;
}

.visual {
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 680px;
  height: 620px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 42px 24px 58px 24px;
  background: #efe5d3;
  box-shadow: 0 18px 34px rgba(75,38,24,.10);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: auto;
}

.hero-slider::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -60px;
  top: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,166,82,.18), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(44,23,16,.05) 0%, rgba(44,23,16,.12) 40%, rgba(44,23,16,.55) 100%);
}

.hero-slide-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  opacity: .9;
  padding: 24px 28px;
  border-radius: 24px 24px 34px 18px;
  background: linear-gradient(135deg, rgba(52,26,18,.92), rgba(78,38,22,.82));
  backdrop-filter: blur(12px);
  color: #fff;
  box-shadow: 0 18px 38px rgba(44,23,16,.28);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-slide-caption span {
  color: #d6a24a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .95;
}

.hero-slide-caption small {
  display: block;
  max-width: 85%;
  color: rgba(255,245,232,.82);
  font-size: 15px;
  line-height: 1.6;
}

.hero-slider-dots {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 4;
  display: flex;
  gap: 8px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255,250,241,.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(189,138,50,.22);
}

.hero-slider-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(75,38,24,.32);
  cursor: pointer;
  transition: all .25s ease;
}

.hero-slider-dots button.active {
  width: 28px;
  background: var(--brown);
}

/* COMMON SECTIONS */
section {
  padding: 90px 0;
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section-kicker span {
  color: #fff;
}

h2 {
  margin-bottom: 16px;
  color: var(--brown);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

h2 span {
  color: var(--gold);
}

.lead {
  color: var(--muted);
  font-size: 18px;
}



/* ABOUT */

.about-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(189,138,50,.12), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #fbf3e6 55%, #f7e8cb 100%);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(75,38,24,.06);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}


.about-content h2 {
  max-width: 680px;
}

.about-lead {
  margin-bottom: 18px;
  color: rgba(75,38,24,.76);
  font-size: 20px;
  line-height: 1.75;
  font-weight: 500;
}

.about-content p {
  max-width: 680px;
  color: rgba(75,38,24,.7);
  font-size: 17px;
  line-height: 1.8;
}

.about-promise {
  margin-top: 34px;
  padding: 24px 28px;
  border-left: 5px solid var(--gold);
  border-radius: 24px;
  background: rgba(255,255,255,.38);
  border-top: 1px solid rgba(189,138,50,.16);
  border-right: 1px solid rgba(189,138,50,.16);
  border-bottom: 1px solid rgba(189,138,50,.16);
}

.about-promise strong {
  display: block;
  margin-bottom: 14px;
  color: var(--brown);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.about-promise span {
  display: block;
  color: var(--brown);
  opacity: .92;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.7;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-visual-card {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 42px 24px 58px 24px;
  background: linear-gradient(135deg, rgba(75,38,24,.96), rgba(48,24,15,.96));
  box-shadow: 0 30px 70px rgba(75,38,24,.18);
  overflow: visible;
  transition: transform .5s ease, box-shadow .5s ease;
}

.about-visual-card:hover {
  transform: translateY(-4px);
}

.about-visual-card::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(216,170,96,.24);
  border-radius: 34px 18px 48px 18px;
  pointer-events: none;
  z-index: 4;
}

.about-logo-badge {
  position: absolute;
  z-index: 5;
  left: 38px;
  top: 36px;
  width: 165px;
  height: 165px;
  padding: 16px;
  border-radius: 42px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.45);
  box-shadow:
    0 20px 40px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-logo-badge img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.10));
}

.about-image-main {
  position: absolute;
  top: 34px;
  right: 34px;
  width: 70%;
  height: 315px;
  border-radius: 36px;
  overflow: hidden;
  border: 10px solid #fff8ed;
  box-shadow: 0 20px 42px rgba(0,0,0,.2);
}

.about-image-small {
  position: absolute;
  left: 42px;
  bottom: 42px;
  width: 300px;
  height: 215px;
  border-radius: 36px;
  overflow: hidden;
  border: 10px solid #fff8ed;
  box-shadow: 0 20px 42px rgba(0,0,0,.22);
}

.about-image-main img,
.about-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-feature-row {
  position: relative;
  z-index: 3;
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(189,138,50,.24);
  background: rgba(255,250,241,.78);
  box-shadow: 0 18px 44px rgba(75,38,24,.08);
}

.about-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px 30px;
  border-right: 1px solid rgba(189,138,50,.24);
  cursor: default;
  overflow: hidden;
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.about-feature:last-child {
  border-right: 0;
}

.about-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(214,154,46,.08), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .35s ease;
}

.about-feature:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 34px rgba(75,38,24,.08);
}

.about-feature:hover::before {
  opacity: 1;
}

.about-feature i {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4ead4, #ead8aa);
  color: var(--brown);
  font-size: 26px;
  position: relative;
  z-index: 2;
  transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.about-feature:hover i {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, #c99636, #a96c1f);
  color: #fff;
  box-shadow: 0 12px 22px rgba(201,150,54,.34);
}

.about-feature div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.about-feature strong,
.about-feature span {
  position: relative;
  z-index: 2;
}

/* PRODUCTS */
.products-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(75,38,24,.07), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #fbf3e6 58%, #f8e8c8 100%);
  overflow: hidden;
}

.products-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.products-content {
  order: 2;
}

.products-lead {
  max-width: 640px;
  margin-bottom: 36px;
  color: rgba(75,38,24,.72);
  font-size: 18px;
  line-height: 1.8;
}

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

.product-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(189,138,50,.18);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.product-list-item:hover {
  transform: translateY(-4px);
  border-color: rgba(189,138,50,.32);
  box-shadow: 0 18px 34px rgba(75,38,24,.08);
}

.product-list-item i {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #f4ead4, #ead8aa);
  color: var(--brown);
  font-size: 22px;
}

.product-list-item strong {
  display: block;
  color: var(--brown);
  font-size: 21px;
  font-weight: 950;
  margin-bottom: 5px;
}

.product-list-item span {
  display: block;
  color: rgba(75,38,24,.68);
  font-size: 14px;
  line-height: 1.5;
}

.products-visual {
  position: relative;
  order: 1;
  min-height: 560px;
  border-radius: 44px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(75,38,24,.96), rgba(48,24,15,.96));
  box-shadow: 0 30px 70px rgba(75,38,24,.18);
}

.products-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(216,170,96,.24);
  border-radius: 36px;
  z-index: 2;
  pointer-events: none;
}

.products-logo-card {
  position: absolute;
  left: 42px;
  top: 42px;
  z-index: 5;
  width: 180px;
  height: 180px;
  padding: 14px;
  border-radius: 40px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow:
    0 24px 48px rgba(0,0,0,.16),
    inset 0 1px 0 rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-logo-card img {
  width: 96%;
  height: auto;
  display: block;
}

.products-main-image {
  position: absolute;
  right: -120px;
  top: 42px;
  width: 88%;
  height: 470px;
  overflow: hidden;
  border-radius: 50% 0 0 50%;
  border: 12px solid #fff8ed;
  box-shadow: 0 24px 48px rgba(0,0,0,.24);
}

.products-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.products-quality-badge {
  position: absolute;
  left: 44px;
  bottom: 42px;
  z-index: 4;
  max-width: 390px;
  padding: 24px 28px;
  border-radius: 28px;
  background: rgba(53,27,18,.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.products-quality-badge span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.products-quality-badge strong {
  display: block;
  font-size: 26px;
  line-height: 1.25;
}

.premium-brands {
  position: relative;
  margin-top: 54px;
  padding: 58px 46px 42px;
  border-radius: 34px;
  border: 2px solid rgba(189,138,50,.45);
  background: rgba(255,250,241,.62);
  box-shadow: 0 18px 44px rgba(75,38,24,.07);
}

.brands-title {
  position: absolute;
  left: 50%;
  top: -24px;
  transform: translateX(-50%);
  padding: 12px 30px;
  border-radius: 999px;
  background: var(--brown);
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
}

.brand-logo-item {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 26px;
  border-right: 1px solid rgba(189,138,50,.22);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.brand-logo-item:last-child {
  border-right: 0;
}

.brand-logo-item img {
  max-width: 190px;
  max-height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(75,38,24,.08));
  transition: transform .35s ease, filter .35s ease;
}

.brand-logo-item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.55);
  box-shadow: 0 16px 34px rgba(75,38,24,.08);
  border-radius: 24px;
}

.brand-logo-item:hover img {
  transform: scale(1.14);
  filter: brightness(1.08) saturate(1.1) drop-shadow(0 14px 22px rgba(75,38,24,.16));
}

/* STRENGTHS */
.strengths-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(189,138,50,.12), transparent 26%),
    linear-gradient(135deg, #fffaf1 0%, #fbf3e6 58%, #f7e7c8 100%);
}

.strengths-head {
  max-width: 900px;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.strength-card {
  min-height: 220px;
  padding: 32px 30px;
  border-radius: 30px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(189,138,50,.18);
  box-shadow:
    0 14px 34px rgba(75,38,24,.06),
    inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease, border-color .35s ease;
}

.strength-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.74);
  border-color: rgba(189,138,50,.32);
  box-shadow:
    0 22px 44px rgba(75,38,24,.12),
    inset 0 1px 0 rgba(255,255,255,.58);
}

.strength-card i {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f4ead4, #ead8aa);
  color: var(--brown);
  font-size: 30px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.strength-card:hover i {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, #c99636, #a96c1f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(201,150,54,.32);
}

.strength-card h3 {
  color: var(--brown);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 14px;
}

.strength-card p {
  color: rgba(75,38,24,.72);
  font-size: 16px;
  line-height: 1.65;
}

.strength-band {
  margin-top: 42px;
  padding: 34px 38px;
  border-radius: 34px;
  background: linear-gradient(135deg, #4b2618, #32170f);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
  box-shadow:
    0 18px 40px rgba(75,38,24,.14),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.strength-band div {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.strength-band div:first-child {
  padding-left: 0;
}

.strength-band div:last-child {
  border-right: 0;
  padding-right: 0;
}

.strength-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.strength-band span {
  color: #f3dfc5;
  font-size: 14px;
  line-height: 1.6;
}

/* INFRASTRUCTURE */
.infrastructure-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(216,170,96,.18), transparent 30%),
    linear-gradient(135deg, #4b2618 0%, #2c1710 58%, #170b07 100%);
  overflow: hidden;
  color: #fff;
}

.infrastructure-section::before {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(216,170,96,.08);
}

.infra-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.infra-content {
  max-width: 720px;
}

.infrastructure-section .section-kicker {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.infrastructure-section .section-kicker span,
.infrastructure-section h2 span {
  color: var(--gold-2);
}

.infrastructure-section h2 {
  max-width: 680px;
  color: #fff;
}

.infra-lead {
  max-width: 650px;
  margin-top: 22px;
  color: rgba(255,244,226,.82);
  font-size: 19px;
  line-height: 1.8;
}

.infra-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.infra-metric-card {
  min-height: 118px;
  padding: 20px 22px;
  border-radius: 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 18px 36px rgba(0,0,0,.14);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}

.infra-metric-card:hover {
  transform: translateY(-7px);
  background: rgba(255,255,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.12),
    0 24px 44px rgba(0,0,0,.22);
}

.infra-metric-card i {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(216,170,96,.18);
  color: var(--gold-2);
  font-size: 22px;
  transition: transform .35s ease, background .35s ease, color .35s ease;
}

.infra-metric-card:hover i {
  transform: scale(1.08) rotate(-4deg);
  background: var(--gold-2);
  color: var(--brown);
}

.infra-metric-content {
  flex: 1;
}

.infra-metric-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.infra-metric-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.infra-metric-card p {
  margin: 0;
  color: rgba(255,244,226,.76);
  font-size: 13px;
  line-height: 1.4;
}

.infra-visual {
  position: relative;
  width: 100%;
  min-height: 560px;
  border-radius: 40px;
  overflow: hidden;
  border: 10px solid rgba(255,250,241,.9);
  box-shadow: 0 30px 60px rgba(0,0,0,.26);
}

.infra-visual img {
  width: 100%;
  height: 560px;
  min-height: 560px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.infra-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44,23,16,.08) 0%, rgba(44,23,16,.12) 45%, rgba(44,23,16,.55) 100%);
}

.infra-floating-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 3;
  padding: 26px 30px;
  border-radius: 28px;
  background: rgba(44,23,16,.86);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}

.infra-floating-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.infra-floating-card strong {
  display: block;
  color: #fff;
  font-size: 27px;
  line-height: 1.25;
}

.infra-feature-strip {
  position: relative;
  z-index: 2;
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255,250,241,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 20px 44px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.infra-feature-strip div {
  padding: 26px 24px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.infra-feature-strip div:last-child {
  border-right: 0;
}

.infra-feature-strip i {
  display: block;
  color: var(--gold-2);
  font-size: 30px;
  margin-bottom: 18px;
}

.infra-feature-strip strong {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}

.infra-feature-strip span {
  display: block;
  color: rgba(255,244,226,.72);
  font-size: 14px;
  line-height: 1.55;
}

/* CONTACT */
.contact-section {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(216,170,96,.18), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #fbf3e6 55%, #f7e7c8 100%);
  overflow: hidden;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-head {
  margin-bottom: 0;
}

.contact-info-panel {
  display: grid;
  gap: 16px;
}

.contact-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(189,138,50,.2);
  box-shadow: 0 14px 34px rgba(75,38,24,.06);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.contact-card:hover,
.contact-map:hover,
.contact-form:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(75,38,24,.10);
  border-color: rgba(189,138,50,.34);
}

.contact-card i {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #f4ead4, #ead8aa);
  color: var(--brown);
  font-size: 24px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brown);
  font-size: 18px;
  font-weight: 950;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.contact-map {
  height: 280px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(189,138,50,.24);
  box-shadow: 0 18px 42px rgba(75,38,24,.1);
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-form-card {
  height: 100%;
  display: flex;
  align-self: stretch;
}

.contact-form {
  width: 100%;
  padding: 36px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(189,138,50,.22);
  box-shadow: 0 24px 55px rgba(75,38,24,.12);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease;
}

.form-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form h3 {
  color: var(--brown);
  font-size: 34px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
  min-width: 100%;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(75,38,24,.16);
  background: #fffaf3;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  min-height: 330px;
  resize: vertical;
}

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

.contact-form button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216,170,96,.18);
}

.form-status {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: #14532d;
  background: #dcfce7;
}

.form-status.error {
  color: #7f1d1d;
  background: #fee2e2;
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-note {
  margin-top: 14px;
  color: rgba(75,38,24,.55);
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.recaptcha-note a {
  color: var(--gold);
  font-weight: 800;
}

/* FOOTER */
.site-footer {
  position: relative;
  padding: 54px 0 42px;
  background:
    radial-gradient(circle at top, rgba(216,170,96,.12), transparent 30%),
    linear-gradient(135deg, #4b2618 0%, #2f150d 100%);
  color: #ecdcc8;
  text-align: center;
  border-top: 1px solid rgba(216,170,96,.14);
  overflow: hidden;
}

.footer-brand {
  color: #fff;
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.02em;
}

.footer-brand span {
  color: var(--gold-2);
}

.footer-divider {
  width: 82px;
  height: 3px;
  margin: 24px auto;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

.footer-tagline {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255,244,226,.82);
  font-size: 20px;
  line-height: 1.7;
}

.footer-copy {
  margin-top: 28px;
  color: rgba(255,244,226,.46);
  font-size: 14px;
  letter-spacing: .04em;
}


.mobile-menu-toggle {
  display: none;
}


/* TABLET FIX */
@media (min-width: 769px) and (max-width: 1299px) {

  html,
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding-left: 36px;
    padding-right: 36px;
  }

  .site-header {
    height: 92px;
  }

  .header-inner {
    height: 92px;
    grid-template-columns: 1fr auto !important;
  }

  .brand-logo img {
    width: 92px;
    transform: none !important;
  }

  .header-cta {
    display: none !important;
  }

  .main-menu {
    display: none !important;
  }

  .main-menu.open {
    display: grid !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
  }

  .main-menu {
    position: absolute !important;
    top: 92px;
    left: 36px;
    right: 36px;

    display: none !important;

    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;

    border-radius: 0 0 24px 24px;
    background: rgba(255,250,241,.98);
    border: 1px solid rgba(189,138,50,.22);
    box-shadow: 0 24px 55px rgba(75,38,24,.18);

    z-index: 999;
  }

  .main-menu.open {
    display: grid !important;
  }

  .hero-grid,
  .about-grid,
  .products-layout,
  .infra-layout,
  .contact-layout {
    grid-template-columns: 1fr !important;
    gap: 46px;
  }

  .hero {
    padding: 135px 0 80px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.02;
  }

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

  .hero-slider {
    width: 100%;
    max-width: 640px;
    height: 520px;
    margin: 0 auto;
  }

  .about-content,
  .products-content {
    order: 1;
  }

  .about-visual-card,
  .products-visual {
    order: 2;
    max-width: 640px;
    margin: 0 auto;
  }

  .product-list,
  .strengths-grid,
  .strength-band,
  .infra-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-left,
  .contact-form-card {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
  }
}








/* =========================
  TABLET RESPONSIVE FIX
  769px to 1024px only
========================= */
@media (min-width: 769px) and (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden;
  }

  html {
    scroll-padding-top: 96px;
  }

  #about,
  #products,
  #strengths,
  #capacity,
  #contact {
    scroll-margin-top: -20px;
  }

  .container {
    width: 100%;
    max-width: 860px;
    padding-left: 36px;
    padding-right: 36px;
    margin-left: auto;
    margin-right: auto;
  }

  /* HEADER */
  .site-header {
    height: 92px;
  }

  .header-inner {
    height: 92px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand-logo {
    height: 78px;
  }

  .brand-logo img {
    width: 92px;
    transform: none;
  }

  .brand-logo:hover img {
    transform: scale(1.03);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 16px;
    background: var(--brown);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(75,38,24,.18);
  }

  .mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
  }

  .main-menu {
    position: absolute;
    top: 92px;
    left: 36px;
    right: 36px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 0 0 24px 24px;
    background: rgba(255,250,241,.98);
    border: 1px solid rgba(189,138,50,.22);
    box-shadow: 0 24px 55px rgba(75,38,24,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 50;
  }

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

  .main-menu a {
    width: 100%;
    height: 48px;
    justify-content: flex-start;
    padding: 0 18px;
    font-size: 13px;
  }

  /* COMMON */
  section {
    padding: 80px 0;
  }

  h1 {
    font-size: 52px;
    line-height: 1.02;
  }

  h2 {
    font-size: 44px;
    line-height: 1.08;
  }

  .lead {
    font-size: 17px;
  }

  /* SHARED TABLET WIDTH */
  .hero-slider,
  .about-visual-card,
  .products-visual,
  .premium-brands,
  .strength-band,
  .infra-visual,
  .infra-feature-strip,
  .contact-left,
  .contact-form-card {
    width: 100%;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 135px 0 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .hero p {
    max-width: 760px;
  }

  .hero-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-slider {
    height: 520px;
  }

  /* ABOUT */
  .about-section {
    padding: 90px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .about-content {
    order: 1;
  }

  .about-visual-card {
    order: 2;
    min-height: 540px;
  }

  .about-feature-row {
    max-width: 760px;
    grid-template-columns: 1fr;
    margin-left: auto;
    margin-right: auto;
  }

  .about-feature {
    border-right: 0;
    border-bottom: 1px solid rgba(189,138,50,.24);
  }

  .about-feature:last-child {
    border-bottom: 0;
  }

  /* PRODUCTS */
  .products-section {
    min-height: auto;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .products-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    align-items: start;
  }

  .products-content {
    order: 1;
  }

  .products-visual {
    order: 2;
    display: block;
  }

  .product-list {
    max-width: 760px;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin: 34px auto 0;
  }

  .premium-brands {
    margin-top: 70px;
    padding: 70px 28px 38px;
    overflow: visible;
    position: relative;
  }

  .brands-title {
    top: -30px;
    z-index: 2;
  }

  .brand-logo-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    overflow: hidden;
  }

  .brand-logo-item {
    min-width: 0;
    padding: 28px 18px;
  }

  .brand-logo-item img {
    max-width: 120px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* STRENGTHS */
  .strengths-grid {
    max-width: 760px;
    grid-template-columns: repeat(2, 1fr);
    margin-left: auto;
    margin-right: auto;
  }

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

  .strength-band div {
    padding: 24px 26px;
  }

  .strength-band div:nth-child(2) {
    border-right: 0;
  }

  .strength-band div:nth-child(1),
  .strength-band div:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  /* INFRA */
  .infra-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .infra-content {
    max-width: 760px;
  }

  .infra-metrics {
    max-width: 760px;
  }

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

  .infra-feature-strip div:nth-child(2) {
    border-right: 0;
  }

  .infra-feature-strip div:nth-child(1),
  .infra-feature-strip div:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  /* CONTACT */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .contact-form textarea {
    min-height: 220px;
  }
}









@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
    scroll-padding-top: 96px;
  }

  .site-header {
    height: 86px;
  }

  .container {
    width: 100%;
    padding-left: 22px;
    padding-right: 22px;
    box-sizing: border-box;
  }

  .hero h1,
  .hero p,
  .eyebrow,
  .hero-actions,
  .hero-feature-grid,
  .visual {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.05;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .header-inner {
    height: 86px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .brand-logo {
    height: 72px;
    align-items: center;
  }

  .brand-logo img {
    width: 78px;
    max-width: 100%;
    height: auto;
    transform: none;
  }

  .brand-logo:hover img {
    transform: scale(1.03);
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 15px;
    background: var(--brown);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(75,38,24,.18);
  }

  .mobile-menu-toggle span {
    width: 23px;
    height: 2px;
    border-radius: 999px;
    background: #fff;
    transition: .25s ease;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-menu {
    position: absolute;
    top: 86px;
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 0 0 24px 24px;
    background: rgba(255,250,241,.98);
    border: 1px solid rgba(189,138,50,.22);
    box-shadow: 0 24px 55px rgba(75,38,24,.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 50;
  }

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

  .main-menu a {
    width: 100%;
    height: 48px;
    justify-content: flex-start;
    padding: 0 18px;
    font-size: 13px;
  }

  .hero {
    padding: 95px 0 52px;
    overflow: hidden;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr;
    gap: 34px;
    overflow: hidden;
  }

  .hero-grid > div:first-child {
    position: relative;
    z-index: 5;
  }

  .eyebrow {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .14em;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.02;
    letter-spacing: -.03em;
    word-break: break-word;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.7;
  }

  .hero-actions {
    position: relative;
    z-index: 20;    
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-actions .btn {
    position: relative;
    z-index: 21;
    pointer-events: auto;    
    width: 100%;
    justify-content: center;
  }

  .visual {
    position: relative;
    z-index: 1;
  }

  .hero-feature-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-feature-card {
    grid-template-columns: 64px 1fr;
    padding: 22px;
    width: 100%;
    min-width: 0;
  }

  .hero-feature-card > div:last-child {
    min-width: 0;
  }

  .hero-feature-card strong {
    font-size: 24px;
    line-height: 1.15;
  }

  .hero-feature-card p {
    font-size: 16px;
    line-height: 1.55;
  }

  .visual {
    margin-top: 8px;
  }

  .hero-slider {
    width: 100%;
    max-width: 100%;
    height: 520px;
    margin: 0;
    border-radius: 30px;
  }

  .hero-slide,
  .hero-slide img {
    width: 100%;
    height: 100%;
  }

  .hero-slide img {
    object-fit: cover;
  }

  .hero-slide-caption {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .hero-slide-caption strong {
    font-size: 24px;
  }

  .hero-slide-caption small {
    font-size: 15px;
    line-height: 1.55;
  }


  /*Mobile - About us*/
  /* MOBILE - ABOUT US */
  .about-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  /* #about {
    scroll-margin-top: -20px;
  } */

  .about-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-content {
    order: 1;
  }

  .about-visual-card {
    order: 2;
    width: 100%;
    max-width: 100%;
    min-height: 520px;
    margin-top: 8px;
    overflow: hidden;
  }

  .about-content h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .about-content p,
  .about-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .about-promise {
    padding: 26px 24px;
  }

  .about-promise strong {
    font-size: 14px;
  }

  .about-promise span {
    font-size: 20px;
    line-height: 1.55;
  }

  .about-logo-badge {
    width: 180px;
    height: 180px;
    left: 22px;
    top: 34px;
  }

  .about-image-main {
    right: 22px;
    top: 80px;
    width: 68%;
  }

  .about-image-small {
    left: 32px;
    bottom: 42px;
    width: 82%;
  }


  .about-feature-row {
    width: calc(100% - 44px);
    max-width: none;
    margin: 40px auto 0;
    padding: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    box-sizing: border-box;
  }

  .about-feature {
    grid-template-columns: 72px 1fr;
    gap: 22px;
    padding: 34px 28px;
    border-right: 0;
    border-bottom: 1px solid rgba(75,38,24,.12);
    border-radius: 0;
  }

  .about-feature:first-child {
    border-radius: 34px 34px 0 0;
  }

  .about-feature:last-child {
    border-bottom: 0;
    border-radius: 0 0 34px 34px;
  }

  .about-feature i {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .about-feature strong {
    display: block;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .about-feature span {
    display: block;
    font-size: 15px;
    line-height: 1.7;
  }



  /* =========================
   MOBILE - PRODUCTS SECTION
  ========================= */
  /* MOBILE - PRODUCTS SECTION */
  /* #products {
    scroll-margin-top: -20px;
  } */

  .products-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .products-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .products-content {
    order: 1 !important;
  }

  .products-visual {
    order: 2 !important;
  }  

  .products-content,
  .products-visual {
    width: 100%;
    max-width: 100%;
  }

  .product-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-list-item {
    width: 100%;
    max-width: 100%;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
  }

  .product-list-item div {
    min-width: 0;
  }

  .product-list-item strong {
    font-size: 24px;
    line-height: 1.2;
  }

  .product-list-item span {
    font-size: 16px;
    line-height: 1.6;
  }

  .product-list-item i {
    width: 72px;
    height: 72px;
    font-size: 26px;
  }

  /* Product visual mobile */
  .products-visual {
    min-height: 560px;
    margin-top: 8px;
    border-radius: 34px;
    overflow: hidden;
  }

  .products-logo-card {
    width: 150px;
    height: 150px;
    left: 24px;
    top: 42px;
    z-index: 3;
  }

  .products-main-image {
    width: 88%;
    right: -18px;
    top: 150px;
    z-index: 2;
  }

  .products-main-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .products-quality-badge {
    left: 24px;
    right: 24px;
    bottom: 34px;
    width: auto;
    padding: 24px;
    border-radius: 24px;
    z-index: 4;
  }

  .products-quality-badge strong {
    font-size: 26px;
    line-height: 1.25;
  }

  /* Premium brands mobile */
  .premium-brands {
    width: calc(100% - 44px);
    margin: 46px auto 0;
    padding: 56px 22px 28px;
    border-radius: 34px;
  }

  .brands-title {
    width: calc(100% - 44px);
    max-width: 340px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
  }

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

  .brand-logo-item {
    padding: 34px 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(189,138,50,.18);
  }

  .brand-logo-item:last-child {
    border-bottom: 0;
  }

  .brand-logo-item img {
    max-width: 160px;
    height: auto;
  }



  /* MOBILE - STRENGTHS */
  #strengths {
    scroll-margin-top: -20px;
  }

  .strengths-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .strengths-head {
    text-align: left;
  }

  .strengths-head h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .strengths-head .lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .strengths-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 36px;
  }

  .strength-card {
    width: 100%;
    padding: 30px 26px;
    border-radius: 30px;
  }

  .strength-card i {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .strength-card h3 {
    font-size: 26px;
    line-height: 1.25;
  }

  .strength-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .strength-band {
    /* width: calc(100% - 44px); */
    margin: 42px auto 0;
    padding: 42px 34px;
    grid-template-columns: 1fr;
    border-radius: 34px;
    overflow: hidden;
  }

  .strength-band div {
    padding: 0 0 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .strength-band div + div {
    padding-top: 26px;
  }

  .strength-band div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .strength-band strong {
    display: block;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .strength-band span {
    display: block;
    font-size: 15px;
    line-height: 1.7;
  }





  /* MOBILE - INFRASTRUCTURE */
  #capacity {
    scroll-margin-top: -20px;
  }

  .infrastructure-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .infra-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .infra-content {
    order: 1;
  }

  .infra-visual {
    order: 2;
    width: 100%;
    min-height: auto;
    border-radius: 34px;
    overflow: hidden;
  }

  .infra-content h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .infra-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .infra-metrics {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .infra-metric-card {
    grid-template-columns: 72px 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
  }

  .infra-metric-card i {
    width: 72px;
    height: 72px;
    font-size: 24px;
  }

  .infra-metric-content strong {
    font-size: 30px;
    line-height: 1.1;
  }

  .infra-metric-content span {
    font-size: 14px;
  }

  .infra-metric-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .infra-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 34px;
  }

  .infra-floating-card {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -110px 18px 22px;
    padding: 24px;
    border-radius: 24px;
  }

  .infra-floating-card strong {
    font-size: 24px;
    line-height: 1.25;
  }

  .infra-feature-strip {
    width: auto;
    margin: 42px 22px 0;
    grid-template-columns: 1fr;
    border-radius: 34px;
    overflow: hidden;
  }

  .infra-feature-strip div {
    padding: 28px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .infra-feature-strip div:last-child {
    border-bottom: 0;
  }

  .infra-feature-strip strong {
    font-size: 18px;
    line-height: 1.4;
  }

  .infra-feature-strip span {
    font-size: 15px;
    line-height: 1.7;
  }



  /* MOBILE - CONTACT */
  /* MOBILE - CONTACT */
  #contact {
    scroll-margin-top: -20px;
  }

  .contact-section {
    padding-top: 70px;
    padding-bottom: 80px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-head {
    text-align: left;
  }

  .contact-head h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .contact-head .lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .contact-info-panel {
    gap: 18px;
    margin-top: 34px;
  }

  .contact-card {
    padding: 24px;
    border-radius: 28px;
    gap: 18px;
    align-items: flex-start;
  }

  .contact-card i {
    width: 68px;
    height: 68px;
    font-size: 22px;
    flex-shrink: 0;
  }

  .contact-card strong {
    font-size: 20px;
    line-height: 1.4;
  }

  .contact-card p,
  .contact-card a {
    font-size: 15px;
    line-height: 1.8;
    word-break: break-word;
  }

  .contact-map {
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
  }

  .contact-form-card {
    display: block;
    width: 100%;
  }

  .contact-form {
    width: 100%;
    padding: 30px 18px;
    border-radius: 32px;
    gap: 18px;
  }

  .contact-form .form-label {
    font-size: 14px;
    letter-spacing: .12em;
  }

  .contact-form h3 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 6px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding: 18px;
    font-size: 16px;
    border-radius: 18px;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-form button {
    width: 100%;
    padding: 18px 24px;
    border-radius: 18px;
    font-size: 16px;
  }

  .recaptcha-note {
    font-size: 13px;
    line-height: 1.7;
  }


  .footer-brand {
    font-size: 34px;
    line-height: 1.05;
  }

  .footer-tagline {
    font-size: 18px;
    line-height: 1.8;
    max-width: 320px;
    margin: 0 auto;
  }

}




/* FINAL TABLET HAMBURGER FIX */
@media (min-width: 769px) and (max-width: 1299px) {

  .header-inner {
    height: 92px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    align-items: center !important;
  }

  .header-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    width: 52px !important;
    height: 52px !important;
    border: 0 !important;
    border-radius: 16px !important;
    background: var(--brown) !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 6px !important;
    cursor: pointer !important;
    box-shadow: 0 12px 24px rgba(75,38,24,.18) !important;
    position: relative !important;
    z-index: 9999 !important;
  }

  .mobile-menu-toggle span {
    display: block !important;
    width: 24px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: #fff !important;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

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

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-menu {
    position: absolute !important;
    top: 92px !important;
    left: 36px !important;
    right: 36px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 14px !important;
    border-radius: 0 0 24px 24px !important;
    background: rgba(255,250,241,.98) !important;
    border: 1px solid rgba(189,138,50,.22) !important;
    box-shadow: 0 24px 55px rgba(75,38,24,.18) !important;

    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: translateY(-10px) !important;
    z-index: 9998 !important;
  }

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

/* TABLET PRODUCT GAP FIX */
@media (min-width: 769px) and (max-width: 1299px) {

  .products-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .products-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 42px !important;
  }

  .products-content {
    order: 1 !important;
  }

  .products-visual {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
    max-width: 760px !important;
    min-height: 520px !important;
    margin: 0 auto !important;
  }

  .premium-brands {
    width: 100% !important;
    max-width: 760px !important;
    margin: 54px auto 0 !important;
    padding: 64px 28px 36px !important;
  }

  .brand-logo-list {
    grid-template-columns: repeat(3, 1fr) !important;
    overflow: hidden !important;
  }

  .brand-logo-item {
    min-width: 0 !important;
    padding: 26px 18px !important;
  }

  .brand-logo-item img {
    max-width: 120px !important;
    max-height: 100px !important;
  }
}

/* SCROLL TO TOP BUTTON */
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 46px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #5b2415, #7a351d);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);

  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease,
    box-shadow .28s ease;
    
  box-shadow:
    0 10px 30px rgba(91, 36, 21, 0.28);
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-btn:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 36px rgba(91, 36, 21, 0.36);
}

@media (max-width: 768px) {
  .scroll-top-btn {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 50px;
    border-radius: 16px;
    font-size: 22px;
  }
}

/* SMART MOBILE HEADER */
@media (max-width: 1199px) {

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition:
      transform .32s ease,
      background .32s ease,
      box-shadow .32s ease;
  }

  .site-header.header-hidden {
    transform: translateY(-100%);
  }

  body {
    padding-top: 92px;
  }
}