/* =========================================================
   INTERCRAFT — Premium redesign
   Brand preserved from intercraftindia.com:
   Montserrat · orange #ff4f00 · ink #282828 · navy #02111e
   Fonts loaded via <link> in HTML (works when opening index.html)
   ========================================================= */

:root {
  --ink: #1c1c1c;
  --ink-soft: #2d2d2d;
  --ivory: #ffffff;
  --ivory-warm: #faf9f7;
  --sand: #f3f1ee;
  --saffron: #ff4f00;
  --saffron-deep: #fa5f0b;
  --maroon: #ff4f00;
  --maroon-deep: #dc4400;
  --indigo: #02111e;
  --turmeric: #ff6a1a;
  --gold: #fe4f00;
  --gold-light: #ff8a4c;
  --mehendi: #333333;
  --leaf: #34d400;
  --white: #ffffff;
  --muted: #5c5c5c;
  --border: rgba(0, 0, 0, 0.07);
  --shadow: 0 18px 50px rgba(2, 17, 30, 0.1);
  --shadow-sm: 0 8px 24px rgba(2, 17, 30, 0.07);
  --radius: 12px;
  --radius-lg: 18px;
  --nav-h: 86px;
  --nav-float: 14px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  --font: 'Montserrat', system-ui, -apple-system, sans-serif;
  --bg-about: none;
  --bg-studio: none;
  --bg-collections: none;
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-float) + var(--nav-h) + 12px);
}

body {
  font-family: var(--font);
  background:
    radial-gradient(ellipse 120% 80% at 0% -10%, rgba(255, 79, 0, 0.04), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 0%, rgba(2, 17, 30, 0.03), transparent 45%),
    linear-gradient(180deg, #fdfbf8 0%, #ffffff 28%, #faf8f5 100%);
  color: var(--ink);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(40, 40, 40, 0.35) 3px,
      rgba(40, 40, 40, 0.35) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 3px,
      rgba(40, 40, 40, 0.28) 3px,
      rgba(40, 40, 40, 0.28) 4px
    );
}

body > * {
  position: relative;
  z-index: 1;
}

body.nav-open { overflow: hidden; touch-action: none; }

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .heritage-strip-inner,
  .heritage-strip,
  .hero-bg-layer,
  .hero-bg::after { animation: none !important; }
  .hero-bg-layer--1 { opacity: 1 !important; transform: none !important; }
}

.container {
  width: min(var(--max), 92vw);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron-deep);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.025em;
}

.section-subtitle {
  font-size: 1.02rem;
  color: #4a4a4a;
  max-width: 620px;
  margin-top: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-label {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section-header.center .section-subtitle,
.section-header.center .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header.center .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  margin: 16px auto 0;
}

.section-header:not(.center) .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  margin-top: 14px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  line-height: 1.2;
}

.btn-primary,
.btn-gold {
  background: var(--saffron);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 79, 0, 0.24);
}

