/* =================================================================
   BR HOSIERY — Playful sock & hosiery brand
   Single typeface: Poppins. Candy-bright palette on warm cream.
   ================================================================= */

:root {
  --cream:    #FFF6EC;
  --cream-2:  #FFEFD8;
  --ink:      #211B2E;
  --ink-soft: #5A5168;

  --coral:    #FF5A7E;
  --yellow:   #FFC73A;
  --mint:     #18D2A4;
  --purple:   #8B5CF6;
  --blue:     #34C6F4;
  --orange:   #FF8A3D;

  --white:    #ffffff;

  --shadow-sm: 0 8px 24px rgba(33,27,46,.10);
  --shadow-md: 0 18px 44px rgba(33,27,46,.16);
  --shadow-pop: 8px 8px 0 var(--ink);

  --r-lg: 36px;
  --r-md: 24px;
  --r-sm: 16px;

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* selection */
::selection { background: var(--yellow); color: var(--ink); }

/* ---------- scroll progress bar ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 5px; width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--mint), var(--blue), var(--purple));
  transition: width .08s linear;
}

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px;
  border: 3px solid var(--ink);
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn-primary { background: var(--coral); color: var(--white); box-shadow: var(--shadow-pop); }
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); }
.btn-ghost { background: var(--white); color: var(--ink); box-shadow: var(--shadow-pop); }
.btn-ghost:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); background: var(--yellow); }
.btn-sun { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-pop); }
.btn-sun:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--ink); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: padding .3s var(--ease), background .3s, box-shadow .3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255,246,236,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(33,27,46,.08);
  padding: 10px 0;
  border-bottom: 2px solid var(--ink);
}
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; flex: none;
  border-radius: 14px; border: 3px solid var(--ink);
  display: grid; place-items: center;
  font-weight: 800; font-size: 1.35rem; color: var(--ink);
  background: var(--yellow);
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-6deg);
  transition: transform .3s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(6deg) scale(1.05); }
.brand-text strong { display: block; font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; line-height: 1; }
.brand-text em { font-style: normal; font-size: .72rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-weight: 600; font-size: .95rem; padding: 8px 14px; border-radius: 100px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--ink); color: var(--white); }
.nav-links a.nav-privacy { color: var(--purple); }
.nav-links a.nav-privacy:hover { background: var(--purple); color: var(--white); }

.header-cta { padding: 11px 22px; font-size: .95rem; }

.menu-toggle {
  display: none; background: var(--white); border: 3px solid var(--ink); border-radius: 12px;
  width: 48px; height: 48px; cursor: pointer; padding: 0; box-shadow: 3px 3px 0 var(--ink);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 22px; height: 3px; background: var(--ink); border-radius: 3px; transition: .3s; }
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw);
  background: var(--cream); border-left: 3px solid var(--ink);
  transform: translateX(100%); transition: transform .35s var(--ease);
  z-index: 950; padding: 92px 26px 30px; display: flex; flex-direction: column; gap: 6px;
  box-shadow: -20px 0 60px rgba(33,27,46,.2);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-weight: 600; font-size: 1.1rem; padding: 14px 16px; border-radius: 14px; }
.mobile-menu a:hover { background: var(--white); }
.mobile-menu .mobile-cta { margin-top: 12px; justify-content: center; }
.menu-backdrop {
  position: fixed; inset: 0; background: rgba(33,27,46,.4); z-index: 940;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.menu-backdrop.open { opacity: 1; pointer-events: auto; }

/* =================================================================
   ANIMATED PATTERN BACKGROUNDS
   ================================================================= */
@keyframes dotsDrift  { from { background-position: 0 0; } to { background-position: 90px 90px; } }
@keyframes stripeMove { from { background-position: 0 0; } to { background-position: 80px 0; } }
@keyframes zigDrift   { from { background-position: 0 0; } to { background-position: 60px 0; } }
@keyframes float-y    { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(-22px) rotate(var(--rot,0deg)); } }
@keyframes float-y2   { 0%,100% { transform: translateY(0) rotate(var(--rot,0deg)); } 50% { transform: translateY(18px) rotate(var(--rot,0deg)); } }
@keyframes spin-slow  { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes wobble     { 0%,100%{ transform: rotate(-4deg);} 50%{ transform: rotate(4deg);} }
@keyframes marquee    { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes pop-in     { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.pattern-dots {
  background-image: radial-gradient(var(--purple) 3px, transparent 3.5px);
  background-size: 30px 30px;
  animation: dotsDrift 9s linear infinite;
}

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative; padding: 150px 0 90px; overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(52,198,244,.18), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(255,90,126,.16), transparent 42%),
    radial-gradient(circle at 70% 90%, rgba(24,210,164,.16), transparent 45%),
    var(--cream);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image: radial-gradient(rgba(139,92,246,.22) 2px, transparent 2.5px);
  background-size: 34px 34px;
  animation: dotsDrift 14s linear infinite;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 3px solid var(--ink); border-radius: 100px;
  padding: 8px 18px; font-weight: 700; font-size: .82rem; letter-spacing: .02em;
  box-shadow: 4px 4px 0 var(--ink); margin-bottom: 22px;
  transform: rotate(-2deg);
}
.hero-eyebrow .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--mint); }
.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem); line-height: .98; font-weight: 800;
  letter-spacing: -.03em; margin-bottom: 22px;
}
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero h1 .hl-coral  { color: var(--coral); }
.hero h1 .hl-purple { color: var(--purple); }
.hero h1 .hl-mint   { color: var(--mint); }
.hero h1 .squiggle {
  display: inline-block;
}
.hero-lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 30em; margin-bottom: 30px; font-weight: 500; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; }
.hero-trust span { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .92rem; }
.hero-trust .pip { width: 14px; height: 14px; border-radius: 50%; border: 3px solid var(--ink); }

