/* =============================================================================
   HawaiianClothes.net — WordPress theme stylesheet
   v1.0 · static HTML handoff · ready for theme conversion
   =============================================================================

   Sections
   1.  Design tokens (CSS custom properties)
   2.  Base elements (html, body, headings, type, links)
   3.  Layout primitives (.container, .wave-divider)
   4.  Top promo bar (.topbar)
   5.  Site header (.site-header)
   6.  Hero (.hero)
   7.  Category strip (.cat-grid)
   8.  Main content grid (.main-grid, sidebar layout)
   9.  Article cards (.posts, .post)
   10. Widgets (.widget, .widget-search, .widget-pillars, .widget-picks, .widget-newsletter)
   11. ʻOhana strip (.ohana-strip)
   12. Trust strip (.trust)
   13. Shop banner (.shop-banner)
   14. Single article (.article-*)
   15. Footer (.site-footer)
   16. Responsive
   =============================================================================
*/

/* ------- Webfonts -------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Yeseva+One&family=DM+Sans:wght@400;500;700&family=Caveat:wght@400;700&family=JetBrains+Mono:wght@400;500&display=swap");

/* ==========================================================================
   1.  Design tokens
   ========================================================================== */
:root {
  /* --- Palette: postcard sunset --- */
  --ink:        #0E3B43;
  --ink-soft:   #245560;
  --ink-12:     rgba(14, 59, 67, 0.12);
  --ink-24:     rgba(14, 59, 67, 0.24);
  --ink-60:     rgba(14, 59, 67, 0.60);

  --shell:      #FBF4E8;
  --shell-deep: #F4EAD5;
  --sand:       #E7D5B5;

  --coral:      #E85A4F;
  --coral-deep: #C8443B;
  --sunset:     #F2A65A;
  --leaf:       #4D7C5A;
  --ocean:      #2B7A8F;
  --plumeria:   #F6C9B0;

  /* --- Semantic --- */
  --bg:           var(--shell);
  --bg-elevated:  #FFFFFF;
  --bg-inverse:   var(--ink);
  --fg1:          var(--ink);
  --fg2:          var(--ink-soft);
  --fg3:          var(--ink-60);
  --fg-inverse:   var(--shell);
  --border:       var(--ink-12);
  --border-strong: var(--ink-24);
  --accent:       var(--coral);
  --accent-hover: var(--coral-deep);
  --focus:        var(--coral);

  --success: #4D7C5A;
  --warning: #E0A23C;
  --danger:  #B9433A;

  --gradient-sunset: linear-gradient(180deg, #FBE7C5 0%, #F6C9B0 45%, #E85A4F 100%);
  --gradient-shell:  linear-gradient(180deg, #FBF4E8 0%, #F4EAD5 100%);

  /* --- Type --- */
  --font-display: "Yeseva One", "Cormorant Garamond", "Georgia", serif;
  --font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-script:  "Caveat", "Bradley Hand", cursive;
  --font-mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* --- Spacing (8pt) --- */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;  --sp-5: 24px;
  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;  --sp-9: 96px;  --sp-10: 128px;

  /* --- Radii --- */
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 24px; --r-pill: 999px;

  /* --- Shadows --- */
  --shadow-1: 0 1px 2px rgba(14, 59, 67, 0.06), 0 1px 1px rgba(14, 59, 67, 0.04);
  --shadow-2: 0 6px 16px -4px rgba(14, 59, 67, 0.12), 0 2px 4px rgba(14, 59, 67, 0.06);
  --shadow-3: 0 18px 40px -12px rgba(14, 59, 67, 0.20);
  --shadow-postcard: 4px 4px 0 var(--ink);
  --shadow-postcard-coral: 4px 4px 0 var(--coral);

  /* --- Motion --- */
  --ease-aloha: cubic-bezier(0.2, 0.7, 0.1, 1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;

  /* --- Layout --- */
  --container: 1280px;
  --container-reading: 720px;
  --header-offset: 28px;
}

* { box-sizing: border-box; }

/* ==========================================================================
   2.  Base elements
   ========================================================================== */
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg1);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg1);
  text-wrap: balance;
  margin: 0;
}
h1 { font-size: 64px; line-height: 1.04; }
h2 { font-size: 44px; line-height: 1.10; }
h3 { font-size: 28px; line-height: 1.20; }

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--fg1);
  margin: 0;
}
h4 { font-size: 20px; line-height: 1.30; }