.btn-primary:hover,
.btn-gold:hover {
  background: var(--maroon-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(255, 79, 0, 0.32);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
}

.btn-outline:hover {
  background: #fff;
  color: var(--saffron);
  border-color: #fff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

.cta-banner .btn-gold {
  background: #fff;
  color: var(--saffron);
  box-shadow: none;
}

.cta-banner .btn-gold:hover {
  background: var(--indigo);
  color: #fff;
}

/* ── Navigation — floating bar, same on every page ── */
.nav {
  position: fixed;
  top: var(--nav-float);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: min(calc(var(--max) + 24px), calc(100% - 24px));
  height: auto;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.nav-inner {
  position: relative;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: var(--nav-h);
  margin: 0;
  gap: 18px;
  padding: 8px 18px 8px 22px;
  background: #ffffff;
  backdrop-filter: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(2, 17, 30, 0.12);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled .nav-inner {
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(2, 17, 30, 0.14);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: calc(var(--nav-h) - 20px);
  margin-left: 14px;
}

.nav-logo img {
  height: 100%;
  width: auto;
  max-height: 70px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: none;
  flex-shrink: 0;
}

.nav-logo-text { display: none !important; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  padding: 10px 14px;
  color: var(--ink);
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-shadow: none;
}

.nav-links a:hover,
.nav-links a.active:not(.nav-cta) {
  background: rgba(255, 79, 0, 0.08);
  color: var(--saffron);
}

.nav-cta,
.nav-links a.nav-cta,
.nav-links a.nav-cta.active {
  background: var(--saffron) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 100px !important;
  padding: 10px 20px !important;
  text-shadow: none !important;
  margin-left: 8px;
}

.nav-cta:hover,
.nav-links a.nav-cta:hover {
  background: var(--maroon-deep) !important;
  color: #fff !important;
}

.nav-dropdown-menu a {
  color: var(--ink-soft) !important;
  text-shadow: none !important;
}

.nav-dropdown-menu a.active {
  background: rgba(255, 79, 0, 0.1) !important;
  color: var(--saffron) !important;
  font-weight: 600;
}

.nav-dropdown { position: relative; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 240px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 14px !important;
  border-radius: 8px;
  color: var(--ink-soft) !important;
  font-size: 13px !important;
  text-shadow: none !important;
}

.nav-dropdown-menu a:hover {
  background: var(--ivory-warm) !important;
  color: var(--saffron) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.25s ease, background 0.3s ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 96vh;
  height: 96dvh;
  min-height: 536px;
  overflow: hidden;
  background: #140800;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-layer {
  position: absolute;
  inset: 0;
  background-color: #140800;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  filter: saturate(1.08) contrast(1.04) brightness(0.92);
  transform: none;
  animation: heroFluidFade 40s ease-in-out infinite;
}

.hero-paused .hero-bg-layer,
.hero-paused .hero-bg::after {
  animation-play-state: paused;
}

.hero-bg-layer--1 { animation-delay: 0s; }
.hero-bg-layer--2 { animation-delay: -8s; }
.hero-bg-layer--3 { animation-delay: -16s; }
.hero-bg-layer--4 { animation-delay: -24s; }
.hero-bg-layer--5 { animation-delay: -32s; }

@keyframes heroFluidFade {
  0% { opacity: 0; transform: scale(1) translate3d(0, 0, 0); }
  5% { opacity: 1; }
  18% { opacity: 1; transform: scale(1.02) translate3d(-0.4%, 0, 0); }
  24% { opacity: 0; transform: scale(1.03) translate3d(-0.6%, 0, 0); }
  100% { opacity: 0; transform: scale(1) translate3d(0, 0, 0); }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: -20%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 70% 45%, rgba(255, 90, 20, 0.22), transparent 65%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(255, 140, 60, 0.1), transparent 60%);
  animation: heroAmbient 12s ease-in-out infinite alternate;
  mix-blend-mode: soft-light;
}

@keyframes heroAmbient {
  0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  100% { transform: translate(-3%, 2%) scale(1.08); opacity: 1; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(2, 17, 30, 0.84) 0%, rgba(28, 12, 4, 0.42) 48%, rgba(2, 17, 30, 0.28) 100%),
    linear-gradient(0deg, rgba(255, 79, 0, 0.08), transparent 40%);
}

.hero-overlay--fluid {
  background:
    linear-gradient(105deg,
      rgba(12, 6, 2, 0.82) 0%,
      rgba(12, 6, 2, 0.55) 42%,
      rgba(12, 6, 2, 0.22) 68%,
      rgba(255, 79, 0, 0.1) 100%),
    linear-gradient(to top, rgba(12, 6, 2, 0.4) 0%, transparent 42%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-float) + var(--nav-h));
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 79, 0, 0.55);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.15s forwards;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.25); }
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffb088;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeUp 0.8s 0.45s forwards;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  max-width: 14ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--saffron);
  display: inline;
}

.hero-desc {
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 36em;
  margin-bottom: 30px;
  line-height: 1.75;
  font-weight: 400;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 26px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
  transform: translateY(22px);
}

.hero-meta span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saffron);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.8s 0.75s forwards;
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 8px;
  backdrop-filter: blur(18px);
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.hero-card-frame {
  border: 1px solid rgba(255, 79, 0, 0.28);
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 32px 26px;
  text-align: center;
  background: linear-gradient(160deg, rgba(255, 79, 0, 0.08), transparent 55%);
}

.hero-years {
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--saffron);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}

.hero-card-frame h3 {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-card-frame p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.hero-card-list {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
  display: grid;
  gap: 8px;
}

.hero-card-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-card-list span::before {
  content: '✓';
  color: var(--saffron);
  font-weight: 700;
  font-size: 11px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge, .hero-eyebrow, .hero h1, .hero-desc, .hero-actions, .hero-card {
  transform: translateY(22px);
}

/* ── Heritage marquee ── */
.heritage-strip {
  background: var(--saffron);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.heritage-strip-inner {
  display: flex;
  gap: 40px;
  animation: marquee 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.heritage-strip.is-paused,
.heritage-strip.is-paused .heritage-strip-inner {
  animation-play-state: paused;
}

.heritage-strip span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.heritage-strip span::before {
  content: '•';
  opacity: 0.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Stats ── */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  text-align: center;
  padding: 36px 16px;
  position: relative;
  transition: background 0.25s ease;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: #e8e8e8;
}

.stat-item:hover { background: #fafafa; }

.stat-item h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--saffron);
  line-height: 1;
}

.stat-item p {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
}

/* ── About ── */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #faf8f5 0%, #f3f1ee 100%);
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.86);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
  margin-top: 40px;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: relative;
}

.about-images img {
  border-radius: var(--radius);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease;
}

.about-images img:hover { transform: scale(1.02); }

.about-images img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
  min-height: 280px;
}

