/* ==========================================================================
   YANGA AFRIQUE — African Cloth & Textiles
   Design tokens: deep indigo + amber gold + maroon + teal, pulled from
   the brand mark's kente medallion. Cream ground, warm ink text.
   Display: Fraunces / Body: Manrope / Utility (tags, labels): Space Mono
   ========================================================================== */

:root{
  /* --- palette --- */
  --cream:        #F6EEDC;
  --cream-deep:   #ECE0C4;
  --paper:        #FCF9F1;
  --ink:          #211809;
  --ink-soft:     #4A3F2E;
  --indigo:       #16223E;
  --indigo-2:     #223564;
  --indigo-tint:  #DEE3EE;
  --gold:         #C6862B;
  --gold-light:   #E7B15C;
  --gold-deep:    #9C6A1E;
  --maroon:       #7A2035;
  --maroon-deep:  #5C1727;
  --teal:         #1C6B69;
  --olive:        #566B33;
  --line:         rgba(33,24,9,0.14);

  /* --- type --- */
  --f-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --f-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f-mono:    "Space Mono", "SFMono-Regular", Menlo, monospace;

  /* --- misc --- */
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 26px;
  --shadow-card: 0 18px 40px -18px rgba(22,34,62,0.35);
  --shadow-soft: 0 10px 24px -14px rgba(22,34,62,0.28);
  --container: 1240px;
  --ease: cubic-bezier(.22,.68,0,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--f-body);
  background:var(--paper);
  color:var(--ink);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4{ font-family:var(--f-display); margin:0; font-weight:600; color:var(--indigo); }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input{ font-family:inherit; }

.container{ max-width:var(--container); margin:0 auto; padding:0 28px; }

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

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* --- eyebrow / label utility --- */
.eyebrow{
  font-family:var(--f-mono);
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-deep);
  display:inline-flex;
  align-items:center;
  gap:10px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--gold-deep);
  display:inline-block;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:100px;
  font-family:var(--f-body);
  font-weight:700;
  font-size:15px;
  letter-spacing:.01em;
  border:1.5px solid transparent;
  transition:transform .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn-primary{ background:var(--indigo); color:var(--cream); }
.btn-primary:hover{ background:var(--gold-deep); }
.btn-ghost{ background:transparent; color:var(--indigo); border-color:var(--indigo); }
.btn-ghost:hover{ background:var(--indigo); color:var(--cream); }
.btn-gold{ background:var(--gold); color:var(--indigo); }
.btn-gold:hover{ background:var(--gold-light); }
.btn-cream{ background:var(--cream); color:var(--indigo); }
.btn-cream:hover{ background:var(--paper); }

/* ==========================================================================
   WOVEN RIBBON — signature divider, built from the medallion's stripes.
   ========================================================================== */
