/* ============================================================================
   AB Finest Menswear — the house style.

   An ivory editorial system: warm paper ground, deep-navy ink, gold hairlines,
   a high-contrast serif for display and a light geometric sans for everything
   else. Squared corners and tracked capitals give it the feel of a printed
   lookbook rather than a web app. One set of tokens drives all of it, and a
   few dark "feature bands" invert the palette for contrast.
   ========================================================================== */

:root {
  --paper:    #f6f1e7;   /* the warm ivory ground */
  --paper-2:  #efe7d7;   /* a shade deeper, for alternating sections */
  --paper-3:  #e7dcc7;
  --card:     #fffdf8;   /* lifted surfaces */

  --ink:      #14203a;   /* deep navy — primary text and lines */
  --ink-2:    #283350;
  --ink-soft: #5b6274;
  --ink-faint:#66614f;   /* muted text — darkened to clear AA contrast on ivory */

  --gold:      #c19a4e;
  --gold-deep: #9c7529;
  --gold-soft: rgba(193, 154, 78, .14);
  --maroon:    #6d2e3d;

  --navy:    #101a30;    /* dark feature bands */
  --navy-2:  #0b1324;
  --cream:   #f2ead9;    /* text on dark */
  --cream-soft: #bcbccb;

  --line:      rgba(20, 32, 58, .14);
  --line-2:    rgba(20, 32, 58, .07);
  --line-gold: rgba(193, 154, 78, .45);

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --urdu:  "Noto Nastaliq Urdu", var(--serif);

  --maxw: 1220px;
  --pad: clamp(20px, 5vw, 64px);
  --section: clamp(64px, 9vw, 132px);
  --r: 3px;
  --shadow: 0 1px 2px rgba(20, 24, 40, .05), 0 22px 50px -28px rgba(20, 24, 40, .32);
  --shadow-lift: 0 2px 6px rgba(20, 24, 40, .08), 0 40px 80px -36px rgba(20, 24, 40, .42);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.06; letter-spacing: .002em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }
.center { text-align: center; }
[hidden] { display: none !important; }

/* --- shared editorial pieces ---------------------------------------------- */
.eyebrow {
  font-family: var(--sans); font-weight: 500; font-size: .72rem;
  letter-spacing: .28em; text-transform: uppercase; color: #866526; /* deep antique gold — clears AA (4.8:1) on ivory */
  display: inline-flex; align-items: center; gap: .8em;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .8; }
.eyebrow.centered { justify-content: center; }
.eyebrow.centered::after { content: ""; width: 26px; height: 1px; background: var(--gold); opacity: .8; }