.years-badge {
  position: absolute;
  bottom: -16px;
  left: -12px;
  width: 110px;
  height: 110px;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255, 79, 0, 0.35);
  z-index: 2;
  border: 4px solid #fff;
}

.years-badge strong {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.years-badge span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.pillar {
  padding: 22px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--saffron);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.pillar:hover::before { opacity: 1; }

.pillar-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #fff5ef, #ffe8db);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--saffron);
  font-weight: 700;
}

.pillar h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--ink);
}

.pillar p {
  font-size: 13px;
  color: #555;
  line-height: 1.55;
}

/* ── Collections ── */
.collections-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #faf8f5 100%);
  position: relative;
}

.collections-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  grid-column: span 4;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-sm);
}

.collection-card.featured {
  grid-column: span 8;
  aspect-ratio: 16/10;
}

.collection-card.wide {
  grid-column: span 6;
  aspect-ratio: 4/3;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92) contrast(1.04);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.collection-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.78) contrast(1.08);
}

.collection-frame {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.3s ease, inset 0.3s ease;
}

.collection-card:hover .collection-frame {
  border-color: rgba(255, 79, 0, 0.75);
}

.collection-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  transition: background 0.35s ease;
}

.collection-card:hover .collection-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(220, 68, 0, 0.45) 50%, transparent 100%);
}

.collection-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--saffron);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}

.collection-overlay h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.collection-overlay p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
  line-height: 1.45;
  max-width: 36em;
}

.collection-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: #ffb088;
}

.collection-card:hover .collection-link { color: #fff; }

/* ── Studio ── */
.studio-section {
  padding: 88px 0;
  background: linear-gradient(180deg, #f7f5f2 0%, #fff 100%);
  position: relative;
}

.studio-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.studio-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

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

.studio-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.studio-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--saffron);
  transition: var(--transition);
}

.studio-feature:hover {
  border-color: rgba(255, 79, 0, 0.35);
  border-left-color: var(--saffron);
  transform: translateX(4px);
}

.studio-feature-num { display: none; }

.studio-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--ink);
}

.studio-feature p {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Design studio page */
.atelier-intro {
  padding: 88px 0 40px;
  background: #f7f5f2;
}

.atelier-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.atelier-kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}

.atelier-place {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  margin: 0 0 18px;
}

.atelier-aside-copy,
.atelier-lead p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.atelier-lead .section-title { margin-bottom: 18px; }

.atelier-flow {
  padding: 24px 0 80px;
  background: #f7f5f2;
}

.atelier-flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.atelier-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 26px;
  min-height: 210px;
}

.atelier-step span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--saffron);
  margin-bottom: 16px;
}

.atelier-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}

.atelier-step p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

.atelier-mosaic-wrap {
  padding: 80px 0;
}

.atelier-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-template-rows: 220px 220px;
  gap: 14px;
  margin-top: 32px;
}

.atelier-tile {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #ebe8e4;
}

.atelier-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.atelier-tile--tall {
  grid-row: 1 / span 2;
}

.atelier-tile--wide {
  grid-column: 2 / span 2;
}

.atelier-range {
  padding: 0 0 40px;
}

.atelier-range-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.atelier-line {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 140px;
  padding: 22px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.atelier-line:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 0, 0.35);
  box-shadow: var(--shadow-sm);
}

.atelier-line strong {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.atelier-line span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--saffron);
  margin-top: 16px;
}

/* ── Global ── */
.global-section {
  padding: 88px 0;
  background: var(--indigo);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.global-section::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 79, 0, 0.18), transparent 70%);
  pointer-events: none;
}

.global-section .section-label { color: var(--gold-light); }
.global-section .section-title { color: #fff; }
.global-section .section-subtitle { color: rgba(255, 255, 255, 0.72); }

.regions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 40px;
}

.region-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}

.region-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 138, 76, 0.5);
  transform: translateY(-4px);
}

.region-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--saffron);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.region-card li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.region-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--saffron);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Page hero — same viewport size as home ── */
.page-hero {
  position: relative;
  height: 96vh;
  height: 96dvh;
  min-height: 536px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-float) + var(--nav-h));
  padding-bottom: 48px;
  margin-top: 0;
  overflow: hidden;
  background: #140800;
}

