/* ════════════════════════════════════════════════════════
   SURAHAIR INDUSTRIES — Master Stylesheet
   Palette: Ink / Oxblood / Marigold / Teal / Ivory / Sand
   ════════════════════════════════════════════════════════ */

:root {
  --ink: #1C1410;
  --ink-soft: #2B2019;
  --oxblood: #7C2335;
  --oxblood-deep: #5A1827;
  --oxblood-light: #A53A4F;
  --marigold: #E08A3E;
  --marigold-light: #F0AE6E;
  --teal: #0E5C53;
  --teal-light: #167A6E;
  --ivory: #FBF6EE;
  --sand: #F1E6D6;
  --sand-deep: #E7D7BF;
  --charcoal: #2A211C;
  --muted: #8A7A6E;
  --white: #FFFFFF;
  --line: rgba(42, 33, 28, 0.1);
  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --shadow-sm: 0 2px 10px rgba(28, 20, 16, 0.08);
  --shadow-md: 0 10px 30px rgba(28, 20, 16, 0.12);
  --shadow-lg: 0 24px 60px rgba(28, 20, 16, 0.18);
  --shadow-oxblood: 0 18px 40px rgba(124, 35, 53, 0.25);
  --shadow-marigold: 0 14px 34px rgba(224, 138, 62, 0.3);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* moved here so position:fixed overlays are NOT clipped */
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--charcoal);
  /* overflow-x: hidden removed from body — it creates a new stacking/scroll context
     that clips position:fixed children (mobile nav overlay) on iOS/Android */
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5.5%;
}

.section {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section {
    padding: 4.2rem 0;
  }
}

::selection {
  background: var(--oxblood);
  color: var(--white);
}

/* ── REVEAL ON SCROLL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-stagger.visible>* {
  opacity: 1;
  transform: none;
}

.reveal-stagger.visible>*:nth-child(1) {
  transition-delay: .05s;
}

.reveal-stagger.visible>*:nth-child(2) {
  transition-delay: .12s;
}

.reveal-stagger.visible>*:nth-child(3) {
  transition-delay: .19s;
}

.reveal-stagger.visible>*:nth-child(4) {
  transition-delay: .26s;
}

.reveal-stagger.visible>*:nth-child(5) {
  transition-delay: .33s;
}

.reveal-stagger.visible>*:nth-child(6) {
  transition-delay: .4s;
}

/* ── LABEL / EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--marigold);
  border-radius: 2px;
}

.eyebrow.on-dark {
  color: var(--marigold-light);
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.4rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  color: var(--ink);
}

.section-head h2 em {
  font-style: italic;
  color: var(--oxblood);
  font-weight: 500;
}

.section-head p {
  margin-top: 1rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 400;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .87rem;
  letter-spacing: .02em;
  padding: .95rem 1.9rem;
  border-radius: 8px;
  border: none;
  transition: transform .25s cubic-bezier(.2, .8, .2, 1), box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--oxblood);
  color: var(--white);
  box-shadow: var(--shadow-oxblood);
}

.btn-primary:hover {
  background: var(--oxblood-deep);
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(124, 35, 53, 0.32);
}

.btn-marigold {
  background: var(--marigold);
  color: var(--ink);
  box-shadow: var(--shadow-marigold);
}

.btn-marigold:hover {
  background: var(--marigold-light);
  transform: translateY(-3px);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--marigold);
  color: var(--marigold-light);
  transform: translateY(-3px);
}

.btn-outline-dark {
  border: 1.5px solid rgba(42, 33, 28, 0.25);
  color: var(--ink);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--oxblood);
  color: var(--oxblood);
  transform: translateY(-3px);
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

/* ════════════════════════════════════════════════════════
   TOPBAR + NAVBAR
   ════════════════════════════════════════════════════════ */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  font-size: .78rem;
  padding: .55rem 0;
  position: relative;
  z-index: 100;
  transition: opacity .3s, visibility .3s;
}

.topbar.topbar-hidden {
  display: none !important;
}

.topbar-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5.5%;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.topbar-inner a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  transition: color .2s;
}