.ribbon{
  height:15px;
  width:100%;
  background:
    repeating-linear-gradient(115deg,
      var(--maroon) 0 18px,
      var(--gold) 18px 34px,
      var(--indigo) 34px 48px,
      var(--teal) 48px 60px,
      var(--gold-light) 60px 74px);
  background-size:200% 100%;
  animation:ribbonSlide 34s linear infinite;
}
@keyframes ribbonSlide{ from{ background-position:0 0; } to{ background-position:-1200px 0; } }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:60;
  background:rgba(246,238,220,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 28px;
  gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{ height:54px; width:auto; border-radius:14px; box-shadow:var(--shadow-soft); }
.brand-word{ display:none; }

.main-nav{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-size:14.5px; font-weight:600; color:var(--ink-soft);
  position:relative; padding:6px 0;
  transition:color .25s;
}
.main-nav a:hover{ color:var(--indigo); }
.main-nav a::after{
  content:""; position:absolute; left:0; bottom:0; height:2px; width:0;
  background:var(--gold); transition:width .3s var(--ease);
}
.main-nav a:hover::after{ width:100%; }

.header-actions{ display:flex; align-items:center; gap:16px; }
.icon-btn{
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:transparent; border:1.5px solid var(--line);
  color:var(--indigo); transition:.25s;
  position:relative;
}
.icon-btn:hover{ background:var(--indigo); color:var(--cream); border-color:var(--indigo); }
.cart-count{
  position:absolute; top:-6px; right:-6px;
  background:var(--maroon); color:#fff;
  font-family:var(--f-mono); font-size:10px;
  width:18px; height:18px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.hamburger{ display:none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  background:var(--indigo);
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:40px;
  padding:76px 28px 0;
  max-width:var(--container);
  margin:0 auto;
}
.hero-copy{ color:var(--cream); position:relative; z-index:2; padding-bottom:76px;}
.hero-copy .eyebrow{ color:var(--gold-light); }
.hero-copy .eyebrow::before{ background:var(--gold-light); }
.hero-copy h1{
  color:var(--paper);
  font-size:clamp(38px,5vw,62px);
  line-height:1.04;
  margin:20px 0 22px;
  font-weight:600;
  letter-spacing:-.01em;
}
.hero-copy h1 em{ font-style:italic; color:var(--gold-light); font-weight:500; }
.hero-copy p{
  font-size:17.5px; line-height:1.65; color:rgba(246,238,220,.82);
  max-width:480px; margin-bottom:34px;
}
.hero-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-trust{ display:flex; gap:28px; flex-wrap:wrap; }
.hero-trust div{ display:flex; flex-direction:column; }
.hero-trust strong{ font-family:var(--f-display); font-size:22px; color:var(--gold-light); }
.hero-trust span{ font-size:12.5px; color:rgba(246,238,220,.65); letter-spacing:.02em; }

.hero-visual{
  position:relative; z-index:2;
  align-self:end;
}
.hero-photo-frame{
  position:relative;
  border-radius:var(--radius-l) var(--radius-l) 0 0;
  overflow:hidden;
  box-shadow:var(--shadow-card);
  aspect-ratio:4/4.6;
}
.hero-photo-frame img{ width:100%; height:100%; object-fit:cover; }
.hero-swatch-card{
  position:absolute; left:-38px; bottom:56px;
  background:var(--paper);
  border-radius:var(--radius-m);
  padding:14px;
  width:168px;
  box-shadow:var(--shadow-card);
  transform:rotate(-6deg);
  animation:floatSlow 7s ease-in-out infinite;
}
.hero-swatch-card img{ border-radius:8px; height:88px; object-fit:cover; margin-bottom:10px; }
.hero-swatch-card .tag-label{ font-family:var(--f-mono); font-size:10.5px; color:var(--ink-soft); }
.hero-swatch-card strong{ display:block; font-family:var(--f-display); color:var(--indigo); font-size:15px; margin-top:2px; }
@keyframes floatSlow{ 0%,100%{ transform:rotate(-6deg) translateY(0);} 50%{ transform:rotate(-6deg) translateY(-10px);} }

.hero-badge{
  position:absolute; top:64px; right:36px;
  width:118px; height:118px;
  z-index:3;
  animation:spin 26s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.hero-pattern-glow{
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 82% 18%, rgba(198,134,43,.28), transparent 40%),
    radial-gradient(circle at 8% 82%, rgba(28,107,105,.24), transparent 45%);
  z-index:1;
}

.marquee-strip{
  background:var(--indigo-2);
  border-top:1px solid rgba(246,238,220,.14);
  overflow:hidden;
  padding:14px 0;
  position:relative; z-index:2;
}
.marquee-track{
  display:flex; gap:44px;
  width:max-content;
  animation:marquee 32s linear infinite;
}
.marquee-track span{
  font-family:var(--f-mono);
  font-size:13px;
  letter-spacing:.14em;
  color:var(--gold-light);
  text-transform:uppercase;
  display:flex; align-items:center; gap:44px;
}
.marquee-track span::after{ content:"◆"; color:var(--maroon-deep); background:var(--gold-light); border-radius:50%; width:5px;height:5px;font-size:0; }
@keyframes marquee{ from{ transform:translateX(0);} to{ transform:translateX(-50%);} }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip{
  background:var(--cream);
  padding:34px 0;
  border-bottom:1px solid var(--line);
}
.trust-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}
.trust-item{ display:flex; align-items:center; gap:14px; }
.trust-item .ic{
  width:44px; height:44px; border-radius:50%;
  background:var(--indigo); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
}
.trust-item strong{ display:block; font-size:14.5px; color:var(--indigo); font-weight:700; }
.trust-item span{ font-size:12.5px; color:var(--ink-soft); }

/* ==========================================================================
   SECTION HEADS
   ========================================================================== */
.section{ padding:96px 0; }
.section-tight{ padding:72px 0; }
.section-head{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:24px; margin-bottom:48px; flex-wrap:wrap;
}
.section-head h2{ font-size:clamp(30px,3.6vw,44px); line-height:1.08; margin-top:14px; }
.section-head p{ max-width:420px; color:var(--ink-soft); font-size:15.5px; line-height:1.6; }
.section-cta{ display:flex; align-items:center; gap:8px; font-weight:700; font-size:14.5px; color:var(--indigo); border-bottom:2px solid var(--gold); padding-bottom:4px; }

/* ==========================================================================
   CATEGORY RAIL — "fabric bolts"
   ========================================================================== */
.cat-rail{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:18px;
}
.cat-bolt{
  position:relative;
  border-radius:var(--radius-m);
  overflow:hidden;
  aspect-ratio:3/4.1;
  box-shadow:var(--shadow-soft);
  transition:transform .5s var(--ease);
}
.cat-bolt:hover{ transform:translateY(-8px); }
.cat-bolt img{ width:100%; height:100%; object-fit:cover; transition:transform .7s var(--ease); }
.cat-bolt:hover img{ transform:scale(1.08); }
.cat-bolt::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(22,34,62,0) 40%, rgba(22,34,62,.86) 100%);
}
.cat-bolt-fold{
  position:absolute; top:0; right:0;
  width:0; height:0;
  border-style:solid;
  border-width:0 26px 26px 0;
  border-color:transparent var(--paper) transparent transparent;
  filter:drop-shadow(-2px 2px 3px rgba(0,0,0,.18));
  z-index:2;
}
.cat-bolt-label{
  position:absolute; left:16px; right:16px; bottom:16px; z-index:2;
  color:var(--paper);
}
.cat-bolt-label strong{ font-family:var(--f-display); font-size:19px; display:block; }
.cat-bolt-label span{ font-family:var(--f-mono); font-size:11px; color:var(--gold-light); letter-spacing:.06em; }

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px 22px;
}
.product-card{ position:relative; }
.product-media{
  position:relative;
  border-radius:var(--radius-m);
  overflow:hidden;
  aspect-ratio:3/3.7;
  background:var(--cream-deep);
  margin-bottom:14px;
}
.product-media img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.product-card:hover .product-media img{ transform:scale(1.06); }
.product-flag{
  position:absolute; top:12px; left:12px;
  background:var(--maroon);
  color:var(--paper);
  font-family:var(--f-mono); font-size:10.5px; letter-spacing:.05em; text-transform:uppercase;
  padding:6px 10px; border-radius:100px;
  z-index:2;
}
.product-flag.new{ background:var(--teal); }
.product-tag{
  position:absolute; bottom:-12px; right:14px;
  background:var(--gold);
  color:var(--indigo);
  font-family:var(--f-mono); font-weight:700; font-size:13px;
  padding:8px 14px 8px 12px;
  border-radius:4px 10px 10px 4px;
  box-shadow:var(--shadow-soft);
  z-index:2;
}
.product-tag::before{
  content:""; position:absolute; left:-5px; top:50%; transform:translateY(-50%);
  width:8px; height:8px; background:var(--paper); border-radius:50%;
}
.wishlist-btn{
  position:absolute; top:12px; right:12px; z-index:2;
  width:34px; height:34px; border-radius:50%;
  background:rgba(252,249,241,.9);
  display:flex; align-items:center; justify-content:center;
  color:var(--maroon); border:none;
  opacity:0; transform:translateY(-6px);
  transition:.3s var(--ease);
}
.product-card:hover .wishlist-btn{ opacity:1; transform:translateY(0); }
.product-info span.kicker{ font-family:var(--f-mono); font-size:11px; color:var(--gold-deep); letter-spacing:.06em; text-transform:uppercase; }
.product-info h3{ font-size:17.5px; margin:5px 0 4px; font-weight:600; }
.product-info .price-row{ display:flex; align-items:center; gap:9px; font-family:var(--f-mono); }
.price-row .price{ font-weight:700; color:var(--indigo); font-size:15px; }
.price-row .was{ text-decoration:line-through; color:var(--ink-soft); opacity:.6; font-size:12.5px; }