.page-hero > img {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
  filter: brightness(0.72) contrast(1.08) saturate(1.08);
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(12, 6, 2, 0.42) 0%,
      rgba(12, 6, 2, 0.52) 48%,
      rgba(12, 6, 2, 0.62) 100%),
    radial-gradient(ellipse 80% 70% at 50% 55%, rgba(12, 6, 2, 0.28), transparent 70%);
}

/* Product category heroes — mixed sample collage, full-bleed */
.page-hero--embroidery > img,
.page-hero--accessories > img,
.page-hero--linen > img,
.page-hero--crystals > img,
.page-hero--panels > img {
  object-position: center;
  object-fit: cover;
  filter: brightness(0.7) contrast(1.08) saturate(1.08);
}

.page-hero--company > img {
  object-position: center 42%;
  filter: brightness(0.62) contrast(1.08) saturate(1.04);
}

.page-hero--studio > img {
  object-position: center 48%;
  filter: brightness(0.62) contrast(1.1) saturate(1.08);
}

.page-hero--infra > img {
  object-position: center 40%;
  filter: brightness(0.66) contrast(1.1) saturate(1.06);
}

.page-hero--credentials > img {
  object-position: center 42%;
  filter: brightness(0.62) contrast(1.08) saturate(1.04);
}

.page-hero--global {
  background: #f4f0ea;
  align-items: stretch;
  justify-content: center;
  padding-bottom: 0;
}

.page-hero--global .page-hero-overlay { display: none; }

.page-hero--victoria > img,
.page-hero--contact > img {
  filter: brightness(0.76) contrast(1.06) saturate(1.06);
  object-position: center 18%;
  transform: scale(1.1) translateY(14%);
}

.hero-world {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  container-type: size;
  padding: calc(var(--nav-float) + var(--nav-h) + 92px) 24px 28px;
}

.hero-world-stage {
  position: relative;
  width: min(100cqi, calc(100cqh * 950 / 620));
  height: auto;
  aspect-ratio: 950 / 620;
  max-width: 100%;
  max-height: 100%;
}

.hero-world-stage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transform: none;
  position: static;
  inset: auto;
}

.hero-world-stage .supply-pin {
  width: 16px;
  height: 16px;
  z-index: 3;
}

.hero-world-stage .supply-pin::after {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
}

.hero-world-stage .supply-pin span {
  font-size: 12px;
  padding: 6px 10px;
}

.hero-world-copy {
  z-index: 2;
  pointer-events: none;
  align-self: flex-start;
  padding-top: 6px;
}

.hero-world-copy .hero-eyebrow { color: var(--saffron); }