/* hero visual */
.hero-visual { position: relative; height: 520px; }
.hero-blob {
  position: absolute; inset: 6% 4% 6% 6%;
  background: var(--purple);
  border-radius: 49% 51% 60% 40% / 45% 55% 45% 55%;
  box-shadow: var(--shadow-md);
  animation: wobble 8s ease-in-out infinite;
}
.hero-photo {
  position: absolute; inset: 10%; z-index: 2;
  border-radius: 48% 52% 58% 42% / 48% 50% 50% 52%;
  overflow: hidden; border: 5px solid var(--ink);
  box-shadow: var(--shadow-md);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute; z-index: 3; background: var(--white);
  border: 4px solid var(--ink); border-radius: 20px; padding: 6px;
  box-shadow: 5px 5px 0 var(--ink); overflow: hidden;
}
.float-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; }
.float-1 { width: 130px; height: 130px; top: -6px; right: 0; --rot: 8deg; animation: float-y 6s ease-in-out infinite; }
.float-2 { width: 120px; height: 120px; bottom: 6px; left: -14px; --rot: -8deg; animation: float-y2 7s ease-in-out infinite; }
.hero-badge {
  position: absolute; z-index: 4; bottom: 30%; right: -10px;
  width: 108px; height: 108px; border-radius: 50%;
  background: var(--yellow); border: 4px solid var(--ink);
  display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: .72rem; line-height: 1.15;
  box-shadow: 4px 4px 0 var(--ink);
  animation: spin-slow 16s linear infinite;
}
.hero-badge span { animation: spin-slow 16s linear reverse infinite; }

/* =================================================================
   MARQUEE
   ================================================================= */
.marquee {
  background: var(--ink); color: var(--cream); padding: 16px 0; overflow: hidden;
  border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink);
  transform: rotate(-1.4deg) scale(1.03); margin: 40px 0;
}
.marquee-track { display: flex; width: max-content; animation: marquee 26s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 1.4rem; font-weight: 800; letter-spacing: .02em; padding: 0 26px;
  display: inline-flex; align-items: center; gap: 26px; text-transform: uppercase;
}
.marquee-track span::after { content: "✦"; color: var(--yellow); }

/* =================================================================
   SECTION SHELL
   ================================================================= */
.section { padding: 80px 0; position: relative; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 54px; }
.kicker {
  display: inline-block; font-weight: 800; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  background: var(--mint); color: var(--ink); border: 2px solid var(--ink); margin-bottom: 16px;
}
.kicker.k-coral  { background: var(--coral); color: #fff; }
.kicker.k-yellow { background: var(--yellow); }
.kicker.k-blue   { background: var(--blue); }
.kicker.k-purple { background: var(--purple); color: #fff; }
.section h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem); font-weight: 800; line-height: 1.02;
  letter-spacing: -.025em; margin-bottom: 14px;
}
.section h2 em { font-style: normal; color: var(--coral); }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); font-weight: 500; }