/* ==========================================================================
   STORY / HERITAGE SECTION
   ========================================================================== */
.story{ background:var(--indigo); color:var(--cream); position:relative; overflow:hidden; }
.story-grid{
  display:grid; grid-template-columns:.92fr 1.08fr; gap:64px; align-items:center;
}
.story-media{ position:relative; }
.story-media .frame-main{ border-radius:var(--radius-l); overflow:hidden; aspect-ratio:5/5.6; box-shadow:var(--shadow-card); }
.story-media .frame-main img{ width:100%; height:100%; object-fit:cover; }
.story-media .frame-float{
  position:absolute; width:46%; aspect-ratio:4/3.2;
  bottom:-38px; right:-38px;
  border-radius:var(--radius-m); overflow:hidden;
  border:6px solid var(--indigo);
  box-shadow:var(--shadow-card);
}
.story-media .frame-float img{ width:100%; height:100%; object-fit:cover; }
.story-copy .eyebrow{ color:var(--gold-light); }
.story-copy .eyebrow::before{ background:var(--gold-light); }
.story-copy h2{ color:var(--paper); font-size:clamp(30px,3.6vw,42px); margin:18px 0 22px; line-height:1.12; }
.story-copy p{ color:rgba(246,238,220,.82); font-size:16px; line-height:1.72; margin-bottom:18px; max-width:520px; }
.story-list{ display:grid; gap:16px; margin:30px 0 36px; }
.story-list li{ display:flex; gap:14px; align-items:flex-start; }
.story-list .num{ font-family:var(--f-mono); color:var(--gold-light); font-size:13px; padding-top:3px; }
.story-list strong{ display:block; color:var(--paper); font-size:15px; margin-bottom:3px; }
.story-list span{ color:rgba(246,238,220,.68); font-size:14px; line-height:1.5; }