p { margin: 0 0 1em 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

.script { font-family: var(--font-script); font-size: 34px; font-weight: 400; color: var(--ink); }
.mono   { font-family: var(--font-mono);   font-size: 14px; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-24);
  transition: text-decoration-color var(--t-fast) var(--ease-aloha), color var(--t-fast) var(--ease-aloha);
}
a:hover { text-decoration-color: var(--coral); color: var(--coral-deep); }
a:focus-visible { outline: 3px solid var(--coral); outline-offset: 2px; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--coral); color: var(--shell); }

/* ==========================================================================
   3.  Layout primitives
   ========================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.wave-divider { padding: 18px 0; }
.wave-divider img { width: 100%; height: 18px; display: block; opacity: 0.55; }

/* ==========================================================================
   4.  Top promo bar
   ========================================================================== */
.topbar {
  background: var(--ink);
  color: var(--shell);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.topbar a { color: var(--sunset); text-decoration: underline; text-underline-offset: 3px; }
.topbar strong { font-weight: 700; color: var(--shell); }

/* ==========================================================================
   5.  Site header
   ========================================================================== */
.site-header {
  background: rgba(251, 244, 232, 0.92);
  border-bottom: 1px solid var(--ink-12);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
}
.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 14px 0;
  gap: 24px;
}
.site-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.site-logo:hover { text-decoration: none; }
.site-logo img { height: 56px; width: auto; display: block; }
.site-logo .word { font-family: var(--font-display); font-size: 24px; color: var(--ink); letter-spacing: -0.01em; line-height: 1; }
.site-logo .word .dot { color: var(--coral); }
.site-logo .tag  {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-60);
  margin-top: 3px;
}

.primary-nav { display: flex; gap: 24px; justify-content: center; font-family: var(--font-body); font-size: 14px; font-weight: 500; flex-wrap: nowrap; }
.primary-nav a {
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  white-space: nowrap;
}
.primary-nav a:hover { color: var(--coral-deep); }
.primary-nav a.is-current { color: var(--coral); }
.primary-nav a.is-current::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--coral); border-radius: 2px;
}

.header-actions { display: flex; gap: 10px; justify-content: flex-end; align-items: center; }
.icon-btn {
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--ink);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover { background: var(--ink-12); }

.btn-shop {
  background: var(--coral);
  color: var(--shell);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  border-radius: 999px;
  padding: 9px 16px;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--t-fast) var(--ease-aloha), transform var(--t-fast) var(--ease-aloha);
}
.btn-shop:hover { background: var(--coral-deep); transform: translateY(-1px); color: var(--shell); text-decoration: none; }

/* Shared buttons ---------- */
.btn-primary {
  background: var(--coral);
  color: var(--shell);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast) var(--ease-aloha);
}
.btn-primary:hover { background: var(--coral-deep); transform: translateY(-1px); color: var(--shell); text-decoration: none; }

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--t-fast) var(--ease-aloha);
}
.btn-secondary:hover { background: var(--ink); color: var(--shell); text-decoration: none; }

/* ==========================================================================
   6.  Hero
   ========================================================================== */
.hero { padding: 48px 0 32px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.hero .lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); max-width: 520px; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo .frame {
  position: relative;
  border: 1px solid var(--ink);
  background: var(--shell-deep);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1.4deg);
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .stamp {
  position: absolute; top: -14px; right: -18px;
  font-family: var(--font-script); font-size: 44px; color: var(--coral);
  transform: rotate(-8deg);
  z-index: 2;
  text-shadow: 0 1px 0 var(--shell);
}
.hero-photo .caption {
  margin-top: 16px; padding-left: 8px;
  font-family: var(--font-script); font-size: 22px; color: var(--ocean);
  transform: rotate(-1deg);
}

/* ==========================================================================
   7.  Category strip
   ========================================================================== */
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px; gap: 24px; flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--font-display); font-size: 36px; line-height: 1.05;
  color: var(--ink); letter-spacing: -0.01em; margin: 0;
}
.section-head .more {
  font-family: var(--font-body); font-size: 14px;
  color: var(--coral-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat-tile {
  display: block;
  position: relative;
  aspect-ratio: 4/5;
  background: var(--shell-deep);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-base) var(--ease-aloha), box-shadow var(--t-base) var(--ease-aloha);
  border: 1px solid var(--ink-12);
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -10px rgba(14,59,67,0.20); text-decoration: none; }
.cat-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-aloha);
}
.cat-tile:hover img { transform: scale(1.04); }
.cat-tile::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 40%;
  background: linear-gradient(180deg, rgba(14,59,67,0.40) 0%, rgba(14,59,67,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.cat-tile .badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--coral); color: var(--shell);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 999px;
  z-index: 2;
}
.cat-tile .meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 60px 16px 14px;
  background: linear-gradient(180deg, rgba(14,59,67,0) 0%, rgba(14,59,67,0.55) 35%, rgba(14,59,67,0.95) 100%);
  color: var(--shell);
  z-index: 2;
}
.cat-tile .meta .name {
  font-family: var(--font-display); font-size: 22px; line-height: 1.05; letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.cat-tile .meta .count { font-family: var(--font-body); font-size: 12px; opacity: 0.9; margin-top: 4px; }

/* ==========================================================================
   8.  Main content grid
   ========================================================================== */
.main-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; padding: 56px 0 32px; }