/* =================================================================
   ABOUT
   ================================================================= */
.about { background: var(--cream-2); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { position: relative; }
.about-photo .frame {
  border: 5px solid var(--ink); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-pop); transform: rotate(-2deg);
}
.about-photo .frame img { width: 100%; height: 460px; object-fit: cover; }
.about-photo .sticker {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--coral); color: #fff; border: 4px solid var(--ink); border-radius: 20px;
  padding: 14px 20px; font-weight: 800; box-shadow: 4px 4px 0 var(--ink); transform: rotate(5deg);
  font-size: 1rem; text-align: center; line-height: 1.1;
}
.about-photo .sticker b { font-size: 1.7rem; display: block; }
.about-text h2 { margin-bottom: 18px; }
.about-text p { color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 18px; }
.about-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.about-pills li {
  background: var(--white); border: 3px solid var(--ink); border-radius: 100px;
  padding: 9px 18px; font-weight: 700; font-size: .92rem; box-shadow: 3px 3px 0 var(--ink);
}

/* =================================================================
   CATEGORIES
   ================================================================= */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cat-card {
  position: relative; border: 4px solid var(--ink); border-radius: var(--r-md);
  overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.cat-media { position: relative; height: 250px; overflow: hidden; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-media img { transform: scale(1.09); }
.cat-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-weight: 800; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 100px; border: 2px solid var(--ink); color: var(--ink);
}
.cat-body { padding: 20px 22px 24px; }
.cat-body h3 { font-size: 1.35rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -.01em; }
.cat-body p { color: var(--ink-soft); font-size: .96rem; margin-bottom: 14px; }
.cat-link { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--ink); }
.cat-link .arrow { transition: transform .25s var(--ease); }
.cat-card:hover .cat-link .arrow { transform: translateX(5px); }