.display { font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; }
.h-section { font-size: clamp(2rem, 4.4vw, 3.3rem); }
.lede { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); font-weight: 300; line-height: 1.75; }
.serif-italic { font-style: italic; }
.gold-word { color: var(--gold-deep); font-style: italic; }
.urdu { font-family: var(--urdu); direction: rtl; color: var(--gold-deep); line-height: 2.2; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-gold { height: 1px; width: 64px; background: var(--gold); border: 0; }
.ornament { display: inline-block; color: var(--gold); font-size: .8rem; letter-spacing: .5em; }
.ornament::before { content: "◆ ◆ ◆"; }

.section-head { max-width: 720px; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head .h-section { margin-top: .35em; }
.section-head p { margin: 1em 0 0; }

/* --- buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 500; font-size: .78rem;
  letter-spacing: .17em; text-transform: uppercase;
  padding: 1.05em 1.9em; border: 1px solid var(--ink); color: var(--ink);
  background: transparent; border-radius: var(--r); cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .12s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--ink); color: var(--cream); }
.btn:active { transform: translateY(1px); }
.btn.sm { padding: .78em 1.3em; font-size: .7rem; letter-spacing: .15em; }
.btn.lg { padding: 1.2em 2.3em; }
.btn.block { display: flex; width: 100%; }
.btn-gold { border-color: var(--gold); background: var(--gold); color: #2a2007; }
.btn-gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
.btn-ink { border-color: var(--ink); background: var(--ink); color: var(--cream); }
.btn-ink:hover { background: var(--navy-2); border-color: var(--navy-2); }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }
.btn-link { border: 0; padding: 0; background: none; color: var(--ink); letter-spacing: .16em; position: relative; }
.btn-link::after { content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 100%; background: var(--gold); transform: scaleX(.35); transform-origin: left; transition: transform .4s var(--ease); }
.btn-link:hover::after { transform: scaleX(1); }
.on-dark .btn, .btn.on-dark { border-color: rgba(242,234,217,.5); color: var(--cream); }
.on-dark .btn:hover, .btn.on-dark:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.on-dark .btn-gold, .btn-gold.on-dark { border-color: var(--gold); background: var(--gold); color: #2a2007; }
.on-dark .btn-gold:hover { background: #d4af6a; border-color: #d4af6a; color: #2a2007; }

/* ============================================================ announce bar */
.announce {
  background: var(--ink); color: var(--cream);
  font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  text-align: center; padding: .7em var(--pad); font-weight: 300;
}
.announce b { color: var(--gold); font-weight: 500; }

/* ================================================================== header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 10px 30px -24px rgba(20,24,40,.5); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 88px; transition: height .4s var(--ease); }
.site-header.scrolled .header-inner { height: 68px; }
.logo { display: flex; align-items: center; flex: none; }
.logo img { height: 40px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .logo img { height: 32px; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav a {
  font-family: var(--sans); font-size: .8rem; font-weight: 400; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-2); padding: .7em .95em; position: relative;
}
.nav a::after { content: ""; position: absolute; left: .95em; right: .95em; bottom: .5em; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: center; transition: transform .35s var(--ease); }
.nav a:hover { color: var(--ink); }
.nav a:hover::after, .nav a.on::after { transform: scaleX(1); }
.nav a.on { color: var(--ink); }
.header-end { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; align-items: center; }
.menu-toggle span { width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px); z-index: 60;
  background: var(--paper); border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform .45s var(--ease);
  padding: 108px var(--pad) var(--pad); display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-lift);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); padding: .35em 0; border-bottom: 1px solid var(--line-2); }
.mobile-menu a.on { color: var(--gold-deep); }
.mobile-menu .btn { margin-top: 20px; }
.scrim { position: fixed; inset: 0; z-index: 55; background: rgba(12,16,26,.4); opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.scrim.on { opacity: 1; pointer-events: auto; }

/* ==================================================================== hero */
.hero { position: relative; padding-block: clamp(40px, 6vw, 80px) var(--section); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.02fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 560px; }
.hero-copy .display { margin: .28em 0 0; }
.hero-copy .lede { margin: 1.4em 0 0; max-width: 45ch; }
.hero-actions { margin-top: 2.4em; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-tag { margin-top: 2.6em; display: inline-flex; align-items: center; gap: .8em; font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); }
.hero-tag .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-figure { position: relative; }
.hero-frame {
  position: relative; border: 1px solid var(--line-gold); padding: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.4), rgba(231,220,199,.2));
}
.hero-frame::after { content: ""; position: absolute; inset: 6px; border: 1px solid var(--line-gold); pointer-events: none; opacity: .5; }
.hero-media { position: relative; overflow: hidden; aspect-ratio: 3 / 4; background: var(--paper-3); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media video, .loom-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; left: -14px; bottom: 42px; z-index: 3;
  background: var(--ink); color: var(--cream); padding: .9em 1.4em;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 300;
}
.hero-badge b { display: block; font-family: var(--serif); font-size: 1.35rem; letter-spacing: .02em; color: var(--gold); text-transform: none; margin-top: .1em; }
.hero-scroll { margin-top: 3.5em; display: inline-flex; align-items: center; gap: .8em; font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint); }
.hero-scroll .line { width: 46px; height: 1px; background: var(--ink-faint); position: relative; overflow: hidden; }
.hero-scroll .line::after { content: ""; position: absolute; inset: 0; width: 40%; background: var(--gold); animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { 0% { transform: translateX(-100%);} 60%,100% { transform: translateX(280%);} }

/* =============================================================== marquee */
.marquee { border-block: 1px solid var(--line); background: var(--paper-2); overflow: hidden; padding-block: 20px; }
.marquee-track { display: flex; gap: 0; width: max-content; animation: marquee 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { display: inline-flex; align-items: center; font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--ink-2); padding-inline: 1.4em; }
.marquee-item::after { content: "◆"; color: var(--gold); font-size: .6rem; font-style: normal; margin-left: 2.8em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ================================================================ about */
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.about-body p { margin: 1.1em 0 0; font-size: 1.1rem; font-weight: 300; color: var(--ink-2); }
.about-body .big-quote { font-family: var(--serif); font-size: clamp(1.6rem, 2.6vw, 2.2rem); font-style: italic; color: var(--ink); line-height: 1.3; margin-top: .3em; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.about-stats .stat { padding: 30px 26px; border-right: 1px solid var(--line); }
.about-stats .stat:last-child { border-right: 0; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); color: var(--ink); line-height: 1; }
.stat .num .suffix { color: var(--gold-deep); }
.stat .label { margin-top: .7em; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

/* =========================================================== collection */
.coll-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 34px); }
.fabric {
  position: relative; background: var(--card); border: 1px solid var(--line-2);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.fabric:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line); }