/* ==========================================================================
   9.  Article cards
   ========================================================================== */
.posts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
.post-card {
  display: flex; flex-direction: column;
  background: transparent;
  text-decoration: none;
  color: var(--ink);
}
.post-card:hover { text-decoration: none; }
.post-card .post-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--shell-deep);
  border-radius: 8px; overflow: hidden;
  border: 1px solid var(--ink-12);
  transition: transform var(--t-base) var(--ease-aloha), box-shadow var(--t-base) var(--ease-aloha);
}
.post-card:hover .post-img { transform: translateY(-2px); box-shadow: 0 10px 22px -6px rgba(14,59,67,0.18); }
.post-card .post-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-aloha);
}
.post-card:hover .post-img img { transform: scale(1.04); }
.post-card .chip {
  position: absolute; top: 10px; left: 10px;
  background: rgba(251, 244, 232, 0.95);
  color: var(--ink);
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.post-card .post-meta {
  margin-top: 14px; display: flex; gap: 10px; align-items: center;
  font-family: var(--font-body); font-size: 12px; color: var(--ink-60);
}
.post-card .post-meta .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--ink-24); }
.post-card .post-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; line-height: 1.15;
  margin: 8px 0 6px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.post-card:hover .post-title { color: var(--coral-deep); }
.post-card .post-excerpt { font-size: 15px; color: var(--ink-soft); margin: 0; }

.post-card.is-feature { grid-column: span 2; }
.post-card.is-feature .post-img { aspect-ratio: 16/8; }
.post-card.is-feature .post-title { font-size: 36px; line-height: 1.05; }
.post-card.is-feature .post-excerpt { font-size: 17px; max-width: 640px; }

/* ==========================================================================
   10. Widgets / sidebar
   ========================================================================== */
.widget-area {
  display: flex; flex-direction: column; gap: 28px;
  position: sticky; top: 100px; align-self: start;
}
.widget {
  background: #FFFFFF;
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  padding: 18px;
}
.widget.is-dark { background: var(--ink); color: var(--shell); border-color: transparent; }
.widget .widget-head {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.widget.is-dark .widget-head { color: var(--sunset); }
.widget h4 { font-family: var(--font-display); font-size: 22px; line-height: 1.1; margin: 0 0 8px; letter-spacing: -0.01em; }
.widget p { font-size: 14px; color: var(--ink-soft); margin: 0 0 12px; line-height: 1.5; }
.widget.is-dark p { color: rgba(251,244,232,0.78); }

.widget-search { display: flex; gap: 6px; }
.widget-search input {
  flex: 1; font: inherit; font-size: 14px;
  border: 1px solid var(--ink-24);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--shell);
  outline: none;
  color: var(--ink);
}
.widget-search input:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,90,79,0.18); }
.widget-search button {
  background: var(--ink); color: var(--shell); border: none;
  border-radius: 8px; padding: 0 14px; font: inherit; font-size: 13px;
  cursor: pointer;
}

.pillar-list { list-style: none; padding: 0; margin: 0; }
.pillar-list li {
  display: flex; justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--ink-12);
  font-size: 14px;
}
.pillar-list li:last-child { border-bottom: none; }
.pillar-list a { color: var(--ink); text-decoration: none; }
.pillar-list a:hover { color: var(--coral-deep); text-decoration: none; }
.pillar-list .count { font-family: var(--font-mono); font-size: 12px; color: var(--ink-60); }

.pick-list { display: flex; flex-direction: column; }
.pick-row {
  display: flex; gap: 12px; align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ink-12);
  text-decoration: none;
  color: inherit;
}
.pick-row:last-child { border-bottom: none; padding-bottom: 0; }
.pick-row:first-child { padding-top: 0; }
.pick-row:hover { text-decoration: none; }
.pick-row .thumb {
  display: block; width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  background: var(--shell-deep);
  border: 1px solid var(--ink-12);
}
.pick-row .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pick-row .pick-title { font-family: var(--font-body); font-size: 14px; font-weight: 500; line-height: 1.25; color: var(--ink); }
.pick-row:hover .pick-title { color: var(--coral-deep); }
.pick-row .pick-price { font-family: var(--font-mono); font-size: 12px; color: var(--ink-60); margin-top: 4px; }

