/* ==========================================================================
   ORELLA — considered goods
   Design tokens & components.
   Signature: every product is presented like a swing tag — a die-cut
   punch-hole + stitched edge — echoing how a small goods shop actually
   tags its stock. Paired with a hand-drawn underline accent on key words.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root{
  --paper:#F4F2ED;
  --surface:#FFFFFF;
  --ink:#18160F;
  --ink-soft:#6E685D;
  --ink-faint:#9B958A;

  --wine:#7A1F3D;
  --wine-2:#5E1730;
  --wine-tint:#F4E3E8;

  --olive:#54603F;
  --olive-tint:#E7EADC;

  --ochre:#B07A2C;
  --ochre-tint:#F3E4CB;

  --sage:#5F7860;
  --sage-tint:#E2EAE0;

  --clay:#93634A;
  --clay-tint:#EDE0D5;

  --line:#E2DFD3;
  --line-soft:#EBE8DE;

  --radius-sm:8px;
  --radius-md:16px;
  --radius-lg:26px;

  --shadow-card:0 1px 2px rgba(24,22,15,.05), 0 10px 26px -14px rgba(24,22,15,.22);
  --shadow-pop:0 20px 60px -12px rgba(24,22,15,.32);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0; background:var(--paper); color:var(--ink);
  font-family:'Inter',system-ui,sans-serif; -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4,.display{ font-family:'Fraunces',serif; letter-spacing:-0.01em; margin:0; }
.mono{ font-family:'IBM Plex Mono',ui-monospace,monospace; letter-spacing:-0.01em; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
::selection{ background:var(--wine-tint); color:var(--wine-2); }
:focus-visible{ outline:2px solid var(--wine); outline-offset:2px; }
::-webkit-scrollbar{ width:10px; } ::-webkit-scrollbar-thumb{ background:#D8D4C7; border-radius:8px; border:2px solid var(--paper); }

.eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; font-weight:600;
  text-transform:uppercase; letter-spacing:.11em; color:var(--wine);
  display:inline-flex; align-items:center; gap:8px;
}
.underline-accent{ position:relative; display:inline-block; }
.underline-accent svg{ position:absolute; left:0; bottom:-6px; width:100%; height:8px; }

/* ---------------------------------------------------------------------- */
/* Shell / nav                                                            */
/* ---------------------------------------------------------------------- */
#app-shell{ min-height:100vh; display:flex; flex-direction:column; }

.nav{
  position:sticky; top:0; z-index:40;
  background:rgba(244,242,237,0.92); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  max-width:1180px; margin:0 auto; padding:16px 24px;
  display:flex; align-items:center; gap:22px;
}
.wordmark{ font-family:'Fraunces',serif; font-weight:700; font-size:22px; letter-spacing:-0.02em; flex-shrink:0; }
.wordmark span{ color:var(--wine); }
.nav-links{ display:flex; gap:22px; flex:1; }
.nav-links a{ font-size:13.5px; font-weight:600; color:var(--ink-soft); padding:6px 0; position:relative; }
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-links a.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-3px; height:2px; background:var(--wine); border-radius:2px;
}
.nav-actions{ display:flex; align-items:center; gap:6px; flex-shrink:0; }
.icon-btn{
  display:inline-flex; align-items:center; justify-content:center; position:relative;
  width:38px; height:38px; border-radius:999px; background:none; border:none; color:var(--ink);
  transition:background .15s ease;
}
.icon-btn:hover{ background:var(--line-soft); }
.icon-btn svg{ width:20px; height:20px; }
.cart-count{
  position:absolute; top:2px; right:2px; background:var(--wine); color:#fff;
  font-size:10px; font-weight:700; width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}
.mobile-toggle{ display:none; }

main{ flex:1; }
.screen{ display:none; }
.screen.active{ display:block; }