.topbar-inner a:hover {
  color: var(--marigold-light);
}

.topbar-inner i {
  color: var(--marigold);
}

.topbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oxblood), var(--marigold), var(--teal));
}

.navbar {
  position: sticky;
  top: 0;
  /* NO backdrop-filter — creates stacking context trapping dropdown */
  background: #1a0a12;
  border-bottom: 2px solid rgba(201, 150, 58, 0.35);
  transition: box-shadow .3s;
  box-shadow: 0 4px 30px rgba(0,0,0,.5), 0 1px 0 rgba(201,150,58,.12);
  z-index: 9999;
}

.navbar.scrolled {
  box-shadow: 0 6px 40px rgba(0,0,0,.6);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5.5%;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: height .3s ease;
}

.navbar.scrolled .nav-inner {
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1);
}

.navbar.scrolled .brand-mark {
  transform: scale(.86);
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text .b1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: .01em;
  color: white;
}

.brand-text .b2 {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: #E8B86D;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .3rem;
}

.nav-links li {
  position: relative;
}

.nav-links a:not(.btn) {
  display: flex;
  align-items: center;
  font-size: .89rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: .58rem 1.1rem;
  border-radius: 100px;
  position: relative;
  transition: background .25s ease, color .25s ease;
}

.nav-links a:not(.btn) i {
  display: none;
}

.nav-links a:not(.btn):hover {
  background: rgba(201,150,58,0.15);
  color: white;
}

.nav-links li.active a:not(.btn) {
  background: var(--oxblood);
  color: var(--white);
  box-shadow: var(--shadow-oxblood);
}

.nav-links .btn {
  padding: .65rem 1.4rem;
  font-size: .82rem;
  margin-left: .6rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.nav-links .btn-primary {
  animation: navGlow 3.2s ease-in-out infinite;
}

.nav-links .btn-primary:hover {
  animation-play-state: paused;
}

@keyframes navGlow {

  0%,
  100% {
    box-shadow: var(--shadow-oxblood);
  }

  50% {
    box-shadow: 0 16px 36px rgba(224, 138, 62, 0.4);
  }
}

.nav-mobile-contact {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 100001;
  position: relative;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all .3s;
}

.hamburger:hover span {
  background: #E8B86D;
}

.hamburger.open span {
  background: var(--white);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ════════════════════════════════════════════════════════
   PAGE HERO
   ════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 5.5rem 0 4.5rem;
  color: var(--white);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 0%, rgba(124, 35, 53, 0.5), transparent 60%),
    radial-gradient(ellipse 50% 50% at 5% 100%, rgba(14, 92, 83, 0.45), transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .crumbs {
  font-size: .8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.1rem;
  display: flex;
  gap: .5rem;
  align-items: center;
}

.page-hero .crumbs a {
  color: rgba(255, 255, 255, 0.7);
  transition: color .2s;
}

.page-hero .crumbs a:hover {
  color: var(--marigold-light);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.1;
  max-width: 720px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--marigold-light);
  font-weight: 500;
}

.page-hero p.lead {
  margin-top: 1.1rem;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.7;
}

.page-hero .strand-svg {
  position: absolute;
  right: -5%;
  top: 0;
  height: 100%;
  width: 55%;
  opacity: .35;
  pointer-events: none;
}

/* ════════════════════════════════════════════════════════
   HOME HERO
   ════════════════════════════════════════════════════════ */
.home-hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  padding: 4.5rem 0 5.5rem;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 90% 10%, rgba(124, 35, 53, 0.55), transparent 60%),
    radial-gradient(ellipse 45% 50% at 0% 95%, rgba(14, 92, 83, 0.4), transparent 60%);
}

.home-hero .strand-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .28;
  pointer-events: none;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-copy .eyebrow {
  color: var(--marigold-light);
}

.hero-copy .eyebrow::before {
  background: var(--marigold-light);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1.08;
  margin-bottom: 1.3rem;
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--marigold-light);
  font-weight: 500;
}

.hero-copy p.lead {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.07rem;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2.1rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
}

.hstat {
  padding-right: 1.6rem;
}

.hstat .hnum {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--marigold-light);
}