.page-hero--victoria .page-hero-overlay,
.page-hero--contact .page-hero-overlay {
  background:
    linear-gradient(180deg,
      rgba(8, 12, 22, 0.4) 0%,
      rgba(8, 12, 22, 0.48) 50%,
      rgba(12, 8, 4, 0.62) 100%),
    radial-gradient(ellipse 70% 70% at 50% 48%, rgba(255, 180, 80, 0.08), transparent 65%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .hero-eyebrow {
  animation: fadeUp 0.8s 0.2s forwards;
  opacity: 0;
  margin-bottom: 14px;
  color: #ffb088;
  font-size: 14px;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: min(18ch, 100%);
  margin-inline: auto;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
  margin-inline: auto;
  max-width: min(38em, 92%);
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.page-hero.page-hero--global .hero-eyebrow { color: var(--saffron); }
.page-hero.page-hero--global h1 {
  color: var(--ink);
  text-shadow: none;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
}
.page-hero.page-hero--global p {
  color: var(--muted);
  max-width: 36em;
}

/* ── Content ── */
.content-section { padding: 80px 0; }

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

.content-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
}

.content-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  border-radius: 0 0 3px 3px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.content-card:hover {
  border-color: rgba(255, 79, 0, 0.25);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.content-card:hover::before { opacity: 1; }

.content-card h3 {
  font-size: 1.1rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px;
  color: var(--saffron) !important;
}

.content-card p {
  font-size: 0.92rem !important;
  color: #444 !important;
  line-height: 1.7;
}

.content-card.span-2 { grid-column: span 2; }

.prose-lead {
  max-width: 820px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 8px;
}

.founder-block {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 32px;
  align-items: center;
  margin: 8px 0 40px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.founder-photo {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #ebe8e4;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-block h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--ink);
}

.founder-block p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.gallery-grid--wide .gallery-item {
  aspect-ratio: 4 / 3;
}

@media (max-width: 700px) {
  .founder-block {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-photo {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* ── Gallery ── */
.gallery-section { padding: 56px 0 72px; }

.gallery-intro {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-category { margin-bottom: 48px; }

.gallery-category h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--sand);
  color: var(--ink);
  letter-spacing: -0.01em;
}

.gallery-category h3::before { display: none; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: #f0eeeb;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 24px rgba(2, 17, 30, 0.06);
  transition: border-color 0.25s ease, transform 0.35s ease, box-shadow 0.35s ease;
  display: block;
  width: 100%;
}

.gallery-grid > .gallery-item,
.gallery-category .gallery-item {
  align-self: stretch;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  border-color: rgba(255, 79, 0, 0.45);
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(2, 17, 30, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.14);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
  filter: contrast(1.08) saturate(1.08) brightness(1.02);
}

.gallery-item:hover img { transform: scale(1.2); }

/* Soft zoom cue — no + / code symbols */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after { opacity: 1; }

.branded-media::before {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 52px;
  height: 28px;
  z-index: 3;
  background: url('../assets/images/brand/logo.png') center / contain no-repeat;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  opacity: 0.88;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.82);
  background-origin: content-box;
  padding: 4px 6px;
  border-radius: 6px;
  box-sizing: border-box;
}

.collection-card.branded-media::before {
  width: 58px;
  height: 32px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
}

/* Outfit look section */
.look-section {
  padding: 24px 0 80px;
  background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
  border-top: 1px solid var(--border);
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}

.look-card {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.look-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.look-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #ebe8e4;
}

.look-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.06) saturate(1.1) brightness(1.03);
  transition: transform 0.5s ease;
}

.look-card:hover .look-card-media img {
  transform: scale(1.04);
}

.look-card figcaption {
  padding: 14px 16px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  letter-spacing: -0.01em;
}

.look-card.branded-media {
  position: relative;
}

.look-card.branded-media::before {
  bottom: 52px;
  right: 12px;
}

.collection-tag { display: none; }
.product-label { display: none; }

@media (max-width: 768px) {
  .look-grid { grid-template-columns: 1fr; max-width: 420px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .branded-media::before { width: 44px; height: 24px; right: 8px; bottom: 8px; }
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(2, 17, 30, 0.94);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 79, 0, 0.5);
  box-shadow: var(--shadow);
  transform: scale(0.96);
  transition: transform 0.35s ease;
}

.lightbox.active img { transform: scale(1); }

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-close:hover { background: var(--saffron); }

/* ── Contact ── */
.contact-section { padding: 56px 0 32px; }

.contact-intro {
  max-width: 40rem;
  margin: 0 auto 36px;
  text-align: center;
}

.contact-intro .section-subtitle { margin: 0 auto; }

.reach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.reach-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 132px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reach-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 79, 0, 0.35);
  box-shadow: var(--shadow-sm);
}

.reach-card span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
}

.reach-card strong {
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.35;
}

.reach-card small {
  color: var(--muted);
  font-size: 0.8rem;
}

.contact-stack {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.contact-facts {
  display: grid;
  gap: 10px;
}

.contact-fact {
  background: var(--ivory-warm);
  border-radius: 12px;
  padding: 14px 16px;
}

.contact-fact b {
  display: block;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-fact p,
.contact-fact a {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
}

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

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 22px;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff5ef;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.contact-action:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: #fff;
}

.contact-map {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 200px;
  background: var(--sand);
}

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

/* ── Supply markets map ── */
.supply-section {
  padding: 24px 0 72px;
}

.supply-stage {
  position: relative;
  margin: 8px auto 28px;
  max-width: 980px;
  background: #f4f0ea;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.supply-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.supply-pin {
  position: absolute;
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50% 50% 50% 0;
  background: var(--saffron);
  transform: translate(-50%, -92%) rotate(-45deg);
  box-shadow: 0 3px 8px rgba(255, 79, 0, 0.35);
  cursor: pointer;
  z-index: 2;
}

.supply-pin::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: #fff;
}

.supply-pin span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 7px);
  transform: translateX(-50%) rotate(45deg);
  background: var(--indigo);
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}

.supply-pin:hover,
.supply-pin:focus-visible,
.supply-pin.is-on {
  z-index: 4;
  background: var(--maroon-deep);
}

.supply-pin:hover span,
.supply-pin:focus-visible span,
.supply-pin.is-on span {
  opacity: 1;
}

.supply-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  list-style: none;
  max-width: 920px;
  margin: 0 auto;
  padding: 0;
}