/* ---------------------------------------------------------------------- */
/* Buttons / fields                                                       */
/* ---------------------------------------------------------------------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:700; font-size:14px; border-radius:11px; padding:13px 22px;
  border:1.5px solid transparent; transition:transform .08s ease, background .15s ease, border-color .15s ease;
  line-height:1; white-space:nowrap;
}
.btn:active{ transform:scale(.98); }
.btn svg{ width:17px; height:17px; }
.btn-primary{ background:var(--wine); color:#fff; box-shadow:0 10px 22px -10px rgba(122,31,61,.55); }
.btn-primary:hover{ background:var(--wine-2); }
.btn-primary:disabled{ background:#C9C4B7; box-shadow:none; cursor:not-allowed; }
.btn-outline{ background:transparent; color:var(--ink); border-color:var(--ink); }
.btn-outline:hover{ background:var(--ink); color:#fff; }
.btn-ghost{ background:transparent; color:var(--ink-soft); border-color:transparent; }
.btn-ghost:hover{ color:var(--ink); }
.btn-block{ width:100%; } .btn-sm{ padding:9px 14px; font-size:13px; border-radius:9px; }

.field{
  width:100%; border:1.5px solid var(--line); background:var(--surface); border-radius:11px;
  padding:12px 14px; font-size:14px; color:var(--ink); transition:border-color .15s ease;
}
.field:focus{ border-color:var(--wine); outline:none; }
.field-label{ display:block; font-size:12px; font-weight:600; color:var(--ink-soft); margin-bottom:6px; }
.field-error{ font-size:12px; color:var(--wine); margin-top:5px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero{ max-width:1180px; margin:0 auto; padding:56px 24px 40px; display:grid; grid-template-columns:1.1fr .9fr; gap:48px; align-items:center; }
.hero h1{ font-size:clamp(34px,5vw,56px); font-weight:600; line-height:1.04; }
.hero p.lede{ font-size:16px; color:var(--ink-soft); margin-top:16px; max-width:46ch; line-height:1.6; }
.hero-ctas{ display:flex; gap:12px; margin-top:26px; flex-wrap:wrap; }

.hero-tag{
  background:var(--surface); border-radius:var(--radius-lg); box-shadow:var(--shadow-pop);
  padding:26px; position:relative; transform:rotate(2deg);
}
.hero-tag::before{
  content:''; position:absolute; top:20px; left:20px; width:16px; height:16px; border-radius:50%;
  background:var(--paper); box-shadow:inset 0 1px 3px rgba(0,0,0,.15);
}
.hero-tag .tile{
  width:100%; aspect-ratio:1/1; border-radius:16px; display:flex; align-items:center; justify-content:center;
  margin-top:18px;
}
.hero-tag .tile svg{ width:38%; height:38%; }
.hero-tag .cap{ display:flex; align-items:center; justify-content:space-between; margin-top:16px; }

/* ---------------------------------------------------------------------- */
/* Category strip                                                         */
/* ---------------------------------------------------------------------- */
.category-strip{ max-width:1180px; margin:0 auto; padding:10px 24px 54px; display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.category-card{
  background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius-md);
  padding:20px; text-align:left; transition:transform .12s ease, box-shadow .12s ease;
}
.category-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-card); }
.category-card .chip{ width:40px; height:40px; border-radius:11px; display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.category-card .chip svg{ width:20px; height:20px; }
.category-card h4{ font-size:15px; font-weight:600; }
.category-card p{ font-size:12.5px; color:var(--ink-soft); margin-top:3px; }

/* ---------------------------------------------------------------------- */
/* Sections                                                                */
/* ---------------------------------------------------------------------- */
.section{ max-width:1180px; margin:0 auto; padding:10px 24px 60px; }
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:24px; flex-wrap:wrap; }
.section-head h2{ font-size:28px; font-weight:600; margin-top:6px; }

/* ---------------------------------------------------------------------- */
/* Product grid / cards — the signature "swing tag" treatment             */
/* ---------------------------------------------------------------------- */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.product-card{
  background:var(--surface); border-radius:var(--radius-md); overflow:hidden; text-align:left;
  border:1px solid var(--line-soft); position:relative; display:flex; flex-direction:column;
  transition:transform .14s ease, box-shadow .14s ease;
}
.product-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card); }
.product-card:hover .tile{ transform:scale(1.04); }

.tag-punch{
  position:absolute; top:14px; left:14px; width:14px; height:14px; border-radius:50%;
  background:var(--paper); box-shadow:inset 0 1px 3px rgba(0,0,0,.15); z-index:3;
}
.stitch{
  position:absolute; inset:8px; border-radius:calc(var(--radius-md) - 6px);
  border:1.5px dashed rgba(24,22,15,0.14); pointer-events:none; z-index:2;
}
.badge-flag{
  position:absolute; top:12px; right:-1px; z-index:3;
  font-family:'IBM Plex Mono',monospace; font-size:10.5px; font-weight:600; letter-spacing:.03em;
  color:#fff; background:var(--wine); padding:4px 10px 4px 12px; border-radius:6px 0 0 6px;
}