/* colour accents per card */
.c-athletic .cat-tag { background: var(--blue); }
.c-casual   .cat-tag { background: var(--coral); color:#fff; }
.c-premium  .cat-tag { background: var(--yellow); }
.c-business .cat-tag { background: var(--ink); color:#fff; }
.c-colorful .cat-tag { background: var(--mint); }
.c-seasonal .cat-tag { background: var(--purple); color:#fff; }

/* =================================================================
   SHOWCASE / FEATURED
   ================================================================= */
.showcase { background: var(--purple); color: var(--cream); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); position: relative; overflow: hidden; }
.showcase::before {
  content:""; position:absolute; inset:0; opacity:.18;
  background-image: repeating-linear-gradient(45deg, #fff 0 18px, transparent 18px 40px);
  animation: stripeMove 6s linear infinite;
}
.showcase .container { position: relative; z-index: 2; }
.showcase .kicker { background: var(--yellow); color: var(--ink); }
.showcase h2 { color: var(--cream); }
.showcase h2 em { color: var(--yellow); }
.showcase .section-head p { color: rgba(255,246,236,.85); }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
  background: var(--cream); color: var(--ink); border: 4px solid var(--ink); border-radius: var(--r-md);
  overflow: hidden; box-shadow: 6px 6px 0 rgba(0,0,0,.35);
  transition: transform .3s var(--ease);
}
.feature-card:hover { transform: translateY(-8px) rotate(-1.5deg); }
.feature-card .fc-media { height: 220px; overflow: hidden; position: relative; }
.feature-card .fc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feature-card:hover .fc-media img { transform: scale(1.1); }
.fc-price {
  position: absolute; bottom: 12px; right: 12px; background: var(--yellow); border: 3px solid var(--ink);
  border-radius: 100px; padding: 5px 14px; font-weight: 800; font-size: .85rem; box-shadow: 3px 3px 0 var(--ink);
}
.feature-card .fc-body { padding: 16px 18px 20px; }
.feature-card h3 { font-size: 1.12rem; font-weight: 800; margin-bottom: 4px; }
.feature-card p { font-size: .9rem; color: var(--ink-soft); }
.fc-dots { display: flex; gap: 6px; margin-top: 12px; }
.fc-dots i { width: 16px; height: 16px; border-radius: 50%; border: 2px solid var(--ink); display: block; }

/* =================================================================
   FEATURES / WHY US
   ================================================================= */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: var(--white); border: 4px solid var(--ink); border-radius: var(--r-md);
  padding: 28px 24px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-icon {
  width: 62px; height: 62px; border-radius: 18px; border: 3px solid var(--ink);
  display: grid; place-items: center; margin-bottom: 18px; font-size: 1.7rem;
  box-shadow: 3px 3px 0 var(--ink); transform: rotate(-5deg);
}
.why-card:hover .why-icon { animation: wobble 1.2s ease-in-out; }
.why-1 .why-icon { background: var(--coral); }
.why-2 .why-icon { background: var(--mint); }
.why-3 .why-icon { background: var(--blue); }
.why-4 .why-icon { background: var(--yellow); }
.why-card h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 8px; }
.why-card p { color: var(--ink-soft); font-size: .96rem; }

/* =================================================================
   FABRIC / QUALITY split
   ================================================================= */
.fabric { background: var(--cream-2); border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); }
.fabric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.fabric-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fabric-photos figure {
  border: 4px solid var(--ink); border-radius: var(--r-md); overflow: hidden; box-shadow: 5px 5px 0 var(--ink);
}
.fabric-photos figure img { width: 100%; height: 230px; object-fit: cover; }
.fabric-photos figure:nth-child(1) { transform: rotate(-2deg); }
.fabric-photos figure:nth-child(2) { transform: rotate(2deg); margin-top: 28px; }
.fabric-text h2 { margin-bottom: 16px; }
.fabric-list { display: grid; gap: 14px; margin-top: 6px; }
.fabric-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 1.02rem; }
.fabric-list .num {
  flex: none; width: 38px; height: 38px; border-radius: 12px; border: 3px solid var(--ink);
  display: grid; place-items: center; font-weight: 800; box-shadow: 2px 2px 0 var(--ink);
}
.fabric-list li:nth-child(1) .num { background: var(--coral); color:#fff; }
.fabric-list li:nth-child(2) .num { background: var(--mint); }
.fabric-list li:nth-child(3) .num { background: var(--blue); }
.fabric-list li:nth-child(4) .num { background: var(--yellow); }
.fabric-list strong { display:block; }
.fabric-list span.txt { color: var(--ink-soft); font-size: .95rem; }

/* =================================================================
   STATS
   ================================================================= */
.stats { background: var(--coral); color:#fff; border-top: 4px solid var(--ink); border-bottom: 4px solid var(--ink); position: relative; overflow: hidden; }
.stats::before {
  content:""; position:absolute; inset:0; opacity:.25;
  background-image: radial-gradient(#fff 3px, transparent 3.5px); background-size: 36px 36px;
  animation: dotsDrift 12s linear infinite;
}
.stats .container { position: relative; z-index: 2; }
.stat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; text-align: center; }
.stat-card {
  background: var(--cream); color: var(--ink); border: 4px solid var(--ink); border-radius: var(--r-md);
  padding: 30px 18px; box-shadow: 6px 6px 0 rgba(0,0,0,.3); transform: rotate(-1deg);
}
.stat-card:nth-child(even) { transform: rotate(1.5deg); }
.stat-num { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 800; line-height: 1; letter-spacing: -.02em; }
.stat-card:nth-child(1) .stat-num { color: var(--coral); }
.stat-card:nth-child(2) .stat-num { color: var(--mint); }
.stat-card:nth-child(3) .stat-num { color: var(--purple); }
.stat-card:nth-child(4) .stat-num { color: var(--blue); }
.stat-label { font-weight: 600; margin-top: 8px; color: var(--ink-soft); font-size: .98rem; }

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-card {
  background: var(--ink); color: var(--cream); border-radius: var(--r-lg); padding: 40px;
  border: 4px solid var(--ink); box-shadow: var(--shadow-pop); position: relative; overflow: hidden;
}
.contact-card::before {
  content:""; position:absolute; inset:0; opacity:.1;
  background-image: radial-gradient(var(--yellow) 2px, transparent 2.5px); background-size: 26px 26px;
  animation: dotsDrift 16s linear infinite;
}
.contact-card > * { position: relative; z-index: 2; }
.contact-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.contact-card .ct-lead { color: rgba(255,246,236,.8); margin-bottom: 26px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-line .ic {
  flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.3rem; border: 3px solid var(--cream);
}
.contact-line:nth-child(2) .ic { background: var(--coral); border-color: var(--coral); }
.contact-line:nth-child(3) .ic { background: var(--mint); border-color: var(--mint); color: var(--ink); }
.contact-line .lab { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,246,236,.6); font-weight: 700; }
.contact-line .val { font-size: 1.12rem; font-weight: 700; }
.contact-line a.val:hover { color: var(--yellow); }

.contact-form {
  background: var(--white); border: 4px solid var(--ink); border-radius: var(--r-lg);
  padding: 36px; box-shadow: var(--shadow-pop);
}
.contact-form h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
.contact-form > p { color: var(--ink-soft); margin-bottom: 22px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem; padding: 13px 16px;
  border: 3px solid var(--ink); border-radius: 14px; background: var(--cream); color: var(--ink);
  transition: box-shadow .2s, transform .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: 4px 4px 0 var(--purple); transform: translate(-1px,-1px);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin-top: 12px; text-align: center; }
.form-msg { display:none; margin-top: 14px; padding: 12px 16px; border-radius: 14px; font-weight: 700;
  background: var(--mint); border: 3px solid var(--ink); }
.form-msg.show { display: block; animation: pop-in .3s var(--ease); }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: var(--ink); color: var(--cream); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-mark { background: var(--yellow); }
.footer-brand p { color: rgba(255,246,236,.7); margin-top: 16px; max-width: 30em; }
.footer-col h4 { font-size: 1rem; font-weight: 800; margin-bottom: 16px; }
.footer-col a, .footer-col li { display: block; color: rgba(255,246,236,.72); padding: 6px 0; font-weight: 500; }
.footer-col a:hover { color: var(--yellow); }
.footer-col a.foot-privacy { color: var(--yellow); font-weight: 700; }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .88rem; color: rgba(255,246,236,.6); }
.footer-bottom a { color: var(--yellow); font-weight: 700; }

/* =================================================================
   WAVE DIVIDER
   ================================================================= */
.wave { display: block; width: 100%; height: 60px; }

/* =================================================================
   SCROLL REVEAL
   ================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* =================================================================
   PRIVACY PAGE
   ================================================================= */
.legal-hero {
  padding: 150px 0 60px; text-align: center;
  background:
    radial-gradient(circle at 20% 30%, rgba(139,92,246,.16), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(255,90,126,.14), transparent 45%),
    var(--cream);
  position: relative; overflow: hidden;
}
.legal-hero::before {
  content:""; position:absolute; inset:0; opacity:.4;
  background-image: radial-gradient(rgba(24,210,164,.3) 2px, transparent 2.5px); background-size: 32px 32px;
  animation: dotsDrift 16s linear infinite;
}
.legal-hero .container { position: relative; z-index: 2; }
.legal-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; letter-spacing: -.02em; }
.legal-hero p { color: var(--ink-soft); margin-top: 10px; font-weight: 500; }
.legal-body { padding: 56px 0 90px; }
.legal-wrap {
  max-width: 860px; margin: 0 auto; background: var(--white);
  border: 4px solid var(--ink); border-radius: var(--r-lg); padding: 48px;
  box-shadow: var(--shadow-pop);
}
.legal-wrap h2 { font-size: 1.5rem; font-weight: 800; margin: 34px 0 12px; letter-spacing: -.01em; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 { font-size: 1.1rem; font-weight: 700; margin: 20px 0 8px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); margin-bottom: 12px; font-size: 1rem; }
.legal-wrap ul { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.legal-wrap a { color: var(--purple); font-weight: 700; text-decoration: underline; }
.legal-wrap .updated { display:inline-block; background: var(--yellow); border: 2px solid var(--ink); border-radius: 100px; padding: 5px 14px; font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: 8px; }
.back-home { margin-top: 28px; }

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 420px; max-width: 460px; }
  .about-grid, .fabric-grid, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cat-grid, .feature-grid, .why-grid { grid-template-columns: repeat(2,1fr); }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .section { padding: 60px 0; }
  .marquee-track span { font-size: 1.1rem; }
  .legal-wrap { padding: 28px; }
}
@media (max-width: 540px) {
  .cat-grid, .feature-grid, .why-grid, .stat-grid { grid-template-columns: 1fr; }
  .fabric-photos { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero h1 .hl { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