.fabric-media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--paper-3); }
.fabric-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.fabric:hover .fabric-media img { transform: scale(1.06); }
.fabric-badge { position: absolute; top: 14px; left: 14px; background: var(--paper); color: var(--gold-deep); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; padding: .55em .9em; border: 1px solid var(--line-gold); }
.fabric-body { padding: 22px 24px 26px; }
.fabric-cat { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); }
.fabric-title { font-family: var(--serif); font-size: 1.7rem; margin-top: .2em; color: var(--ink); }
.fabric-meta { margin-top: .5em; font-size: .86rem; color: var(--ink-soft); font-weight: 300; }
.fabric-swatches { display: flex; gap: 7px; margin-top: 16px; flex-wrap: wrap; }
.swatch { width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--line); box-shadow: inset 0 0 0 2px var(--card); }
.fabric-foot { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line-2); display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.price { font-family: var(--serif); font-size: 1.3rem; color: var(--ink); }
.price .cur { font-family: var(--sans); font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); margin-right: .3em; vertical-align: .25em; }
.price .from { font-family: var(--sans); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); display: block; }

/* a woven-cloth placeholder when a fabric has no photo yet */
.swatch-fill { position: absolute; inset: 0; display: grid; place-items: center; }
.swatch-fill .weave { position: absolute; inset: 0; opacity: .9; }
.swatch-fill .mono { position: relative; font-family: var(--serif); font-size: 3.4rem; color: rgba(255,255,255,.9); text-shadow: 0 1px 20px rgba(0,0,0,.25); }

.coll-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.chip {
  font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .7em 1.2em; border: 1px solid var(--line); color: var(--ink-soft); border-radius: 40px;
  transition: all .3s var(--ease);
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.on { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============================================================ value band */
.band-dark { background: var(--navy); color: var(--cream); position: relative; overflow: hidden; }
.band-dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 80% -10%, rgba(193,154,78,.16), transparent 55%); pointer-events: none; }
.band-dark .eyebrow { color: var(--gold); }
.band-dark .h-section, .band-dark h3 { color: var(--cream); }
.band-dark .lede { color: var(--cream-soft); }
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.value { padding: 0 30px; border-left: 1px solid rgba(242,234,217,.16); }
.value:first-child { border-left: 0; padding-left: 0; }
.value .vnum { font-family: var(--serif); font-size: 1rem; color: var(--gold); letter-spacing: .1em; }
.value h3 { font-size: 1.55rem; margin: .7em 0 .5em; }
.value p { font-size: .96rem; color: var(--cream-soft); font-weight: 300; margin: 0; }