.supply-legend li {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.supply-legend b {
  color: var(--ink);
  font-weight: 700;
  margin-right: 4px;
}

.form-status {
  display: none;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
}

.form-status.show { display: block; }
.form-status.ok { background: #e8f6ec; color: #1b6b38; }
.form-status.err { background: #fff0e8; color: #9a3412; }

.contact-info-card,
.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light));
  border-radius: 0 0 3px 3px;
}

.contact-info-card h3,
.contact-form h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 22px;
  color: var(--ink);
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: #fff5ef;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--saffron);
  line-height: 0;
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.contact-detail > div:last-child {
  min-width: 0;
  flex: 1;
  line-height: 1.5;
}

.contact-detail strong {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 3px;
  font-weight: 600;
}

.contact-detail a {
  color: var(--ink);
  word-break: break-word;
}

.contact-detail a:hover { color: var(--saffron); }

.founder-card {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  align-items: center;
}

.founder-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--saffron);
  flex-shrink: 0;
  background: #eee;
}

.founder-card > div {
  min-width: 0;
  flex: 1;
}

.founder-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.founder-card .role {
  font-size: 12px;
  color: var(--saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.founder-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
  font-size: 0.86rem;
}

.founder-links a:hover { color: var(--saffron); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group { margin-bottom: 12px; }

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--ivory-warm);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--saffron);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 79, 0, 0.12);
}

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

/* ── Credentials ── */
.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 2px solid var(--saffron);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  margin-top: 32px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.credential-badge .badge-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.credential-badge h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.credential-badge p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Get in Touch folio ── */
.touch-visit {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(320px, 1.12fr);
  min-height: 620px;
  background: var(--indigo);
  color: #f6f1ea;
}

.touch-visit-copy {
  padding: clamp(40px, 7vw, 88px) clamp(28px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.touch-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

.touch-visit-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 18px;
  color: #fff;
}

.touch-lead {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.touch-sheet {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.touch-sheet > div {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.touch-sheet dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding-top: 3px;
}

.touch-sheet dd,
.touch-sheet a {
  margin: 0;
  color: #fff;
  font-size: 0.98rem;
  word-break: break-word;
}

.touch-sheet a:hover { color: var(--gold-light); }

.touch-map-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--gold-light);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.touch-map-link:hover { color: #fff; }

.touch-map {
  min-height: 420px;
  background: #14202c;
}

.touch-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.touch-people {
  background: var(--ivory-warm);
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.touch-people-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.touch-proprietor {
  display: flex;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 22px 26px;
}

.touch-proprietor img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  background: #eee;
}

.touch-proprietor h3 {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.touch-proprietor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.touch-proprietor-links a:hover { color: var(--saffron); }

.touch-facebook {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 28px 26px;
  background: #1877f2;
  color: #fff;
  min-height: 100%;
  text-decoration: none;
}

.touch-facebook span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
}

.touch-facebook strong {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.touch-facebook small {
  font-size: 0.85rem;
  opacity: 0.85;
}

.touch-facebook:hover { background: #1464d0; color: #fff; }

.touch-letter {
  padding: 72px 0 96px;
  background:
    linear-gradient(180deg, #fff 0%, var(--ivory-warm) 100%);
}

.touch-form {
  max-width: 720px;
  margin: 0 auto;
}

.touch-form h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.touch-letter-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 36rem;
}

.touch-form .btn { min-width: 220px; }

/* ── Social / contact extra ── */
.contact-social-section { padding: 0 0 72px; }

.contact-social-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-social-wrap:empty { display: none; }

.contact-social-wrap h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-social-wrap > p {
  margin: 0;
  color: #555;
}

.contact-social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.contact-social-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--ivory-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.contact-social-card:hover {
  border-color: rgba(255, 79, 0, 0.35);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.contact-social-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--maroon-deep));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.contact-social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-social-card strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.contact-social-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--saffron);
  font-weight: 500;
  margin-top: 2px;
}

.contact-social-card small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ── WhatsApp ── */
.whatsapp-float {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px) + 16px);
  right: max(20px, env(safe-area-inset-right, 0px) + 16px);
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  line-height: 0;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ── Footer ── */
.footer {
  background: #141414;
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 24px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--gold-light), var(--saffron));
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 36px;
  margin-bottom: 40px;
  align-items: start;
}

.footer-name,
.footer a.footer-name {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer li {
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer a {
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s ease;
}

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

.footer-channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 22px;
  padding: 2px 0 16px;
}

.footer-channels a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.04);
}

.footer-channels a:hover {
  color: var(--gold-light);
  border-color: rgba(255, 186, 120, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.footer-channels svg {
  width: 16px;
  height: 16px;
  display: block;
  flex-shrink: 0;
}



.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
}

.footer-tagline {
  color: var(--gold-light);
  font-weight: 500;
}

/* Footer social (injected by social.js) */
.footer-social {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8) !important;
  line-height: 1;
  transition: var(--transition);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  display: block;
  flex-shrink: 0;
}