.tile{
  aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; transition:transform .25s ease;
}
.tile svg{ width:34%; height:34%; }

.product-body{ padding:16px; display:flex; flex-direction:column; gap:4px; flex:1; }
.product-cat{ font-size:11px; font-weight:600; text-transform:uppercase; letter-spacing:.06em; color:var(--ink-faint); }
.product-name{ font-family:'Fraunces',serif; font-size:16px; font-weight:600; line-height:1.25; }
.product-foot{ display:flex; align-items:center; justify-content:space-between; margin-top:8px; }
.price{ font-weight:700; font-size:15px; }
.price .was{ font-size:12px; color:var(--ink-faint); text-decoration:line-through; font-weight:500; margin-right:6px; }
.add-btn{
  width:34px; height:34px; border-radius:9px; background:var(--ink); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:background .15s ease;
}
.add-btn:hover{ background:var(--wine); }
.add-btn svg{ width:16px; height:16px; }

.filter-row{ display:flex; gap:8px; flex-wrap:wrap; }
.filter-chip{
  padding:8px 15px; border-radius:999px; border:1.5px solid var(--line); background:var(--surface);
  font-size:12.5px; font-weight:600; color:var(--ink-soft); transition:all .15s ease;
}
.filter-chip.active, .filter-chip:hover{ border-color:var(--ink); color:var(--ink); }
.filter-chip.active{ background:var(--ink); color:#fff; border-color:var(--ink); }

.sort-select{ border:1.5px solid var(--line); border-radius:999px; padding:8px 32px 8px 15px; font-size:12.5px; font-weight:600; background:var(--surface); appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E685D' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; }

/* ---------------------------------------------------------------------- */
/* Product detail                                                         */
/* ---------------------------------------------------------------------- */
.pdp{ max-width:1180px; margin:0 auto; padding:26px 24px 70px; display:grid; grid-template-columns:1fr 1fr; gap:52px; }
.pdp-tile{ border-radius:var(--radius-lg); aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; position:relative; box-shadow:var(--shadow-card); }
.pdp-tile svg{ width:32%; height:32%; }
.pdp-info .eyebrow{ margin-bottom:10px; }
.pdp-info h1{ font-size:32px; font-weight:600; }
.pdp-price{ font-size:22px; font-weight:700; margin-top:10px; }
.pdp-desc{ font-size:14.5px; color:var(--ink-soft); line-height:1.7; margin-top:18px; max-width:52ch; }
.qty-row{ display:flex; align-items:center; gap:14px; margin-top:24px; }
.qty-control{ display:flex; align-items:center; border:1.5px solid var(--line); border-radius:11px; overflow:hidden; }
.qty-control button{ width:38px; height:42px; background:none; border:none; font-size:17px; }
.qty-control button:hover{ background:var(--line-soft); }
.qty-control span{ width:36px; text-align:center; font-weight:700; font-family:'IBM Plex Mono',monospace; }
.pdp-meta{ margin-top:26px; padding-top:22px; border-top:1px solid var(--line); display:flex; flex-direction:column; gap:8px; font-size:12.5px; color:var(--ink-soft); }
.pdp-meta div{ display:flex; align-items:center; gap:8px; }

/* ---------------------------------------------------------------------- */
/* Cart / checkout                                                        */
/* ---------------------------------------------------------------------- */
.cart-layout{ max-width:1080px; margin:0 auto; padding:36px 24px 70px; display:grid; grid-template-columns:1.6fr 1fr; gap:40px; align-items:start; }
.cart-line{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--line-soft); align-items:center; }
.cart-line .tile{ width:74px; height:74px; border-radius:12px; flex-shrink:0; }
.cart-line .tile svg{ width:38%; height:38%; }
.cart-line-info{ flex:1; min-width:0; }
.cart-line-info h4{ font-family:'Fraunces',serif; font-size:15px; font-weight:600; }
.cart-line-info p{ font-size:12px; color:var(--ink-soft); margin-top:2px; }
.summary-card{ background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:22px; position:sticky; top:90px; }
.summary-row{ display:flex; justify-content:space-between; font-size:13.5px; padding:7px 0; color:var(--ink-soft); }
.summary-row.total{ color:var(--ink); font-weight:700; font-size:15.5px; border-top:1px solid var(--line); margin-top:6px; padding-top:14px; }

.checkout-layout{ max-width:980px; margin:0 auto; padding:36px 24px 70px; display:grid; grid-template-columns:1.3fr 1fr; gap:40px; align-items:start; }
.checkout-steps{ display:flex; gap:8px; margin-bottom:24px; }
.step-pill{ font-size:11.5px; font-weight:700; padding:6px 12px; border-radius:999px; background:var(--line-soft); color:var(--ink-faint); }
.step-pill.active{ background:var(--wine); color:#fff; }
fieldset{ border:none; padding:0; margin:0 0 22px; }
legend{ font-family:'Fraunces',serif; font-size:16px; font-weight:600; margin-bottom:12px; padding:0; }
.field-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.field-grid .full{ grid-column:1/-1; }

/* ---------------------------------------------------------------------- */
/* Auth (login / signup)                                                  */
/* ---------------------------------------------------------------------- */
.auth-wrap{ max-width:420px; margin:0 auto; padding:56px 24px 80px; }
.auth-card{ background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius-lg); padding:34px; box-shadow:var(--shadow-card); }
.auth-card h2{ font-size:24px; text-align:center; }
.auth-card p.sub{ text-align:center; font-size:13px; color:var(--ink-soft); margin-top:6px; }
.auth-switch{ text-align:center; font-size:13px; color:var(--ink-soft); margin-top:20px; }
.auth-switch a{ color:var(--wine); font-weight:700; }
.auth-note{ font-size:11.5px; color:var(--ink-faint); text-align:center; margin-top:18px; line-height:1.6; }

/* ---------------------------------------------------------------------- */
/* Account / orders                                                       */
/* ---------------------------------------------------------------------- */
.account-layout{ max-width:1000px; margin:0 auto; padding:36px 24px 70px; display:grid; grid-template-columns:.8fr 1.6fr; gap:36px; align-items:start; }
.account-side{ background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:22px; position:sticky; top:90px; }
.avatar-circle{ width:52px; height:52px; border-radius:50%; background:var(--wine-tint); color:var(--wine); display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-weight:700; font-size:19px; }
.order-card{ background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:18px; margin-bottom:14px; }
.order-head{ display:flex; justify-content:space-between; align-items:flex-start; gap:12px; flex-wrap:wrap; }
.order-items-mini{ font-size:12.5px; color:var(--ink-soft); margin-top:8px; }
.status-pill{ font-size:11px; font-weight:700; padding:5px 10px; border-radius:999px; text-transform:uppercase; letter-spacing:.03em; }
.status-processing{ background:var(--ochre-tint); color:var(--ochre); }
.status-shipped{ background:var(--sage-tint); color:var(--sage); }
.status-delivered{ background:var(--olive-tint); color:var(--olive); }

/* ---------------------------------------------------------------------- */
/* Order confirmation — receipt-stub                                      */
/* ---------------------------------------------------------------------- */
.receipt-wrap{ max-width:460px; margin:0 auto; padding:56px 24px 80px; text-align:center; }
.receipt{
  background:var(--surface); border-radius:18px; box-shadow:var(--shadow-pop);
  padding:34px 30px; position:relative;
}
.receipt::after{
  content:''; position:absolute; left:0; right:0; bottom:-11px; height:22px;
  background-image:radial-gradient(circle at 11px 0, transparent 10px, var(--surface) 10px);
  background-size:22px 22px; background-repeat:repeat-x;
}
.receipt-check{ width:56px; height:56px; border-radius:50%; background:var(--olive-tint); color:var(--olive); display:flex; align-items:center; justify-content:center; margin:0 auto; }
.receipt-check svg{ width:28px; height:28px; }
.receipt hr{ border:none; border-top:1.5px dashed var(--line); margin:20px 0; }
.receipt-row{ display:flex; justify-content:space-between; font-size:13px; padding:4px 0; }

/* ---------------------------------------------------------------------- */
/* Empty states / toast / modal                                          */
/* ---------------------------------------------------------------------- */
.empty-state{ text-align:center; padding:60px 20px; color:var(--ink-faint); }
.empty-state svg{ width:38px; height:38px; margin:0 auto 12px; opacity:.55; }
.empty-state p{ font-size:14px; margin-top:4px; }

#snackbar{
  position:fixed; left:50%; bottom:24px; transform:translate(-50%,20px); z-index:200;
  background:var(--ink); color:#fff; padding:13px 20px; border-radius:12px; font-size:13.5px; font-weight:500;
  box-shadow:var(--shadow-pop); opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease; max-width:90vw; text-align:center;
}
#snackbar.show{ opacity:1; transform:translate(-50%,0); }