/* =============================================================== the weave */
.loom-band { position: relative; overflow: hidden; }
.loom-bg { position: absolute; inset: -12% 0; background: url(/assets/mill.jpg) center / cover no-repeat; opacity: .14; filter: grayscale(.25) contrast(1.05); pointer-events: none; }
.loom-band > .wrap { position: relative; z-index: 1; }
.loom-grid { display: grid; grid-template-columns: .82fr 1fr; gap: clamp(30px, 5vw, 78px); align-items: center; }
.loom-figure { position: relative; }
.loom-frame { border-color: var(--line-gold); background: linear-gradient(160deg, rgba(193,154,78,.14), rgba(11,19,36,.25)); }
.loom-frame::after { border-color: rgba(193,154,78,.4); }
.loom-media { aspect-ratio: 3 / 4; }
.loom-weave { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.loom-weave::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 1px, transparent 1px 6px); mix-blend-mode: soft-light; opacity: .65; }
.loom-selvedge { position: absolute; right: -12px; bottom: 46px; z-index: 3; background: var(--gold); color: #2a2007; padding: .62em 1.05em; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; box-shadow: var(--shadow); }
.weave-specs { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.weave-specs li { position: relative; padding-left: 28px; color: var(--cream-soft); font-weight: 300; }
.weave-specs li::before { content: ""; position: absolute; left: 0; top: .68em; width: 14px; height: 1px; background: var(--gold); }
.weave-selvedge-note { margin-top: 28px; padding: 15px 20px; border: 1px solid var(--line-gold); background: rgba(193,154,78,.09); color: var(--cream); font-size: .9rem; font-weight: 300; }
@media (prefers-reduced-motion: no-preference) {
  .loom-weave::after { content: ""; position: absolute; left: 0; right: 0; height: 42px; top: 0; background: linear-gradient(to bottom, transparent, rgba(255,247,230,.55), rgba(193,154,78,.25), transparent); filter: blur(1px); animation: shuttle 3.8s linear infinite; }
  @keyframes shuttle { from { transform: translateY(-46px); } to { transform: translateY(calc(100% + 46px)); } }
}

/* ============================================================== embroidery */
.emb-band { background: var(--paper); }
.emb-grid { display: grid; grid-template-columns: 1fr .82fr; gap: clamp(30px, 5vw, 78px); align-items: center; }
.emb-figure { position: relative; }
.emb-media { aspect-ratio: 3 / 4; }
.emb-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.spec-list { list-style: none; margin: 28px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.spec-list li { position: relative; padding-left: 28px; color: var(--ink-2); font-weight: 300; }
.spec-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 14px; height: 1px; background: var(--gold); }

/* ========================================================= stockist preview */
.stock-preview-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.city-list { border-top: 1px solid var(--line); }
.city-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 4px; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease), color .3s; }
.city-row:hover { padding-inline: 16px 4px; }

/* ======================================================= hover polish (+) */
/* Buttons lift and catch a light sweep. */
.btn:not(.btn-link) { position: relative; overflow: hidden; }
.btn:not(.btn-link)::before {
  content: ""; position: absolute; top: 0; left: -120%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg); transition: left .6s var(--ease); pointer-events: none;
}
.btn:not(.btn-link):hover::before { left: 150%; }
.btn-gold:hover, .btn-ink:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(20,24,40,.5); }

/* Fabric cards gain a soft floor-shadow gradient as they lift. */
.fabric-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .5s var(--ease); background: linear-gradient(to top, rgba(20,32,58,.22), transparent 55%); }
.fabric:hover .fabric-media::after { opacity: 1; }

/* City rows: a gold marker draws in, the name warms, the arrow nudges. */
.city-row::before { content: ""; position: absolute; left: 0; top: 50%; width: 2px; height: 58%; background: var(--gold); transform: translateY(-50%) scaleY(0); transform-origin: center; transition: transform .35s var(--ease); }
.city-row:hover::before { transform: translateY(-50%) scaleY(1); }
.city-row .cname { transition: color .3s var(--ease); }
.city-row:hover .cname { color: var(--gold-deep); }
.city-row .arrow { display: inline-block; transition: transform .35s var(--ease); }
.city-row:hover .arrow { transform: translateX(5px); }

/* Value cards and footer links wake on hover. */
.value { transition: transform .5s var(--ease); }
.value:hover { transform: translateY(-5px); }
.footer-col a { transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--gold-deep); }
.city-row .cname { font-family: var(--serif); font-size: 1.8rem; color: var(--ink); }
.city-row .cmeta { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 14px; }
.city-row .arrow { color: var(--gold); transition: transform .35s var(--ease); }
.city-row:hover .arrow { transform: translateX(6px); }