.hstat .hlabel {
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  height: 480px;
  perspective: 1400px;
}

.hv-card {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform .4s ease;
}

.hv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(195deg, rgba(124, 35, 53, 0.15), rgba(14, 92, 83, 0.1) 60%, transparent);
}

.hero-visual:hover .hv-card {
  transform: rotateY(-3deg) rotateX(1deg);
}

.hv-chip {
  position: absolute;
  background: rgba(251, 246, 238, 0.97);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  animation: floaty 5s ease-in-out infinite;
}

.hv-chip-1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.hv-chip-2 {
  bottom: 10%;
  right: -9%;
  animation-delay: 1.4s;
}

.hv-chip-swatch {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.6);
  background-size: cover;
  background-position: center;
}

.hv-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--ink);
}

.hv-chip span {
  font-size: .68rem;
  color: var(--muted);
  font-weight: 600;
}

@keyframes floaty {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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

  .hero-visual {
    height: 380px;
    max-width: 480px;
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .hv-chip-1 {
    left: 3%;
    top: 5%;
  }

  .hv-chip-2 {
    right: 3%;
    bottom: 5%;
  }

  .hv-chip {
    padding: .65rem .8rem;
    gap: .55rem;
  }

  .hv-chip strong {
    font-size: .76rem;
  }

  .hv-chip span {
    font-size: .6rem;
  }

  .hv-chip-swatch {
    width: 28px;
    height: 28px;
  }
}

/* ════════════════════════════════════════════════════════
   MARQUEE
   ════════════════════════════════════════════════════════ */
.marquee-strip {
  background: var(--oxblood);
  padding: .85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-track span {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}

.marquee-track span i {
  color: var(--marigold-light);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ════════════════════════════════════════════════════════
   3D TILT CARD SYSTEM
   ════════════════════════════════════════════════════════ */
.tilt-card {
  position: relative;
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .15s ease-out, box-shadow .3s ease;
}

.tilt-card:hover {
  box-shadow: var(--shadow-lg);
}

.tilt-card .tc-media {
  position: relative;
  aspect-ratio: 4/3.1;
  overflow: hidden;
  transform: translateZ(20px);
}

.tilt-card .tc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.tilt-card:hover .tc-media img {
  transform: scale(1.08);
}

.tilt-card .tc-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 20, 16, 0.55), transparent 45%);
}

.tilt-card .tc-tag {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: rgba(251, 246, 238, 0.95);
  color: var(--oxblood);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .7rem;
  border-radius: 100px;
  transform: translateZ(30px);
}

.tilt-card .tc-body {
  padding: 1.5rem 1.5rem 1.7rem;
  transform: translateZ(10px);
}

.tilt-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .55rem;
}

.tilt-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: .9rem;
}

.tilt-card ul {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.tilt-card ul li {
  font-size: .82rem;
  color: var(--charcoal);
  display: flex;
  gap: .5rem;
  align-items: flex-start;
}

.tilt-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--marigold);
  flex-shrink: 0;
  margin-top: .45rem;
}

.tilt-card .tc-link {
  font-size: .82rem;
  font-weight: 700;
  color: var(--oxblood);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .2s;
}

.tilt-card .tc-link:hover {
  gap: .65rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
  gap: 1.7rem;
}

/* ════════════════════════════════════════════════════════
   HOME — ABOUT PREVIEW
   ════════════════════════════════════════════════════════ */
.about-preview {
  background: var(--ivory);
}

.ap-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.ap-visual {
  position: relative;
}

.ap-visual .ap-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  aspect-ratio: 4/4.6;
}

.ap-visual .ap-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-visual .ap-img-float {
  position: absolute;
  width: 46%;
  aspect-ratio: 4/3.4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  bottom: -8%;
  right: -10%;
  transform: rotate(3deg);
  border: 5px solid var(--ivory);
}

.ap-visual .ap-img-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ap-text p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.ap-points {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.6rem 0 2rem;
}

.ap-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ap-point .ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--sand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--oxblood);
  font-size: 1rem;
}

.ap-point strong {
  display: block;
  font-size: .96rem;
  color: var(--ink);
  margin-bottom: .15rem;
}