.footer-social-link:hover {
  background: rgba(255, 79, 0, 0.22);
  border-color: var(--saffron);
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── Trust / export strip ── */
.trust-section {
  padding: 28px 0;
  background: var(--ivory-warm);
  border-bottom: 1px solid var(--border);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trust-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

/* ── Why partner / value props ── */
.value-section {
  padding: 96px 0;
  background: #fff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.value-card {
  padding: 32px 28px;
  background: var(--ivory-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 79, 0, 0.18);
  background: #fff;
}

.value-card:hover::before { opacity: 1; }

.value-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--saffron);
  margin-bottom: 14px;
  display: block;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

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

/* ── Process / how we work ── */
.process-section {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--ivory-warm) 0%, #fff 100%);
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 28px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.process-step:hover {
  border-color: rgba(255, 79, 0, 0.3);
  box-shadow: var(--shadow-sm);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Audience chips ── */
.audience-section {
  padding: 72px 0 88px;
  background: #fff;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.audience-chip {
  padding: 12px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--ivory-warm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.audience-chip:hover {
  border-color: rgba(255, 79, 0, 0.4);
  color: var(--saffron);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Refined CTA ── */
.cta-banner {
  padding: 88px 0;
  background:
    radial-gradient(ellipse 80% 120% at 100% 0%, rgba(255, 138, 76, 0.35), transparent 55%),
    linear-gradient(135deg, var(--saffron) 0%, var(--maroon-deep) 55%, #b83600 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

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

.cta-kicker {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}

.cta-banner h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.2;
  text-transform: none;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 1.02rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.stat-item h3 {
  letter-spacing: -0.03em;
}

.stat-item p {
  letter-spacing: 0.08em;
}

/* Fluid section rhythm */
.about-section,
.collections-section,
.studio-section,
.value-section,
.process-section,
.audience-section,
.content-section,
.gallery-section,
.contact-section {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

/* Textile / Kolkata atmosphere */
.fabric-section {
  position: relative;
}

.fabric-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 0, 0.35), transparent);
  opacity: 0.7;
}

/* Kolkata infrastructure cards */
.infra-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.infra-card {
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.infra-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 79, 0, 0.06), transparent 50%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 8px,
      rgba(255, 79, 0, 0.03) 8px,
      rgba(255, 79, 0, 0.03) 9px
    );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.infra-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 79, 0, 0.28);
  box-shadow: var(--shadow);
}

.infra-card:hover::after { opacity: 1; }

.infra-icon {
  display: block;
  font-size: 1.25rem;
  color: var(--saffron);
  margin-bottom: 14px;
  line-height: 1;
}

.infra-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.infra-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.collection-card,
.value-card,
.pillar,
.region-card,
.content-card,
.studio-feature {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease,
              border-color 0.35s ease,
              background 0.35s ease;
}

.heritage-strip {
  background: linear-gradient(90deg, #e84500 0%, var(--saffron) 40%, #ff6a1a 70%, var(--saffron) 100%);
  background-size: 200% 100%;
  animation: ribbonShift 14s linear infinite;
}

@keyframes ribbonShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.section-header.center .section-title::after,
.section-header:not(.center) .section-title::after {
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), rgba(255, 138, 76, 0.2), transparent);
}

/* ── 404 ── */
.page-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-float) + var(--nav-h) + 40px) 20px 60px;
}

.page-404 h1 {
  font-size: 5rem;
  font-weight: 800;
  color: var(--saffron);
  line-height: 1;
}

.page-404 p {
  margin: 12px 0 28px;
  color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .nav-links { gap: 4px; }
  .nav-links a { padding: 9px 10px; font-size: 12px; }
  .nav-cta, .nav-links a.nav-cta { margin-left: 4px; padding: 9px 14px !important; }
}