/* ==========================================================================
   LOOKBOOK / BESTSELLERS STRIP
   ========================================================================== */
.look-strip{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:20px; }
.look-card{ position:relative; border-radius:var(--radius-m); overflow:hidden; box-shadow:var(--shadow-soft); }
.look-card img{ width:100%; height:100%; object-fit:cover; }
.look-card:nth-child(1){ aspect-ratio:5/6.3; }
.look-card:nth-child(2), .look-card:nth-child(3){ aspect-ratio:4/6.3; }
.look-card .look-caption{
  position:absolute; left:18px; bottom:18px; color:var(--paper); z-index:2;
}
.look-card::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg,rgba(22,34,62,0) 55%, rgba(22,34,62,.82) 100%); }
.look-caption .eyebrow{ color:var(--gold-light); margin-bottom:6px; }
.look-caption .eyebrow::before{ background:var(--gold-light); }
.look-caption h3{ color:var(--paper); font-size:22px; }

/* ==========================================================================
   STATS BAND
   ========================================================================== */
.stats-band{ background:var(--maroon); color:var(--cream); }
.stats-row{ display:grid; grid-template-columns:repeat(4,1fr); text-align:center; padding:52px 0; }
.stats-row div{ border-right:1px solid rgba(246,238,220,.22); padding:0 10px; }
.stats-row div:last-child{ border-right:none; }
.stats-row strong{ font-family:var(--f-display); font-size:clamp(30px,4vw,44px); display:block; color:var(--gold-light); }
.stats-row span{ font-size:13px; letter-spacing:.03em; color:rgba(246,238,220,.78); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.testi-card{
  background:var(--paper); border:1px solid var(--line);
  border-radius:var(--radius-m); padding:30px 26px;
}
.testi-stars{ color:var(--gold); font-size:14px; letter-spacing:2px; margin-bottom:16px; }
.testi-card p{ font-size:15.5px; line-height:1.65; color:var(--ink); margin-bottom:22px; }
.testi-who{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:40px;height:40px;border-radius:50%;
  background:var(--indigo); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--f-display); font-size:15px;
}
.testi-who strong{ display:block; font-size:14px; color:var(--indigo); }
.testi-who span{ font-size:12.5px; color:var(--ink-soft); }

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */
.newsletter{ background:var(--gold); }
.newsletter-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:32px; padding:56px 0; flex-wrap:wrap;
}
.newsletter-copy h2{ color:var(--indigo); font-size:clamp(24px,3vw,32px); }
.newsletter-copy p{ color:var(--indigo); opacity:.78; margin-top:8px; font-size:15px; max-width:420px; }
.newsletter-form{ display:flex; gap:10px; flex-wrap:wrap; }
.newsletter-form input{
  padding:15px 20px; border-radius:100px; border:1.5px solid var(--indigo);
  background:var(--paper); min-width:260px; font-size:14.5px; color:var(--ink);
}
.newsletter-form input:focus{ outline:none; box-shadow:0 0 0 3px rgba(22,34,62,.25); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{ background:var(--indigo); color:rgba(246,238,220,.75); padding-top:76px; }
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:32px;
  padding-bottom:56px; border-bottom:1px solid rgba(246,238,220,.14);
}
.footer-brand img{ height:56px; border-radius:12px; margin-bottom:16px; }
.footer-brand p{ font-size:14px; line-height:1.65; max-width:250px; color:rgba(246,238,220,.62); }
.footer-social{ display:flex; gap:10px; margin-top:20px; }
.footer-social a{
  width:36px; height:36px; border-radius:50%; border:1px solid rgba(246,238,220,.3);
  display:flex; align-items:center; justify-content:center; transition:.25s;
}
.footer-social a:hover{ background:var(--gold); border-color:var(--gold); color:var(--indigo); }
.footer-col h4{ color:var(--paper); font-size:13.5px; letter-spacing:.06em; text-transform:uppercase; margin-bottom:18px; font-family:var(--f-body); }
.footer-col ul{ display:grid; gap:12px; }
.footer-col a{ font-size:14.5px; transition:color .2s; }
.footer-col a:hover{ color:var(--gold-light); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center;
  padding:26px 0; font-size:13px; color:rgba(246,238,220,.5); flex-wrap:wrap; gap:12px;
}
.payment-icons{ display:flex; gap:10px; font-family:var(--f-mono); font-size:11px; }
.payment-icons span{ border:1px solid rgba(246,238,220,.3); padding:5px 10px; border-radius:5px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px){
  .cat-rail{ grid-template-columns:repeat(3,1fr); }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .story-grid{ grid-template-columns:1fr; }
  .story-media{ margin-bottom:20px; }
  .look-strip{ grid-template-columns:1fr 1fr; }
  .look-strip .look-card:first-child{ grid-column:1/-1; aspect-ratio:16/8; }
}
@media (max-width: 820px){
  .main-nav{ display:none; }
  .hamburger{ display:flex; }
  .hero-grid{ grid-template-columns:1fr; padding-top:44px; }
  .hero-visual{ order:-1; max-width:340px; margin:0 auto 20px; }
  .hero-swatch-card{ left:-14px; }
  .hero-badge{ display:none; }
  .trust-row{ grid-template-columns:1fr 1fr; }
  .stats-row{ grid-template-columns:1fr 1fr; gap:24px 0; }
  .stats-row div{ border-right:none; }
  .testi-grid{ grid-template-columns:1fr; }
  .section{ padding:64px 0; }
}
@media (max-width: 600px){
  .cat-rail{ grid-template-columns:repeat(2,1fr); }
  .product-grid{ grid-template-columns:repeat(2,1fr); gap:16px 12px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .newsletter-inner{ flex-direction:column; align-items:flex-start; }
  .look-strip{ grid-template-columns:1fr; }
  .look-strip .look-card{ aspect-ratio:16/10 !important; }
}

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */
.hamburger{
  width:40px; height:40px; border-radius:50%;
  border:1.5px solid var(--line); background:transparent;
  align-items:center; justify-content:center; gap:4px; flex-direction:column;
}
.hamburger span{ width:18px; height:2px; background:var(--indigo); border-radius:2px; transition:.3s; }
.hamburger.is-open span:nth-child(1){ transform:translateY(6px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity:0; }
.hamburger.is-open span:nth-child(3){ transform:translateY(-6px) rotate(-45deg); }

.mobile-nav{
  position:fixed; inset:0; z-index:80;
  background:var(--indigo);
  display:flex; flex-direction:column;
  padding:100px 32px 40px;
  transform:translateX(100%);
  transition:transform .45s var(--ease);
}
.mobile-nav.is-open{ transform:translateX(0); }
.mobile-nav a{
  font-family:var(--f-display); font-size:30px; color:var(--paper);
  padding:14px 0; border-bottom:1px solid rgba(246,238,220,.14);
}
.mobile-nav .btn{ margin-top:28px; align-self:flex-start; }
.mobile-close{
  position:absolute; top:26px; right:28px;
  width:42px; height:42px; border-radius:50%;
  border:1.5px solid rgba(246,238,220,.3); background:transparent;
  color:var(--paper); display:flex; align-items:center; justify-content:center;
}

/* skip link */
.skip-link{
  position:absolute; left:-999px; top:0; background:var(--gold); color:var(--indigo);
  padding:12px 18px; z-index:999; font-weight:700; border-radius:0 0 8px 0;
}
.skip-link:focus{ left:0; }
