/* ============================================================
   Rainy Garment — Global Styles
   Brand: deep navy + sky blue + warm ivory
============================================================ */

:root {
  --navy: #0b1f3a;
  --navy-2: #142d52;
  --sky: #4aa6e8;
  --sky-2: #2a86c9;
  --sky-soft: #e6f1fb;
  --ivory: #f8f5ef;
  --cream: #fbfaf6;
  --ink: #1a1f2c;
  --ink-2: #4a5466;
  --line: #e6e8ee;
  --gold: #b89968;
  --max-w: 1240px;
  --radius: 14px;
  --shadow-sm: 0 4px 14px rgba(11,31,58,.06);
  --shadow-md: 0 12px 40px rgba(11,31,58,.10);
  --shadow-lg: 0 24px 60px rgba(11,31,58,.16);
  --ease: cubic-bezier(.2,.7,.2,1);
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font-family: inherit; cursor: pointer; }
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--navy); margin: 0 0 .4em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.35rem; line-height: 1.3; }
p  { margin: 0 0 1em; color: var(--ink-2); }
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sky-2);
  font-weight: 600;
  margin-bottom: 14px;
}
.lead { font-size: 1.15rem; color: var(--ink-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--sky-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sky-soft); }
.btn-ghost { color: var(--navy); padding: 10px 0; }
.btn-ghost:hover { color: var(--sky-2); }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 44px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .name { font-family: var(--serif); font-size: 1.4rem; color: var(--navy); letter-spacing: .04em; }
.brand-text .tag { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink-2); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .95rem; font-weight: 500; color: var(--ink); position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--sky-2); transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none; background: none; border: none; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, var(--ivory) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-content .eyebrow { color: var(--sky-2); }
.hero-content h1 { color: var(--navy); }
.hero-content h1 em { font-style: italic; color: var(--sky-2); font-weight: 400; }
.hero-content .lead { max-width: 540px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 56px; padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-meta .num { font-family: var(--serif); font-size: 2.2rem; color: var(--navy); line-height: 1; }
.hero-meta .label { font-size: .82rem; color: var(--ink-2); margin-top: 6px; letter-spacing: .04em; }
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,31,58,.35) 100%);
}
.hero-visual img,
.hero-visual video.hero-video {
  width: 100%; height: 100%; object-fit: cover; transform: scale(1.02);
  display: block;
}
.hero-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 2;
  background: rgba(255,255,255,.95); padding: 14px 22px; border-radius: 999px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--navy); font-weight: 600;
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #2bbf6b; box-shadow: 0 0 0 4px rgba(43,191,107,.2); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255,255,255,.78); }
.section-dark .eyebrow { color: var(--sky); }
.section-light { background: #fff; }
.section-soft { background: var(--ivory); }

.section-head { max-width: 760px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards / Capabilities ---------- */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.cap-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.cap-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.cap-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sky-soft); color: var(--sky-2);
  margin-bottom: 22px;
}
.cap-icon svg { width: 26px; height: 26px; }
.cap-card h3 { color: var(--navy); margin-bottom: 10px; }
.cap-card p { font-size: .95rem; margin: 0; }

/* ---------- Categories grid (home) ---------- */
.cat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.cat-card {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,31,58,.85) 100%);
}
.cat-card .cap {
  position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 2; color: #fff;
}
.cat-card .cap h3 { color: #fff; margin: 0 0 4px; font-size: 1.4rem; }
.cat-card .cap span { font-size: .82rem; opacity: .85; letter-spacing: .04em; }
.cat-card:hover img { transform: scale(1.06); }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  text-align: center;
}
.stat .num {
  font-family: var(--serif); font-size: 3.2rem; line-height: 1;
  color: var(--sky); margin-bottom: 8px; display: block;
}
.section-light .stat .num { color: var(--navy); }
.stat .label { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; opacity: .8; }