.overlay{ position:fixed; inset:0; z-index:100; background:rgba(24,22,15,.5); display:flex; align-items:flex-start; justify-content:flex-end; }
.overlay[hidden]{ display:none; }
.drawer{ width:min(420px,100vw); height:100%; background:var(--paper); box-shadow:var(--shadow-pop); display:flex; flex-direction:column; }
.drawer-head{ display:flex; align-items:center; justify-content:space-between; padding:20px 22px; border-bottom:1px solid var(--line); }
.drawer-body{ flex:1; overflow-y:auto; padding:8px 22px; }
.drawer-foot{ padding:18px 22px; border-top:1px solid var(--line); background:var(--surface); }

footer.site-footer{ border-top:1px solid var(--line); padding:34px 24px; text-align:center; font-size:12px; color:var(--ink-faint); line-height:1.8; }

/* ---------------------------------------------------------------------- */
/* Admin dashboard                                                         */
/* ---------------------------------------------------------------------- */
.admin-topbar{
  background:var(--ink); color:#fff; padding:16px 24px;
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
}
.admin-badge{ font-family:'IBM Plex Mono',monospace; font-size:10.5px; font-weight:600; background:rgba(255,255,255,.12); padding:5px 10px; border-radius:999px; letter-spacing:.03em; }
.admin-tabbar{ display:flex; gap:2px; background:var(--surface); border-bottom:1px solid var(--line); padding:0 24px; overflow-x:auto; }
.admin-tab{ padding:14px 16px; font-size:13.5px; font-weight:700; color:var(--ink-faint); border:none; background:none; border-bottom:3px solid transparent; white-space:nowrap; transition:color .15s ease, border-color .15s ease; }
.admin-tab.active{ color:var(--ink); border-color:var(--wine); }