.ap-point span {
  font-size: .86rem;
  color: var(--muted);
}

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

  .ap-visual {
    max-width: 420px;
    margin: 0 auto 2rem;
  }
}

@media (max-width: 560px) {
  .ap-visual .ap-img-float {
    right: 2%;
    bottom: -6%;
    width: 50%;
    border-width: 4px;
  }
}

/* ════════════════════════════════════════════════════════
   WHY US
   ════════════════════════════════════════════════════════ */
.why {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 100% 100%, rgba(14, 92, 83, 0.4), transparent 65%);
}

.why .container {
  position: relative;
  z-index: 2;
}

.why .section-head h2 {
  color: var(--white);
}

.why .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
}

.wcard {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 1.9rem 1.6rem;
  transition: background .25s, border-color .25s, transform .25s;
}

.wcard:hover {
  background: rgba(224, 138, 62, 0.08);
  border-color: var(--marigold);
  transform: translateY(-4px);
}

.wicon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--oxblood), var(--oxblood-deep));
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-oxblood);
}

.wicon i {
  color: var(--white);
  font-size: 1.05rem;
}

.wcard h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.wcard p {
  font-size: .86rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════
   PROCESS TIMELINE
   ════════════════════════════════════════════════════════ */
.process {
  background: var(--sand);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.6rem;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--oxblood) 0 10px, transparent 10px 18px);
  opacity: .35;
  z-index: 0;
}

.p-step {
  position: relative;
  z-index: 1;
}

.p-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--oxblood);
  margin-bottom: 1.1rem;
  border: 2px solid var(--marigold);
}

.p-step h4 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .4rem;
}

.p-step p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-track::before {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════
   TESTIMONIAL
   ════════════════════════════════════════════════════════ */
.testimonial {
  background: var(--ivory);
}

.t-wrap {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  padding: 3.2rem clamp(1.6rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.2rem;
  align-items: center;
}

.t-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--marigold);
  line-height: .6;
}

.t-wrap p.quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 1.2rem;
}

.t-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.t-author .ta-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--oxblood);
  font-family: var(--font-display);
  font-weight: 700;
}

.t-author strong {
  display: block;
  font-size: .92rem;
  color: var(--ink);
}

.t-author span {
  font-size: .78rem;
  color: var(--muted);
}

@media (max-width: 700px) {
  .t-wrap {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .t-quote-mark {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--oxblood);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(224, 138, 62, 0.35), transparent 70%);
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: .8rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin: 0 auto 1.8rem;
}

.cta-banner .hero-btns {
  justify-content: center;
  margin-bottom: 0;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  padding: 4.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand .brand-text .b1 {
  color: var(--white);
}

.footer-brand p {
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: .7rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
}

.footer-social a:hover {
  background: var(--oxblood);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--marigold-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col ul li,
.footer-col ul a {
  font-size: .85rem;
  transition: color .2s;
}

.footer-col ul a:hover {
  color: var(--marigold-light);
}

.footer-col .fc-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}

.footer-col .fc-contact-item i {
  color: var(--marigold);
  margin-top: .2rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  transition: color .2s;
}

.footer-bottom a:hover {
  color: var(--marigold-light);
}

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ════════════════════════════════════════════════════════
   FLOATING WHATSAPP + BACK TO TOP
   ════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 300;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: transform .2s;
}

.wa-float:hover {
  transform: scale(1.08);
}

.wa-float i {
  color: var(--white);
  font-size: 1.7rem;
}

.back-top {
  position: fixed;
  bottom: 5.3rem;
  right: 1.5rem;
  z-index: 300;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: none;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s;
}

.back-top.show {
  display: grid;
}

.back-top:hover {
  background: var(--oxblood);
  transform: translateY(-3px);
}

/* ════════════════════════════════════════════════════════
   ABOUT PAGE
   ════════════════════════════════════════════════════════ */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.1rem;
  font-size: 1rem;
}

.story-visual {
  position: relative;
}

.story-visual .sv-main {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.4;
}