/* ============================================================== stockists */
.stock-hero { padding-block: clamp(56px, 8vw, 120px) clamp(30px, 4vw, 56px); text-align: center; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.stock-toolbar { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.stock-cities { display: flex; flex-wrap: wrap; gap: 10px; }
.search-field { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); padding: .6em 1em; border-radius: 40px; min-width: 220px; background: var(--card); }
.search-field input { border: 0; background: none; outline: none; width: 100%; font-size: .92rem; }
.search-field svg { color: var(--ink-faint); flex: none; }

.dealer-city { margin-bottom: 56px; }
.dealer-city > h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; }
.dealer-city > h2 .count { font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-soft); }
.dealer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.dealer {
  display: grid; grid-template-columns: 1fr; background: var(--card); border: 1px solid var(--line-2);
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  overflow: hidden;
}
.dealer:hover { box-shadow: var(--shadow); border-color: var(--line); }
.dealer-map { aspect-ratio: 16 / 8; background: var(--paper-3); position: relative; border-bottom: 1px solid var(--line-2); }
.dealer-map .leaflet-container { width: 100%; height: 100%; background: var(--paper-3); font-family: var(--sans); }
.dealer-map .leaflet-tile-pane { filter: grayscale(.25) contrast(1.03); }
.dealer-map .leaflet-control-attribution { font-size: 9px; background: rgba(255,253,248,.8); }
.dealer-map .leaflet-bar a { color: var(--ink); }
.pin-dot { display: block; width: 16px; height: 16px; background: var(--gold); border: 3px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px var(--gold-deep), 0 2px 8px rgba(0,0,0,.4); }
.dealer-map .nomap { position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink-faint); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; }
.dealer-info { padding: 22px 24px 24px; }
.dealer-info h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.dealer-line { display: flex; gap: 12px; margin-top: 12px; font-size: .92rem; color: var(--ink-soft); font-weight: 300; }
.dealer-line svg { flex: none; color: var(--gold-deep); margin-top: 3px; }
.dealer-line a:hover { color: var(--ink); }
.dealer-actions { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }

/* ================================================================ instagram */
.ig-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--paper-3); display: block; }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.ig-tile:hover img { transform: scale(1.07); }
.ig-tile .ig-over { position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,26,48,.72), transparent 60%); opacity: 0; transition: opacity .4s var(--ease); display: flex; align-items: flex-end; padding: 14px; }
.ig-tile:hover .ig-over { opacity: 1; }
.ig-tile .ig-cap { color: #fff; font-size: .78rem; font-weight: 300; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.ig-empty { border: 1px dashed var(--line-gold); padding: clamp(36px, 6vw, 72px); text-align: center; background: var(--gold-soft); }
.ig-empty .ig-mark { width: 46px; height: 46px; margin: 0 auto 18px; color: var(--gold-deep); }

/* =================================================================== footer */
.site-footer { background: var(--navy-2); color: var(--cream-soft); padding-block: clamp(56px, 7vw, 90px) 34px; position: relative; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 42px; margin-bottom: 20px; }
.footer-brand p { font-weight: 300; max-width: 30ch; }
.footer-col h3 { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; color: var(--cream-soft); font-weight: 300; padding: .3em 0; }
.footer-col a:hover { color: var(--cream); }
.footer-socials { display: flex; gap: 12px; margin-top: 8px; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid rgba(242,234,217,.22); display: grid; place-items: center; border-radius: 50%; color: var(--cream); transition: all .3s var(--ease); }
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-bottom { margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(242,234,217,.14); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; font-size: .76rem; letter-spacing: .08em; color: var(--cream-soft); }
.footer-bottom a:hover { color: var(--cream); }

/* =================================================================== toasts */
.toast-wrap { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { background: var(--ink); color: var(--cream); padding: .9em 1.4em; border-radius: var(--r); font-size: .85rem; letter-spacing: .04em; box-shadow: var(--shadow-lift); animation: toastIn .4s var(--ease); max-width: 90vw; }
.toast.err { background: var(--maroon); }
.toast.ok { background: #24503a; }
@keyframes toastIn { from { opacity: 0; transform: translateY(12px); } }

/* loading + empty states */
.loading { text-align: center; padding: 80px 0; color: var(--ink-faint); letter-spacing: .2em; text-transform: uppercase; font-size: .78rem; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

/* ============================================================== responsive */
@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; margin-inline: auto; }
  .about-grid, .stock-preview-grid, .loom-grid, .emb-grid { grid-template-columns: 1fr; }
  .loom-figure, .emb-figure { max-width: 420px; margin-inline: auto; }
  .emb-figure { order: -1; }
  .coll-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); gap: 30px 0; }
  .value { padding: 0 24px; }
  .value:nth-child(3) { border-left: 0; padding-left: 0; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 620px) {
  :root { --section: clamp(52px, 12vw, 80px); }
  .coll-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .dealer-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .about-stats .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .about-stats .stat:last-child { border-bottom: 0; }
  .fabric-title { font-size: 1.4rem; }
  .hero-badge { left: 0; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}