.widget-shop-all {
  margin-top: 14px; width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 11px 16px;
}

.widget-newsletter input {
  width: 100%; font: inherit; font-size: 14px;
  background: rgba(251,244,232,0.10);
  color: var(--shell);
  border: 1px solid rgba(251,244,232,0.24);
  border-radius: 8px;
  padding: 11px 12px;
  outline: none;
  margin-bottom: 8px;
}
.widget-newsletter input::placeholder { color: rgba(251,244,232,0.55); }
.widget-newsletter button {
  width: 100%;
  background: var(--coral); color: var(--shell);
  border: none; border-radius: 8px;
  padding: 11px; font: inherit; font-weight: 500; font-size: 14px;
  cursor: pointer;
}
.widget-newsletter button:hover { background: var(--coral-deep); }
.widget-newsletter small {
  display: block; margin-top: 8px;
  font-size: 11px; color: rgba(251,244,232,0.55);
}

/* ==========================================================================
   11. ʻOhana strip
   ========================================================================== */
.ohana-strip {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.ohana-shot {
  position: relative;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--ink-12);
  background: var(--shell-deep);
  aspect-ratio: 4/5;
  transition: transform var(--t-base) var(--ease-aloha);
}
.ohana-shot.is-wide { aspect-ratio: 16/11; }
.ohana-shot:hover { transform: translateY(-3px); }
.ohana-shot img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-aloha);
}
.ohana-shot:hover img { transform: scale(1.05); }
.ohana-shot::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 35%;
  background: linear-gradient(180deg, rgba(14,59,67,0.32) 0%, rgba(14,59,67,0) 100%);
  pointer-events: none;
  z-index: 1;
}
.ohana-shot .ohana-tag {
  position: absolute; top: 10px; left: 10px;
  background: rgba(251, 244, 232, 0.95);
  color: var(--ink);
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}
.ohana-shot figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 70px 14px 12px;
  background: linear-gradient(180deg, rgba(14,59,67,0) 0%, rgba(14,59,67,0.55) 35%, rgba(14,59,67,0.92) 100%);
  color: var(--shell);
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  line-height: 1.35;
  z-index: 2;
}

/* ==========================================================================
   12. Trust strip
   ========================================================================== */
.trust {
  background: var(--shell-deep);
  padding: 28px 0;
  margin: 32px 0;
  border-top: 1px solid var(--ink-12);
  border-bottom: 1px solid var(--ink-12);
}
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-cell { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-cell svg { color: var(--coral); }
.trust-cell .t-title { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--ink); }
.trust-cell .t-sub   { font-size: 12px; color: var(--ink-60); }

/* ==========================================================================
   13. Shop banner (funnel CTA → AlohaClothes.com)
   ========================================================================== */
.shop-banner {
  background: var(--ink);
  color: var(--shell);
  border-radius: 16px;
  margin: 56px auto;
  padding: 56px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center;
  position: relative;
  overflow: hidden;
}
.shop-banner::before {
  content: ""; position: absolute;
  inset: -40% -10% auto auto; width: 70%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(242,166,90,0.32) 0%, transparent 60%);
  pointer-events: none;
}
.shop-banner .eyebrow { color: var(--sunset); position: relative; }
.shop-banner h2 {
  font-family: var(--font-display); font-size: 48px; line-height: 1.05;
  letter-spacing: -0.01em; margin: 12px 0 16px; position: relative;
  color: var(--shell);
}
.shop-banner p {
  font-size: 17px; color: rgba(251,244,232,0.82); max-width: 460px; margin: 0 0 24px; position: relative;
}
.shop-banner p strong { color: var(--sunset); font-weight: 700; }
.shop-banner .ctas { display: flex; gap: 12px; position: relative; flex-wrap: wrap; }
.shop-banner .btn-secondary { color: var(--shell); border-color: rgba(251,244,232,0.55); }
.shop-banner .btn-secondary:hover { background: var(--shell); color: var(--ink); border-color: var(--shell); }

.product-stack { position: relative; aspect-ratio: 5/4; }
.product-stack .pc {
  position: absolute; width: 64%; aspect-ratio: 4/5;
  background: var(--shell-deep);
  border: 1px solid rgba(251,244,232,0.45);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,0.4);
}
.product-stack .pc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-stack .pc.a { top: 0; left: 0; transform: rotate(-5deg); }
.product-stack .pc.b { top: 10%; left: 32%; transform: rotate(2deg); z-index: 2; }
.product-stack .pc.c { top: 4%; right: 0; transform: rotate(6deg); }