/* ---------- Values list ---------- */
.values {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.value-card {
  background: var(--cream);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.value-card .num {
  font-family: var(--serif); font-size: 2.4rem; color: var(--sky-2);
  line-height: 1; margin-bottom: 14px;
}
.value-card h3 { margin-bottom: 8px; }
.value-card p { margin: 0; }

/* ---------- Team ---------- */
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.team-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  margin: 0 auto 18px; overflow: hidden;
  background: linear-gradient(135deg, var(--sky-soft), #fff);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-initials {
  font-family: var(--serif); font-size: 2.2rem; color: var(--sky-2); line-height: 1;
}
.team-card h3 { margin: 0 0 4px; font-size: 1.15rem; }
.team-role {
  display: block; font-size: .78rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sky-2); font-weight: 600; margin-bottom: 12px;
}
.team-card p { font-size: .92rem; margin: 0; }

/* ---------- Department-heads marquee ---------- */
.dept-marquee-wrap {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line); overflow: hidden;
}
.dept-marquee-label {
  text-align: center; font-size: .75rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.dept-marquee-track {
  display: flex; width: max-content;
  animation: dept-scroll 22s linear infinite;
}
.dept-marquee-track:hover { animation-play-state: paused; }
.dept-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 0 52px; border-right: 1px solid var(--line); min-width: 220px;
}
.dept-photo {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-soft), #fff);
  display: grid; place-items: center; border: 1px solid var(--line);
  margin-bottom: 14px;
}
.dept-initials {
  font-family: var(--serif); font-size: 1.6rem; color: var(--sky-2); line-height: 1;
}
.dept-item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.dept-role {
  font-size: .73rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky-2); font-weight: 600;
}
@keyframes dept-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Lookbook (homepage featured grid) ---------- */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 12px;
}
.lookbook-tile {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky-soft);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.lookbook-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease);
}
.lookbook-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lookbook-tile:hover img { transform: scale(1.06); }

/* ---------- Clients (logos) ---------- */.clients {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  align-items: center;
}
.clients .logo {
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  height: 90px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: all .25s var(--ease);
}
.clients .logo img {
  max-height: 50px; width: auto;
  filter: grayscale(100%) opacity(.78);
  transition: filter .25s var(--ease);
}
.clients .logo:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.clients .logo:hover img { filter: none; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 60%, var(--sky-2) 100%);
  padding: 70px 60px;
  color: #fff;
  display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
  align-items: center;
  overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.1), transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin: 0; max-width: 520px; }
.cta-banner .btn-light { align-self: center; justify-self: end; position: relative; z-index: 1; }

/* ---------- Products gallery ---------- */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 10px 20px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: .9rem; color: var(--ink); font-weight: 500;
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--sky-2); color: var(--sky-2); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--ivory);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease);
}
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11,31,58,.55) 100%);
  opacity: 0; transition: opacity .25s var(--ease);
}
.tile .label {
  position: absolute; bottom: 14px; left: 16px; z-index: 2;
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  opacity: 0; transform: translateY(6px); transition: all .3s var(--ease);
}
.tile:hover { transform: translateY(-4px); }
.tile:hover img { transform: scale(1.05); }
.tile:hover::after, .tile:hover .label { opacity: 1; transform: none; }

.tile.hide { display: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8,16,30,.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 8px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close, .lightbox .lb-prev, .lightbox .lb-next {
  position: absolute; background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.25); width: 48px; height: 48px;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 1.4rem; transition: background .2s var(--ease);
}
.lightbox .lb-close:hover, .lightbox .lb-prev:hover, .lightbox .lb-next:hover { background: rgba(255,255,255,.2); }
.lightbox .lb-close { top: 24px; right: 24px; }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ---------- Page header (subpages) ---------- */
.page-head {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(800px 300px at 20% 0%, rgba(74,166,232,.18), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(74,166,232,.14), transparent 60%);
}
.page-head .container { position: relative; }
.page-head h1 { color: #fff; margin-bottom: 14px; }
.page-head p { color: rgba(255,255,255,.78); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.crumbs {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 18px;
}
.crumbs a { color: rgba(255,255,255,.7); }

/* ---------- About / Two-column ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-img {
  position: relative; aspect-ratio: 5/6; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-img img,
.split-img video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Factory section: image on desktop, video on mobile */
.split-img .factory-video { display: none; }
@media (max-width: 768px) {
  .split-img .factory-video { display: block; }
  .split-img .factory-img  { display: none; }
}

.check-list { list-style: none; padding: 0; margin: 0 0 28px; }
.check-list li { position: relative; padding-left: 26px; margin-bottom: 10px; color: var(--ink-2); font-size: .95rem; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sky-2); font-weight: 700; }

/* ---------- Pillars ---------- */
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.pillar {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.pillar .num { font-family: var(--serif); color: var(--sky); font-size: 1.4rem; margin-bottom: 8px; }
.pillar h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.pillar p { color: rgba(255,255,255,.7); font-size: .92rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; }
.contact-info { display: grid; gap: 28px; }
.info-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.info-card .ico {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sky-soft); color: var(--sky-2);
  display: grid; place-items: center; flex-shrink: 0;
}
.info-card h4 { font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); margin: 0 0 6px; }
.info-card p, .info-card a { margin: 0; color: var(--ink); font-size: 1rem; }
.info-card a:hover { color: var(--sky-2); }