@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero-overlay--fluid {
    background:
      linear-gradient(180deg, rgba(12, 6, 2, 0.55) 0%, rgba(12, 6, 2, 0.78) 100%),
      linear-gradient(105deg, rgba(12, 6, 2, 0.72) 0%, rgba(12, 6, 2, 0.32) 75%);
  }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-card,
  .collection-card.featured,
  .collection-card.wide {
    grid-column: span 1;
    aspect-ratio: 3/4;
  }
  .regions-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid,
  .studio-grid,
  .contact-grid,
  .contact-stack,
  .reach-grid,
  .touch-people-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .touch-visit { grid-template-columns: 1fr; min-height: 0; }
  .touch-map iframe { min-height: 360px; }
  .years-badge { left: 8px; bottom: 8px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .infra-highlights { grid-template-columns: 1fr 1fr; }
  .atelier-intro-grid,
  .atelier-flow-grid { grid-template-columns: 1fr 1fr; }
  .atelier-range-grid { grid-template-columns: 1fr 1fr; }
  .atelier-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .atelier-tile--tall { grid-row: 1 / span 2; }
  .atelier-tile--wide { grid-column: 1 / span 2; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }

  .nav { min-height: 72px; width: calc(100% - 20px); }
  .nav-inner {
    min-height: 72px;
    border-radius: 22px;
    padding: 8px 12px 8px 16px;
  }
  .nav-logo { height: 52px; margin-left: 2px; }
  .nav-logo img { height: 52px; max-height: 52px; }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    bottom: auto;
    max-height: min(78vh, calc(100svh - var(--nav-h) - 28px));
    background: #fff;
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 14px 14px 16px;
    gap: 6px;
    transform: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, visibility 0.22s;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow-y: auto;
    z-index: 999;
    display: flex;
  }

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

  .nav-links > li {
    width: 100%;
    margin: 0;
    display: block;
  }

  .nav-links a {
    color: var(--ink) !important;
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px !important;
    border-radius: 10px;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.35;
    letter-spacing: 0;
    text-shadow: none !important;
    margin: 0 !important;
    white-space: normal;
  }

  .nav-links a:hover,
  .nav-links a.active:not(.nav-cta) {
    background: rgba(255, 79, 0, 0.08) !important;
    color: var(--saffron) !important;
  }

  .nav-links .nav-cta,
  .nav-links a.nav-cta,
  .nav-links a.nav-cta.active {
    text-align: center !important;
    margin: 6px 0 0 !important;
    padding: 13px 16px !important;
    background: var(--saffron) !important;
    color: #fff !important;
    border-radius: 100px !important;
  }

  body.nav-open .nav-toggle span { background: var(--ink) !important; }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    box-shadow: none;
    border: none;
    background: var(--ivory-warm);
    margin: 0;
    padding: 0;
    border-radius: 10px;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 420px;
    pointer-events: auto;
    padding: 6px;
    margin: 2px 0 4px 10px;
  }

  .nav-dropdown > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-dropdown-menu a,
  .nav-dropdown-menu li a {
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.35;
  }

  .hero-bg-layer {
    background-size: cover;
    background-position: center;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 96svh;
    height: 96svh;
  }
  .hero h1 { max-width: none; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1 1 auto; }
  .collections-grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .about-images { grid-template-columns: 1fr 1fr; }
  .about-images img:first-child { grid-row: span 1; min-height: 180px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card.span-2 { grid-column: span 1; }
  .atelier-intro-grid,
  .atelier-flow-grid,
  .atelier-range-grid { grid-template-columns: 1fr; }
  .atelier-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .atelier-tile,
  .atelier-tile--tall,
  .atelier-tile--wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .form-row { grid-template-columns: 1fr; }
  .reach-grid,
  .contact-stack,
  .contact-grid,
  .touch-people-row { grid-template-columns: 1fr; }
  .touch-visit-copy { padding: 40px 22px 36px; }
  .touch-sheet > div { grid-template-columns: 1fr; gap: 4px; }
  .touch-proprietor { flex-direction: column; text-align: center; }
  .touch-proprietor-links { justify-content: center; }
  .touch-facebook { min-height: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .regions-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .page-hero {
    min-height: 96svh;
    height: 96svh;
    padding-bottom: 36px;
  }
  .page-hero h1 { max-width: 16ch; }
  .page-hero > img {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none;
  }
  .hero-world-stage .supply-pin { width: 13px; height: 13px; }
  .product-pair { grid-template-columns: 1fr; }
  .contact-social-grid { grid-template-columns: 1fr; }
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
  .footer-social-link span { display: none; }
  .footer-social-link { width: 40px; height: 40px; padding: 0; border-radius: 50%; }
  .founder-card { flex-direction: column; text-align: center; }
  .founder-links { align-items: center; }
  .supply-pin { width: 12px; height: 12px; }
  .supply-legend { justify-content: flex-start; }
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .infra-highlights { grid-template-columns: 1fr 1fr; }
  .value-section,
  .process-section { padding: 64px 0; }
  .trust-row { gap: 10px 16px; }
  .trust-item { font-size: 11px; }
}

@media (max-width: 480px) {
  .about-images { grid-template-columns: 1fr; }
  .infra-highlights { grid-template-columns: 1fr; }
  .years-badge {
    width: 90px;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }
  .years-badge strong { font-size: 1.6rem; }
}