.story-visual .sv-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-visual .sv-badge {
  position: absolute;
  left: -6%;
  bottom: -8%;
  background: var(--oxblood);
  color: var(--white);
  border-radius: 16px;
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-oxblood);
  text-align: center;
  min-width: 130px;
}

.sv-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--marigold-light);
}

.sv-badge span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.mv-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--oxblood);
}

.mv-card:nth-child(2) {
  border-top-color: var(--teal);
}

.mv-card .mv-ico {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--oxblood);
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.mv-card:nth-child(2) .mv-ico {
  color: var(--teal);
}

.mv-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: .7rem;
}

.mv-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: .92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: .9rem;
}

.gallery-grid .g-item {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.gallery-grid .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.gallery-grid .g-item:hover img {
  transform: scale(1.08);
}

.gallery-grid .g-big {
  grid-row: span 2;
  grid-column: span 2;
}

/* ════════════════════════════════════════════════════════
   PRODUCTS PAGE
   ════════════════════════════════════════════════════════ */
.cat-tabs {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cat-tab {
  font-size: .85rem;
  font-weight: 700;
  padding: .65rem 1.3rem;
  border-radius: 100px;
  background: var(--white);
  color: var(--charcoal);
  border: 1.5px solid var(--line);
  transition: all .25s;
}

.cat-tab:hover {
  border-color: var(--oxblood);
  color: var(--oxblood);
}

.cat-tab.active {
  background: var(--oxblood);
  color: var(--white);
  border-color: var(--oxblood);
  box-shadow: var(--shadow-oxblood);
}

.product-group {
  display: none;
}

.product-group.active {
  display: block;
  animation: fadein .4s ease;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.texture-strip {
  background: var(--ink);
  color: var(--white);
}

.texture-strip .section-head h2 {
  color: var(--white);
}

.texture-strip .section-head p {
  color: rgba(255, 255, 255, 0.6);
}

.tex-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.2rem;
}

.tex-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform .25s, border-color .25s;
}

.tex-chip:hover {
  transform: translateY(-5px);
  border-color: var(--marigold);
}

.tex-chip .tex-swirl {
  width: 48px;
  height: 48px;
  margin: 0 auto .9rem;
}

.tex-chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: .3rem;
}

.tex-chip span {
  font-size: .76rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ════════════════════════════════════════════════════════
   CONTACT PAGE
   ════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.5rem;
  align-items: start;
}

.cinfo-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cinfo-card {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 14px;
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.cinfo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cinfo-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--oxblood);
  font-size: 1.05rem;
  flex-shrink: 0;
}

.cinfo-card strong {
  display: block;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .25rem;
}

.cinfo-card a,
.cinfo-card span {
  font-size: .96rem;
  color: var(--ink);
  line-height: 1.6;
  font-weight: 600;
}

.cinfo-card a:hover {
  color: var(--oxblood);
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: #25D366;
  color: var(--white);
  padding: .85rem 1.8rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  transition: background .2s, transform .2s;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.contact-form-wrap {
  background: var(--white);
  padding: clamp(1.6rem, 4vw, 2.8rem);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .4rem;
}

.contact-form-wrap>p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1.6rem;
}

.form-success {
  background: #e8f5e9;
  border: 1px solid #81c784;
  color: #2e7d32;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: .88rem;
  line-height: 1.6;
}