form.contact-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px;
}
.field { margin-bottom: 18px; display: block; }
.field label { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 8px; font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--line); background: var(--cream);
  font: inherit; color: var(--ink); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky-2); background: #fff;
  box-shadow: 0 0 0 4px rgba(74,166,232,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-msg { margin-top: 14px; font-size: .9rem; color: #2bbf6b; min-height: 1.4em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,.78);
  padding: 80px 0 30px;
  margin-top: 80px;
}
.foot-grid { display: grid; grid-template-columns: 1.4fr .8fr .8fr 1.2fr; gap: 40px; margin-bottom: 50px; }
.foot-brand img { height: 48px; margin-bottom: 16px; }
.foot-brand p { color: rgba(255,255,255,.65); font-size: .92rem; }
.foot-col h4 {
  font-family: var(--sans); font-size: .82rem; letter-spacing: .16em;
  text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 600;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot-col a { color: rgba(255,255,255,.7); font-size: .94rem; }
.foot-col a:hover { color: var(--sky); }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: background .2s var(--ease);
}
.socials a:hover { background: var(--sky-2); color: #fff; }
.socials svg { width: 16px; height: 16px; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.55);
  flex-wrap: wrap; gap: 12px;
}
.powered-by a {
  color: rgba(255,255,255,.75); font-weight: 600;
  letter-spacing: .02em; transition: color .2s var(--ease);
}
.powered-by a:hover { color: #fff; }
.powered-by .mx { color: #e63946; font-weight: 700; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 60;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 18px 12px 14px;
  background: #25d366; color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(37,211,102,.35), 0 4px 10px rgba(0,0,0,.18);
  font-weight: 600; font-size: .9rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(37,211,102,.45), 0 6px 14px rgba(0,0,0,.22); color: #fff; }
.wa-float svg { width: 22px; height: 22px; }

/* ---------- Ship-to (country flags) ---------- */
.ship-to {
  margin-top: 56px; padding-top: 40px;
  border-top: 1px solid var(--line);
  text-align: center;
}
.ship-to .eyebrow { display: block; margin-bottom: 18px; }
.flag-list {
  list-style: none; padding: 0; margin: 0;
  display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px;
  font-family: var(--serif); font-size: 1.4rem; color: var(--navy);
}
.flag-list li { display: inline-flex; align-items: center; gap: 10px; }
.flag-list .flag { font-size: 1.7rem; line-height: 1; }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; margin: 0;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial::before {
  content: '\u201C';
  position: absolute; top: 4px; left: 18px;
  font-family: var(--serif); font-size: 5rem; line-height: 1; color: var(--sky-2); opacity: .25;
}
.testimonial blockquote {
  margin: 0 0 18px; font-size: 1rem; line-height: 1.65; color: var(--ink);
  position: relative;
}
.testimonial figcaption { color: var(--ink-2); font-size: .88rem; }
.testimonial figcaption strong { color: var(--navy); }

/* ---------- Download bar (products page) ---------- */
.download-bar {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 28px; margin: 8px 0 32px;
  background: linear-gradient(135deg, #fff, var(--sky-soft));
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
}
.download-bar strong { display: block; color: var(--navy); font-size: 1.05rem; }
.download-bar span { color: var(--ink-2); font-size: .9rem; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 540px; margin: 0 auto; }
  .cap-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .clients { grid-template-columns: repeat(4, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse > :first-child { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { grid-template-columns: 1fr; padding: 50px 36px; text-align: left; }
  .cta-banner .btn-light { justify-self: start; }
}
@media (max-width: 700px) {
  .section { padding: 70px 0; }
  .nav-links {
    position: fixed; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav-links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-toggle { display: block; }
  .nav-cta .btn { display: none; }
  .cap-grid, .cat-grid, .values, .clients, .pillars, .team-grid, .lookbook-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .foot-bottom { flex-direction: column; }
  .hero-meta { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Mobile hero — full-bleed image background ---------- */
@media (max-width: 768px) {
  .hero {
    background: url('../img/hero-cover.webp') center center / cover no-repeat;
    min-height: 100vh;
    min-height: 100svh;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      160deg,
      rgba(11,31,58,.62) 0%,
      rgba(11,31,58,.30) 48%,
      rgba(11,31,58,.72) 100%
    );
    z-index: 0;
  }
  .hero-grid { position: relative; z-index: 1; }
  .hero-visual { display: none; }
  .hero-content .eyebrow { color: rgba(255,255,255,.80); }
  .hero-content h1 { color: #fff; }
  .hero-content h1 em { color: var(--sky); }
  .hero-content .lead { color: rgba(255,255,255,.78); }
  .hero-cta .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
  }
  .hero-cta .btn-outline:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
  }
  .hero-meta { border-top-color: rgba(255,255,255,.18); }
  .hero-meta .num { color: #fff; }
  .hero-meta .label { color: rgba(255,255,255,.70); }
}