/* ==========================================================================
   14. Single article
   ========================================================================== */
.article-wrap { padding: 48px 0; }
.article-head { max-width: 760px; margin: 0 auto; text-align: center; }
.article-head .crumbs {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral);
  margin-bottom: 16px;
}
.article-head .crumbs a { color: inherit; text-decoration: none; }
.article-head h1 {
  font-family: var(--font-display); font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05; margin: 0 0 16px; letter-spacing: -0.01em;
}
.article-head .lede { font-size: 19px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 18px; }
.article-head .byline { font-size: 13px; color: var(--ink-60); display: flex; gap: 12px; justify-content: center; align-items: center; }
.article-head .byline .dot { width: 3px; height: 3px; border-radius: 999px; background: var(--ink-24); }

.article-cover { margin: 32px auto; }
.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--ink-12);
}

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
}
.article-body p { margin: 0 0 18px; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 32px; line-height: 1.1;
  margin: 36px 0 14px;
  letter-spacing: -0.01em;
}
.article-body blockquote {
  margin: 28px 0;
  padding: 0 0 0 22px;
  border-left: 3px solid var(--coral);
  font-family: var(--font-display); font-size: 26px; line-height: 1.25;
  color: var(--ink);
}
.article-body blockquote p { margin: 0; }

.inline-shop {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 16px; align-items: center;
  background: var(--shell-deep);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  padding: 14px;
  margin: 28px 0;
}
.inline-shop .inline-thumb {
  display: block; width: 110px; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden; background: #fff;
  border: 1px solid var(--ink-12);
}
.inline-shop .inline-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.inline-shop .label {
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral);
}
.inline-shop .name { font-family: var(--font-display); font-size: 20px; line-height: 1.1; margin: 2px 0 4px; }
.inline-shop .price { font-family: var(--font-mono); font-size: 14px; color: var(--ink-60); }

.product-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin: 14px 0 32px;
}
.prod-card {
  display: flex; flex-direction: column; gap: 4px;
  background: var(--shell-deep);
  border: 1px solid var(--ink-12);
  border-radius: 12px;
  padding: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--t-base) var(--ease-aloha), box-shadow var(--t-base) var(--ease-aloha);
}
.prod-card:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -6px rgba(14,59,67,0.16); text-decoration: none; }
.prod-card .thumb {
  display: block; width: 100%; aspect-ratio: 4/5;
  border-radius: 6px; overflow: hidden; background: #fff;
  margin-bottom: 8px;
}
.prod-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 500ms var(--ease-aloha); }
.prod-card:hover .thumb img { transform: scale(1.04); }
.prod-card .role {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral);
}
.prod-card .name { font-family: var(--font-display); font-size: 19px; line-height: 1.1; letter-spacing: -0.005em; }
.prod-card:hover .name { color: var(--coral-deep); }
.prod-card .price { font-family: var(--font-mono); font-size: 12px; color: var(--ink-60); }

/* ==========================================================================
   15. Footer
   ========================================================================== */
.site-footer { background: var(--ink); color: var(--shell); padding: 64px 0 24px; margin-top: 48px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-grid h5 {
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sunset);
  margin: 0 0 14px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(251,244,232,0.82); text-decoration: none; font-size: 14px; }
.footer-grid a:hover { color: var(--coral); text-decoration: none; }
.footer-brand .logo-row { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-row img { height: 54px; width: auto; }
.footer-brand .word { font-family: var(--font-display); font-size: 24px; letter-spacing: -0.01em; }
.footer-brand .word .dot { color: var(--coral); }
.footer-brand p { font-size: 14px; color: rgba(251,244,232,0.74); max-width: 280px; margin-top: 14px; line-height: 1.55; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(251,244,232,0.14);
  font-size: 12px;
  color: rgba(251,244,232,0.54);
}
.socials { display: flex; gap: 14px; }
.socials a { color: rgba(251,244,232,0.72); }
.socials a:hover { color: var(--coral); }

/* ==========================================================================
   16. Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .header-row { grid-template-columns: auto auto; }
  .primary-nav { display: none; } /* hand off to mobile-nav.html partial */
  .hero-grid, .main-grid, .shop-banner, .footer-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .posts { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .ohana-strip { grid-template-columns: repeat(2, 1fr); }
  .product-row { grid-template-columns: 1fr; }
  .widget-area { position: static; }
  .shop-banner { padding: 36px 28px; }
  .shop-banner h2 { font-size: 36px; }
  .inline-shop { grid-template-columns: 80px 1fr; }
  .inline-shop .btn-primary { grid-column: 1 / -1; justify-content: center; }
}