.form-error {
  background: #fce4ec;
  border: 1px solid #ef9a9a;
  color: #c62828;
  padding: 1rem 1.2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: .88rem;
}

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

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--ivory);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .8rem 1rem;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--oxblood);
  box-shadow: 0 0 0 4px rgba(124, 35, 53, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.map-card {
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

/* ════════════════════════════════════════════════════════
   MISC UTILITIES
   ════════════════════════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

/* ════════════════════════════════════════════════════════
   MOBILE NAV — THE REAL FIX
   Nav overlay must escape navbar's stacking context
   ════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .topbar-inner {
    font-size: .7rem;
    gap: .7rem 1.2rem;
  }

  /* hamburger visible */
  .hamburger {
    display: flex;
  }

  /* Navbar mobile — keep sticky, high z-index, no backdrop-filter */
  .navbar {
    z-index: 9999;
    position: sticky;
    top: 0;
  }

  /* Hamburger stays in normal flow (not fixed) */
  .hamburger {
    position: relative;
    z-index: 99999;
  }

  .hamburger.open {
    position: relative;
  }

  /* Fixed dropdown — renders above ALL content including hero with stacking contexts */
  .nav-links {
    display: none;
    position: fixed;
    top: 78px;
    left: 0;
    right: 0;
    background: #1a0a12;
    flex-direction: column;
    gap: .15rem;
    padding: .8rem 1.2rem 1.4rem;
    border-top: 2px solid rgba(201,150,58,.3);
    box-shadow: 0 16px 50px rgba(0,0,0,.7);
    z-index: 99998;
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links a:not(.btn) {
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    font-weight: 600;
    padding: .8rem .8rem;
    border-radius: 8px;
    background: none;
    display: flex;
    align-items: center;
    gap: .6rem;
    transition: background .2s, color .2s;
  }

  .nav-links a:not(.btn) i {
    display: inline-flex;
    width: 20px;
    color: #E8B86D;
    font-size: .85rem;
  }

  .nav-links a:not(.btn):hover {
    background: rgba(201,150,58,.12);
    color: white;
  }

  .nav-links li.active a:not(.btn) {
    color: #E8B86D;
    background: rgba(201,150,58,.1);
    border-left: 3px solid #C9963A;
    padding-left: .6rem;
  }

  .nav-links .btn {
    margin-top: .8rem;
    width: 100%;
    justify-content: center;
    border-radius: 50px;
    animation: none;
  }

  .nav-links li:has(.btn) {
    border-bottom: none;
  }

  .nav-mobile-contact {
    display: flex;
    gap: .8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: none !important;
  }

  .nav-mobile-contact a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
  }

  .nav-mobile-contact a.wa {
    background: #25D366;
    border-color: #25D366;
  }
}

/* ════════════════════════════════════════════════════════
   TABLET 768–1024px
   ════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-visual {
    height: 340px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .hero-copy p.lead {
    font-size: .98rem;
  }

  .hv-chip-1 {
    left: 0;
    top: 8%;
  }

  .hv-chip-2 {
    right: 0;
    bottom: 8%;
  }

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

  .ap-visual {
    max-width: 440px;
    margin: 0 auto 4rem;
  }

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

  .story-visual {
    max-width: 480px;
    margin: 0 auto 4rem;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* ════════════════════════════════════════════════════════
   LARGE MOBILE 768px
   ════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 3.8rem 0;
  }

  .topbar-inner a:nth-child(2) {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
    gap: 1.6rem;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .page-hero .strand-svg {
    width: 80%;
    opacity: .2;
    right: -15%;
  }

  .page-hero h1 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }

  .page-hero p.lead {
    font-size: .92rem;
  }

  .hero-visual {
    height: 280px;
    max-width: 100%;
  }

  .hv-chip {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.4rem;
  }

  .ap-visual {
    max-width: 100%;
    margin-bottom: 3rem;
  }

  .ap-visual .ap-img-float {
    right: 0;
    bottom: -5%;
    width: 44%;
    border-width: 4px;
  }

  .process-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }

  .process-track::before {
    display: none;
  }

  .t-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1.4rem;
    text-align: left;
  }

  .t-quote-mark {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }

  .gallery-grid .g-big {
    grid-column: span 2;
    grid-row: span 2;
  }

  .story-visual .sv-badge {
    left: 0;
    bottom: -5%;
    padding: 1rem 1.2rem;
    min-width: 110px;
  }

  .sv-badge strong {
    font-size: 1.5rem;
  }

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

  .tilt-card {
    transform: none !important;
    transform-style: flat !important;
  }

  .tilt-card .tc-media,
  .tilt-card .tc-tag,
  .tilt-card .tc-body {
    transform: none !important;
  }

  .cat-tabs {
    gap: .5rem;
  }

  .cat-tab {
    font-size: .8rem;
    padding: .55rem 1rem;
  }

  .hero-btns {
    gap: .7rem;
  }

  .hero-btns .btn {
    flex: 1 1 140px;
    text-align: center;
    justify-content: center;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 1.2rem;
    right: 1.2rem;
  }

  .back-top {
    bottom: 4.7rem;
    right: 1.2rem;
  }
}

/* ════════════════════════════════════════════════════════
   SMALL MOBILE 560px
   ════════════════════════════════════════════════════════ */
@media (max-width: 560px) {
  .container {
    padding: 0 4.5%;
  }

  .brand-text .b1 {
    font-size: 1.15rem;
  }

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

  .nav-inner {
    height: 64px;
  }

  .home-hero {
    padding: 3.5rem 0 4rem;
  }

  .hero-visual {
    height: 240px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-copy p.lead {
    font-size: .9rem;
  }

  .hero-btns .btn {
    flex: 1 1 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 0;
  }

  .hstat .hnum {
    font-size: 1.6rem;
  }

  .section-head {
    margin-bottom: 2.2rem;
  }

  .section-head h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .ap-visual {
    overflow: visible;
  }

  .ap-visual .ap-img-float {
    width: 48%;
    right: 0;
    bottom: -4%;
    border-width: 3px;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wcard {
    padding: 1.5rem 1.3rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 100px;
    gap: .6rem;
  }

  .cat-tabs {
    gap: .4rem;
  }

  .cat-tab {
    font-size: .75rem;
    padding: .5rem .85rem;
  }

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

  .tex-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
  }

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

  .contact-form-wrap {
    padding: 1.4rem 1.2rem;
  }

  .cinfo-card {
    padding: 1rem 1.1rem;
    gap: .8rem;
  }

  .map-card iframe {
    height: 220px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner .hero-btns .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ════════════════════════════════════════════════════════
   EXTRA SMALL 380px
   ════════════════════════════════════════════════════════ */
@media (max-width: 380px) {
  .container {
    padding: 0 4%;
  }

  .brand-text .b2 {
    display: none;
  }

  .nav-links {
    padding: 4rem 6% 2.5rem;
  }

  .nav-links a:not(.btn) {
    font-size: 1.1rem;
    padding: 1rem .2rem;
  }

  .home-hero {
    padding: 3rem 0;
  }

  .hero-visual {
    height: 200px;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .hstat .hnum {
    font-size: 1.4rem;
  }

  .page-hero {
    padding: 3rem 0 2.5rem;
  }

  .page-hero h1 {
    font-size: 1.75rem;
  }

  .tilt-card {
    transform: none !important;
    transform-style: flat !important;
  }

  .tilt-card .tc-media,
  .tilt-card .tc-tag,
  .tilt-card .tc-body {
    transform: none !important;
  }

  .p-num {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

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

  .gallery-grid .g-big {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid .g-item {
    aspect-ratio: 4/3;
    height: auto;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .wa-float {
    width: 46px;
    height: 46px;
  }

  .wa-float i {
    font-size: 1.4rem;
  }
}
/* ============================================
   TRAINING SECTION
   ============================================ */
.training-section {
  background: linear-gradient(135deg, #fdf8f0 0%, #fff9f5 50%, #fef5ec 100%);
  padding: 5rem 0;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.training-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(124,35,53,0.10), 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(124,35,53,0.18), 0 4px 12px rgba(0,0,0,0.1);
}

.training-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.training-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.training-card:hover .training-img img {
  transform: scale(1.06);
}

.training-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #7C2335, #C0392B);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(124,35,53,0.35);
}

.training-body {
  padding: 1.6rem 1.8rem 2rem;
}

.training-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1C1410;
  margin-bottom: 0.6rem;
}

.training-body p {
  font-size: 0.92rem;
  color: #5a4a3a;
  line-height: 1.65;
}

/* Training CTA Box */
.training-cta {
  margin-top: 3rem;
}

.training-cta-inner {
  background: linear-gradient(135deg, #7C2335 0%, #1C1410 100%);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.training-cta-inner::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(224,138,62,0.12);
}

.training-cta-inner::after {
  content: '';
  position: absolute;
  bottom: -50px; left: 40%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.training-cta-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.training-cta-text h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.6rem;
}

.training-cta-text p {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.training-features {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 1.5rem;
}

.training-features li {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.training-features li i {
  color: #F0AE6E;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.training-cta-action {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.training-cta-action .btn {
  white-space: nowrap;
}

/* Brand mark size upgrade */
.brand-mark {
  width: 44px;
  height: 44px;
}

/* Responsive training */
@media (max-width: 900px) {
  .training-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .training-cta-inner {
    flex-direction: column;
    padding: 2.5rem 2rem;
    gap: 2rem;
  }
  .training-features {
    grid-template-columns: 1fr;
  }
  .training-cta-action {
    width: 100%;
  }
  .training-cta-action .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* ═══ REAL WIGS HERO CARD ══════════════════════════════════ */
.hv-card-real {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.hv-card-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hv-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(28,20,16,0.82));
  padding: 2rem 1.4rem 1.2rem;
}
.hv-card-label {
  color: var(--marigold-light);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ═══ TRUST NUMBERS BAND ══════════════════════════════════ */
.trust-band {
  background: var(--ink);
  padding: 4rem 0;
}
.trust-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.trust-item .t-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--marigold);
  line-height: 1;
  display: block;
}
.trust-item .t-label {
  color: rgba(255,255,255,0.65);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .5rem;
  display: block;
}
.trust-item .t-sub {
  color: rgba(255,255,255,0.4);
  font-size: .72rem;
  margin-top: .25rem;
  display: block;
}
@media (max-width: 600px) {
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ═══ GALLERY STRIP ══════════════════════════════════ */
.gallery-strip {
  background: var(--sand);
  padding: 5rem 0;
}
.gallery-strip .section-head h2 {
  color: var(--ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.gallery-grid .g-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.gallery-grid .g-img:first-child {
  aspect-ratio: 3/4;
  grid-row: span 2;
}
.gallery-grid .g-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid .g-img:hover img {
  transform: scale(1.04);
}
.gallery-grid .g-img .g-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(28,20,16,.75));
  color: white;
  padding: 1.5rem 1rem .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .g-img:first-child { grid-row: span 1; aspect-ratio: 4/5; }
}

/* ═══ QUALITY PROMISE STRIP ══════════════════════════════════ */
.quality-strip {
  background: linear-gradient(135deg, var(--oxblood-deep) 0%, var(--ink) 100%);
  padding: 5rem 0;
}
.quality-strip .section-head h2,
.quality-strip .section-head p { color: white; }
.quality-strip .section-head h2 em { color: var(--marigold-light); }
.quality-strip .eyebrow { color: var(--marigold-light); }
.quality-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.q-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem 1.6rem;
  text-align: center;
  transition: background .3s;
}
.q-step:hover { background: rgba(255,255,255,0.1); }
.q-icon {
  width: 52px; height: 52px;
  background: var(--marigold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.2rem;
  color: white;
}
.q-step h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: white;
  margin-bottom: .6rem;
}
.q-step p {
  color: rgba(255,255,255,0.65);
  font-size: .88rem;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .quality-steps { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* ═══ WHY US CARD BOLDER STYLE ══════════════════════════════════ */
.wcard h4 {
  font-weight: 800 !important;
}
.section-head h2 {
  font-weight: 700 !important;
}


/* ═══ PNG LOGO — ALL PAGES ════════════════════════════════ */
.brand-logo-img {
  height: 64px;
  width: auto;
  filter: drop-shadow(0 3px 14px rgba(201,150,58,0.5)) brightness(1.08);
  transition: transform .3s ease, filter .3s ease;
  flex-shrink: 0;
}
.brand-logo-img:hover { 
  transform: scale(1.05); 
  filter: drop-shadow(0 4px 20px rgba(201,150,58,0.7)) brightness(1.12);
}

/* ═══ PROCESS NUMBERS FIX ════════════════════════════════ */
.p-num {
  font-family: var(--font-display);
  font-size: 2.6rem !important;
  font-weight: 800;
  line-height: 1;
  margin-bottom: .8rem;
  color: rgba(201,150,58,0.25) !important;
  overflow: visible !important;
}