.admin-stats{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.admin-stat{ background:var(--surface); border:1px solid var(--line-soft); border-radius:var(--radius-md); padding:18px; }
.admin-stat .label{ font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--ink-faint); }
.admin-stat .value{ font-family:'Fraunces',serif; font-size:26px; font-weight:700; margin-top:6px; }

.admin-row{
  display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap;
  padding:16px; background:var(--surface); border:1px solid var(--line-soft); border-radius:12px; margin-bottom:10px;
}
.status-select{ border:1.5px solid var(--line); border-radius:8px; padding:7px 10px; font-size:12.5px; font-weight:600; background:var(--surface); }

.toggle-switch{ position:relative; display:inline-flex; align-items:center; cursor:pointer; }
.toggle-switch input{ position:absolute; opacity:0; width:40px; height:22px; margin:0; cursor:pointer; }
.toggle-track{ width:40px; height:22px; border-radius:999px; background:var(--line); position:relative; transition:background .15s ease; }
.toggle-track.on{ background:var(--olive); }
.toggle-thumb{ position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%; background:#fff; transition:left .15s ease; box-shadow:0 1px 3px rgba(0,0,0,.3); }
.toggle-track.on .toggle-thumb{ left:20px; }

@media (max-width:760px){ .admin-stats{ grid-template-columns:repeat(2,1fr); } }

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

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width:940px){
  .hero{ grid-template-columns:1fr; padding-top:34px; }
  .hero-tag{ max-width:320px; margin:0 auto; transform:rotate(0); }
  .category-strip{ grid-template-columns:repeat(2,1fr); }
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .pdp{ grid-template-columns:1fr; padding-top:16px; }
  .cart-layout, .checkout-layout, .account-layout{ grid-template-columns:1fr; }
  .summary-card, .account-side{ position:static; }
  .nav-links{ display:none; }
  .mobile-toggle{ display:inline-flex; }
}
@media (max-width:560px){
  .category-strip{ grid-template-columns:repeat(2,1fr); gap:10px; }
  .product-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
  .field-row, .field-grid{ grid-template-columns:1fr; }
  .hero-ctas .btn{ flex:1; }
}
