/*
Theme Name:   Hello Elementor Child
Theme URI:    https://avasterling.com/
Description:  Child theme for Ava Sterling — Fitness. Style. Glow.
Author:       Ava Sterling
Template:     hello-elementor
Version:      1.0.0
Text Domain:  hello-elementor-child
*/

/* ============================================================
   AVA STERLING — Design System
   Fonts: Cormorant Garamond (display) + Jost (sans)
   ============================================================ */

/* ---------- Google Fonts import ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ---------- Design tokens ---------- */
:root {
  --cream:        #F7F1E6;
  --cream-alt:    #F0E7D6;
  --cream-deep:   #E9DEC9;
  --paper:        #FCF8F0;
  --ink:          #211C16;
  --ink-soft:     #3A332A;
  --brown:        #6E5E49;
  --brown-soft:   #9A8A74;
  --gold:         #B08A4A;
  --gold-bright:  color-mix(in srgb, var(--gold) 72%, #ffffff);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;
  --maxw:         1240px;
  --gutter:       clamp(20px, 5vw, 64px);
  --sec-y:        clamp(64px, 9vw, 132px);
}

/* ---------- Base reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink-soft);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ---------- Hello Elementor overrides ---------- */
.elementor-section-wrap,
.e-con-inner {
  max-width: var(--maxw);
}

/* Elementor Flexbox Container CSS variables (--display, --flex-direction) are only
   generated when the page is saved through the Elementor editor. For programmatically
   built pages the variables are never written, so display falls back to the CSS initial
   value of "inline". Force the correct defaults globally. */
.e-con {
  display: flex !important;
  flex-direction: column; /* most containers stack content vertically */
}
/* Row-direction containers (flex_direction: row in settings) use --flex-direction: row
   which is set inline — honour it when present, fall back to column */
.e-con.e-flex {
  flex-direction: var(--flex-direction, column);
}

/* ============================================================
   HOMEPAGE SECTION LAYOUT — direct property overrides
   The Elementor CSS variable pipeline (--padding-top → padding-block-start →
   padding-top) breaks for programmatically-built pages: the variables ARE set in
   post-7.css but the frontend.min.css LTR/RTL reassignment rules cancel them out,
   so computed padding/background remain at their initial values.
   Fix: target each container by elementor-element ID and apply the properties
   directly, bypassing the variable chain entirely.
   ============================================================ */

/* --- Outer section containers: background + vertical rhythm --- */
.elementor-element-f4a706b {              /* Categories */
  background-color: var(--cream) !important;
  padding-top: var(--sec-y) !important;
  padding-bottom: var(--sec-y) !important;
}
.elementor-element-c729fe1 {              /* Lead magnet */
  background-color: var(--cream) !important;
  padding-top: 0 !important;
  padding-bottom: clamp(48px, 6vw, 88px) !important;
}
.elementor-element-616fba3 {              /* Shop the Edit */
  background-color: var(--cream-alt) !important;
  padding-top: var(--sec-y) !important;
  padding-bottom: var(--sec-y) !important;
}
.elementor-element-b11bf9f {              /* Journal */
  background-color: var(--cream) !important;
  padding-top: var(--sec-y) !important;
  padding-bottom: var(--sec-y) !important;
}
.elementor-element-2bacac9 {              /* About + AI disclosure */
  background-color: var(--ink) !important;
  padding-top: var(--sec-y) !important;
  padding-bottom: var(--sec-y) !important;
  color: #E8DFD0;
}

/* --- Inner content containers: constrain to 1240px and add horizontal gutter ---
   Each inner container wraps the section HTML and must behave like .as-wrap:
   max-width 1240px, centred, 64px horizontal padding.               */
.elementor-element-054bce5,   /* Categories inner */
.elementor-element-eda7acd,   /* Lead magnet inner */
.elementor-element-ca7601b,   /* Shop inner */
.elementor-element-b6295e2,   /* Journal inner */
.elementor-element-51cbb59 {  /* About inner */
  max-width: var(--maxw) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--gutter) !important;
  padding-right: var(--gutter) !important;
  flex-direction: column !important;
}

/* Prevent Hello theme adding unwanted padding */
.site-content { padding: 0 !important; }
.page-content, .entry-content { margin: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}

/* ---------- Kicker / eyebrow ---------- */
.as-kicker {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--brown);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.as-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}
.as-kicker.center {
  justify-content: center;
}
.as-kicker.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ---------- Gold rule ---------- */
.as-rule-gold {
  height: 1px;
  border: 0;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(176,138,74,0.5), transparent);
  margin: 0;
}

/* ---------- Buttons ---------- */
.as-btn {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 17px 30px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .35s cubic-bezier(.2,.7,.2,1);
  white-space: nowrap;
  text-decoration: none;
}
.as-btn .arr { transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.as-btn:hover .arr { transform: translateX(4px); }

.as-btn-solid { background: var(--ink); color: var(--cream) !important; }
.as-btn-solid:hover { background: #000; color: var(--cream) !important; }

.as-btn-outline {
  background: transparent;
  color: var(--ink) !important;
  border-color: rgba(33,28,22,0.35);
}
.as-btn-outline:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream) !important;
}

.as-btn-gold { background: var(--gold); color: #1c1710 !important; }
.as-btn-gold:hover { background: var(--gold-bright); color: #1c1710 !important; }

.as-btn-link {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  border-bottom: 1px solid rgba(176,138,74,0.7);
  padding-bottom: 5px;
  cursor: pointer;
  transition: gap .3s;
  text-decoration: none;
}
.as-btn-link:hover { gap: 1em; }

/* ---------- Elementor global button override ---------- */
.elementor-button.as-btn-solid,
.elementor-button.as-btn-gold,
.elementor-button.as-btn-outline {
  border-radius: 0;
}

/* ============================================================
   STICKY HEADER
   ============================================================ */
#as-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(247,241,230,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176,138,74,0.22);
}

.as-nav {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.as-nav-links {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  align-items: center;
}
.as-nav-links.right { justify-self: end; }

.as-nav-link {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-block: 6px;
  white-space: nowrap;
  text-decoration: none;
}
.as-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--gold);
  transition: width .3s;
}
.as-nav-link:hover::after,
.as-nav-link.active::after { width: 100%; }

.as-brand {
  justify-self: center;
  text-align: center;
  line-height: 1;
  text-decoration: none;
}
.as-brand .name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.04em;
  color: var(--ink);
  display: block;
}
.as-brand .sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 8.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-top: 4px;
  white-space: nowrap;
}

.as-nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid rgba(33,28,22,0.3);
  padding: 11px 18px;
  transition: all .3s;
  white-space: nowrap;
  text-decoration: none;
  color: var(--ink);
}
.as-nav-cta:hover {
  background: var(--ink);
  color: var(--cream) !important;
  border-color: var(--ink);
}

/* Burger — hidden on desktop */
.as-nav-burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  justify-self: start;
}
.as-nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
  transition: .3s;
}

/* ============================================================
   MOBILE DRAWER
   ============================================================ */
#as-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--cream);
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter);
}
#as-drawer.open { transform: translateX(0); }

.as-drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.as-drawer-top .name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
}
.as-drawer-close {
  background: none;
  border: 0;
  font-size: 30px;
  cursor: pointer;
  color: var(--ink);
  line-height: 1;
}
#as-drawer a {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--cream-deep);
  text-decoration: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
#as-footer {
  background: var(--ink);
  color: #C9BCA8;
}

.as-foot-top {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px,7vw,92px) var(--gutter);
}

.as-foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.as-foot-brand .name {
  font-family: var(--font-display);
  font-size: 30px;
  color: #F3ECDD;
  letter-spacing: .04em;
}
.as-foot-brand .sub {
  font-size: 8.5px;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-top: 6px;
  display: block;
}
.as-foot-brand p {
  color: #9F9483;
  max-width: 34ch;
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.7;
}

.as-foot-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin: 0 0 18px;
}
.as-foot-col a {
  display: block;
  color: #B6AA98;
  font-size: 14.5px;
  padding: 6px 0;
  transition: color .25s;
  text-decoration: none;
}
.as-foot-col a:hover { color: #F3ECDD; }

.as-foot-disc {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 26px;
  font-size: 12.5px;
  color: #8C8273;
  line-height: 1.7;
}
.as-foot-disc .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.as-foot-disc strong { color: #B6AA98; font-weight: 500; }
.as-foot-disc a { color: var(--gold-bright); }

/* ============================================================
   SKIP LINK (accessibility)
   ============================================================ */
.as-skip-link {
  position: absolute;
  top: -100px;
  left: var(--gutter);
  background: var(--ink);
  color: var(--cream) !important;
  padding: 12px 20px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 999999;
  transition: top .2s;
  text-decoration: none;
}
.as-skip-link:focus { top: 8px; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.as-wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.as-section { padding-block: var(--sec-y); }
.as-section-tight { padding-block: clamp(48px, 6vw, 88px); }
.as-bg-alt { background: var(--cream-alt); }
.as-bg-ink { background: var(--ink); color: #E8DFD0; }
.as-bg-paper { background: var(--paper); }

/* ============================================================
   HOMEPAGE — Hero (Variant A: full-bleed cover)
   ============================================================ */
.as-hero-a {
  position: relative;
  height: min(90vh, 880px);
  min-height: 560px;
  overflow: hidden;
}
.as-hero-a img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}
.as-hero-a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,.42) 0%, rgba(20,16,11,.18) 36%, rgba(20,16,11,.74) 100%);
}
.as-hero-a-inner {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: var(--gutter);
  padding-bottom: clamp(44px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  left: 0; right: 0;
}
.as-hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(46px, 7.4vw, 104px);
  line-height: 0.98;
  letter-spacing: -0.015em;
  color: #FBF6EC;
  max-width: 15ch;
  margin: 0;
}
.as-hero-title em {
  font-style: italic;
  color: var(--gold);
}
.as-hero-lede {
  color: #EADFCB;
  font-size: clamp(18px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.65;
  max-width: 46ch;
  margin-top: 20px;
}
.as-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.as-hero-topline {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px var(--gutter);
  color: #E9DFCD;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}

/* ============================================================
   HOMEPAGE — Category grid
   ============================================================ */
.as-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.as-cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
}
.as-cat-card img {
  width: 100%;
  height: clamp(320px, 30vw, 440px);
  object-fit: cover;
  object-position: 50% 25%;
  display: block;
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1);
}
.as-cat-card:hover img { transform: scale(1.05); }
.as-cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,0) 38%, rgba(20,16,11,.66) 100%);
}
.as-cat-card-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 24px;
  color: #FBF6EC;
}
.as-cat-card-cap .n {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  display: block;
  margin-bottom: 8px;
}
.as-cat-card-cap .t {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.05;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.as-cat-card-cap .arr {
  opacity: 0;
  transform: translateX(-6px);
  transition: .35s;
}
.as-cat-card:hover .as-cat-card-cap .arr { opacity: 1; transform: translateX(0); }

/* ============================================================
   HOMEPAGE — Lead magnet / capsule guide CTA
   ============================================================ */
.as-lead {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  background: var(--paper);
  border: 1px solid rgba(176,138,74,0.34);
  padding: clamp(32px, 5vw, 72px);
}
.as-lead-guide {
  display: flex;
  justify-content: center;
}
.as-lead-guide img {
  width: min(330px, 80%);
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 30px 60px -30px rgba(33,28,22,.5);
}
.as-lead h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  margin-top: 16px;
  max-width: 16ch;
}
.as-lead .sub {
  color: var(--brown);
  margin-top: 16px;
  max-width: 44ch;
}

/* Lead form */
.as-lead-form { margin-top: 30px; max-width: 440px; }
.as-field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.as-lead-form input[type=email] {
  flex: 1;
  min-width: 200px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  padding: 16px 18px;
  border: 1px solid rgba(33,28,22,0.24);
  background: var(--cream);
  color: var(--ink);
  border-radius: 0;
}
.as-lead-form input[type=email]:focus { outline: none; border-color: var(--gold); }
.as-lead-form .micro {
  font-size: 12px;
  color: var(--brown-soft);
  margin-top: 14px;
  letter-spacing: .02em;
}
.as-form-success {
  display: none;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  font-style: italic;
}
.as-lead-form.sent .as-field-row,
.as-lead-form.sent .micro { display: none; }
.as-lead-form.sent .as-form-success { display: flex; }
.as-form-success .seal {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-style: normal;
  flex-shrink: 0;
}

/* ============================================================
   HOMEPAGE — Product grid (Shop the Edit)
   ============================================================ */
.as-prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.as-prod { display: flex; flex-direction: column; }
.as-prod-shot {
  position: relative;
  background: var(--paper);
  overflow: hidden;
}
.as-prod-shot img {
  aspect-ratio: 4/5;
  width: 100%;
  object-fit: cover;
  display: block;
}
.as-prod-tag {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 9.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: var(--gold);
  color: #1c1710;
  padding: 5px 9px;
  font-weight: 500;
  white-space: nowrap;
}
.as-prod-quick {
  position: absolute;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 2;
  background: rgba(33,28,22,0.92);
  color: var(--cream);
  text-align: center;
  padding: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: .35s;
  text-decoration: none;
}
.as-prod:hover .as-prod-quick { opacity: 1; transform: translateY(0); }
.as-prod-meta { padding-top: 16px; }
.as-prod-brand {
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown-soft);
}
.as-prod-name {
  font-family: var(--font-display);
  font-size: 21px;
  color: var(--ink);
  margin-top: 5px;
  line-height: 1.12;
}
.as-prod-price {
  margin-top: 9px;
  font-size: 14px;
  color: var(--brown);
  letter-spacing: .04em;
}

/* ============================================================
   HOMEPAGE — Magazine / Journal block
   ============================================================ */
.as-mag {
  display: grid;
  grid-template-columns: 1.32fr 1fr;
  gap: clamp(28px, 3.4vw, 56px);
}
.as-mag-feature img { aspect-ratio: 16/11; width: 100%; object-fit: cover; }
.as-post-cat {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  display: block;
}
.as-mag-feature h3 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-top: 14px;
  max-width: 18ch;
}
.as-mag-feature .excerpt { color: var(--brown); margin-top: 14px; max-width: 52ch; }
.as-mag-feature .byline { margin-top: 18px; font-size: 12.5px; letter-spacing: .04em; color: var(--brown-soft); }

.as-mag-list { display: flex; flex-direction: column; gap: 26px; }
.as-mag-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.as-mag-item img { aspect-ratio: 1/1; width: 130px; object-fit: cover; }
.as-mag-item h4 { font-size: 21px; line-height: 1.12; margin-top: 8px; }
.as-mag-item .byline { margin-top: 8px; font-size: 12px; color: var(--brown-soft); letter-spacing: .03em; }
.as-mag-item + .as-mag-item { border-top: 1px solid var(--cream-deep); padding-top: 26px; }

/* ============================================================
   HOMEPAGE — About / AI disclosure dark band
   ============================================================ */
.as-about-band {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.as-about-band img { aspect-ratio: 4/5; width: 100%; object-fit: cover; object-position: 50% 15%; }
.as-about-band h2 { font-size: clamp(32px, 4vw, 52px); margin-top: 16px; color: #F3ECDD; }
.as-about-band p { color: #C2B6A2; margin-top: 20px; max-width: 52ch; }
.as-about-band .sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  color: var(--gold-bright);
  margin-top: 28px;
}
.as-ai-note {
  margin-top: 30px;
  padding: 22px 24px;
  border: 1px solid rgba(200,169,104,.4);
  background: rgba(255,255,255,.03);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.as-ai-note .badge {
  flex: 0 0 auto;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #1c1710;
  background: var(--gold-bright);
  padding: 6px 10px;
  font-weight: 500;
  white-space: nowrap;
}
.as-ai-note p { margin: 0; font-size: 14px; color: #B7AB97; line-height: 1.65; }

/* ============================================================
   INNER PAGES — Page head
   ============================================================ */
.as-page-head {
  padding-block: clamp(56px, 8vw, 116px) clamp(28px, 4vw, 52px);
  text-align: center;
}
.as-page-head h1 {
  font-size: clamp(40px, 6vw, 78px);
  margin: 18px auto 0;
  max-width: 16ch;
  line-height: 1.05;
}
.as-page-head .lede {
  font-size: clamp(18px, 1.6vw, 21px);
  color: var(--brown);
  font-weight: 300;
  line-height: 1.65;
  max-width: 56ch;
  margin: 28px auto 0;
  text-align: center;
}
.as-page-head.with-line { border-bottom: 1px solid var(--cream-deep); }

/* ============================================================
   EDITORIAL BAND (split image + text)
   ============================================================ */
.as-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
}
.as-band.reverse .as-band-media { order: 2; }
.as-band-media img { aspect-ratio: 4/5; width: 100%; object-fit: cover; object-position: 50% 20%; }
.as-band-media.tall img { aspect-ratio: 3/4; }
.as-band-text h2 { font-size: clamp(30px, 3.8vw, 50px); max-width: 16ch; }
.as-band-text p { color: var(--brown); margin-top: 18px; max-width: 50ch; }
.as-band-text .actions { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   SHOP THE LOOK
   ============================================================ */
.as-look {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}
.as-look.reverse .as-look-media { order: 2; }
.as-look + .as-look { margin-top: clamp(48px, 6vw, 96px); }
.as-look-media img { aspect-ratio: 4/5; width: 100%; object-fit: cover; object-position: 50% 20%; }
.as-look-text h3 { font-size: clamp(26px, 3vw, 40px); max-width: 16ch; }
.as-look-text > p { color: var(--brown); margin-top: 14px; max-width: 46ch; }
.as-look-items { margin-top: 26px; display: flex; flex-direction: column; }
.as-look-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--cream-deep);
}
.as-look-item:last-child { border-bottom: 1px solid var(--cream-deep); }
.as-look-item .li-brand { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--brown-soft); display: block; }
.as-look-item .li-prod { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.as-look-item .li-shop {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  border-bottom: 1px solid rgba(176,138,74,0.7);
  padding-bottom: 3px;
  transition: color .25s;
  text-decoration: none;
}
.as-look-item .li-shop:hover { color: var(--gold); }

/* ============================================================
   JOURNAL GRID
   ============================================================ */
.as-jgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
}
.as-jcard { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.as-jcard-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 18px;
}
.as-jcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.as-jcard:hover .as-jcard-img img { transform: scale(1.04); }
.as-jcard h3 { font-size: 25px; line-height: 1.12; margin-top: 10px; }
.as-jcard p { color: var(--brown); margin-top: 10px; font-size: 15px; max-width: 42ch; }
.as-jcard .byline { margin-top: 14px; font-size: 12px; letter-spacing: .03em; color: var(--brown-soft); }

/* Featured journal post */
.as-jfeature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 88px);
  text-decoration: none;
  color: inherit;
}
.as-jfeature img { aspect-ratio: 4/3; width: 100%; object-fit: cover; object-position: 50% 25%; }
.as-jfeature h2 { font-size: clamp(30px, 4vw, 52px); margin-top: 14px; max-width: 16ch; }
.as-jfeature p { color: var(--brown); margin-top: 18px; max-width: 50ch; }
.as-jfeature .byline { margin-top: 20px; font-size: 12.5px; color: var(--brown-soft); letter-spacing: .03em; }

/* Filter chips */
.as-chip-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: clamp(32px, 4vw, 52px);
}
.as-chip {
  font-family: var(--font-sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--brown);
  padding: 11px 20px;
  border: 1px solid rgba(33,28,22,0.18);
  background: transparent;
  cursor: pointer;
  transition: all .25s;
  white-space: nowrap;
}
.as-chip:hover { border-color: var(--ink); color: var(--ink); }
.as-chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ============================================================
   ARTICLE TEMPLATE
   ============================================================ */
.as-article-hero {
  text-align: center;
  padding-block: clamp(48px, 7vw, 104px) clamp(28px, 4vw, 44px);
}
.as-article-hero .cat {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
}
.as-article-hero h1 {
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.04;
  margin: 18px auto 0;
  max-width: 17ch;
}
.as-article-hero .dek {
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--brown);
  font-weight: 300;
  line-height: 1.6;
  max-width: 54ch;
  margin: 22px auto 0;
}
.as-article-hero .byline {
  margin-top: 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-soft);
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.as-article-hero .byline .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

.as-article-figure { margin: 0 0 clamp(40px, 5vw, 72px); }
.as-article-figure img { aspect-ratio: 16/10; width: 100%; object-fit: cover; }
.as-article-figure figcaption {
  text-align: center;
  font-size: 12.5px;
  color: var(--brown-soft);
  margin-top: 12px;
  letter-spacing: .02em;
}

.as-article-body {
  max-width: 700px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.as-article-body > p {
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 26px;
}
.as-article-body > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  float: left;
  font-size: 4.4em;
  line-height: 0.78;
  padding: 6px 12px 0 0;
  color: var(--ink);
}
.as-article-body h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  margin: clamp(38px, 4vw, 56px) 0 16px;
}
.as-article-body h3 { font-size: 23px; margin: 32px 0 12px; }
.as-article-body ul { padding-left: 22px; margin: 0 0 26px; color: var(--ink-soft); }
.as-article-body li { margin-bottom: 12px; line-height: 1.75; font-size: 17px; }
.as-article-body a { color: var(--ink); border-bottom: 1px solid rgba(176,138,74,0.7); }

.as-article-body blockquote {
  margin: clamp(40px, 5vw, 64px) 0;
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid rgba(176,138,74,0.55);
  border-bottom: 1px solid rgba(176,138,74,0.55);
  text-align: center;
}
.as-article-body blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.28;
  color: var(--ink);
  margin: 0;
}

.as-shop-inline {
  margin: clamp(40px, 5vw, 60px) 0;
  padding: clamp(26px, 3vw, 36px);
  background: var(--paper);
  border: 1px solid rgba(176,138,74,0.34);
}
.as-shop-inline .si-head {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 6px;
}
.as-shop-inline .si-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 8px;
}

.as-article-tags {
  max-width: 700px;
  margin: clamp(32px,4vw,48px) auto 0;
  padding-inline: var(--gutter);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.as-tag-chip {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  border: 1px solid var(--cream-deep);
  padding: 8px 14px;
}

.as-article-foot {
  max-width: 700px;
  margin: clamp(36px,4vw,52px) auto 0;
  padding: 32px var(--gutter) 0;
  border-top: 1px solid var(--cream-deep);
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.as-article-foot .auth { display: flex; gap: 16px; align-items: center; }
.as-article-foot .auth .av {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.as-article-foot .auth .av img { width: 100%; height: 100%; object-fit: cover; }
.as-article-foot .auth .n { font-family: var(--font-display); font-size: 21px; color: var(--ink); }
.as-article-foot .auth .r { font-size: 12.5px; color: var(--brown-soft); }

/* ============================================================
   FORMS (contact, capsule guide)
   ============================================================ */
.as-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.as-field label {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
}
.as-field input,
.as-field textarea,
.as-field select {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  padding: 15px 16px;
  border: 1px solid rgba(33,28,22,0.22);
  background: var(--paper);
  color: var(--ink);
  border-radius: 0;
  width: 100%;
}
.as-field textarea { resize: vertical; min-height: 130px; }
.as-field input:focus,
.as-field textarea:focus,
.as-field select:focus { outline: none; border-color: var(--gold); }

/* ============================================================
   CAPSULE GUIDE page
   ============================================================ */
.as-guide-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  min-height: min(82vh, 760px);
}
.as-guide-hero h1 {
  font-size: clamp(38px, 5.2vw, 72px);
  margin-top: 16px;
  max-width: 15ch;
  line-height: 1.05;
}
.as-guide-hero .lede { margin-top: 28px; }
.as-guide-hero-img img { aspect-ratio: 3/4; width: 100%; object-fit: cover; }
.as-guide-list { margin: 30px 0; display: flex; flex-direction: column; gap: 14px; list-style: none; padding: 0; }
.as-guide-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 16px; color: var(--ink-soft); }
.as-guide-list .tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  margin-top: 1px;
}

.as-inside {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 44px);
}
.as-inside .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 34px;
  color: var(--gold);
}
.as-inside h4 { font-size: 20px; margin-top: 8px; }
.as-inside p { color: var(--brown); font-size: 14.5px; margin-top: 10px; }

/* Quote band */
.as-quote { text-align: center; max-width: 30ch; margin: 0 auto; }
.as-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.22;
  color: #F3ECDD;
  margin: 0;
  font-weight: 500;
  font-style: italic;
}
.as-quote .who {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* ============================================================
   PROSE (disclosure)
   ============================================================ */
.as-prose { max-width: 720px; margin: 0 auto; }
.as-prose h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin: clamp(40px, 5vw, 64px) 0 14px;
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--cream-deep);
}
.as-prose h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.as-prose p { color: var(--ink-soft); margin: 0 0 18px; line-height: 1.75; }
.as-prose p a { color: var(--ink); border-bottom: 1px solid rgba(176,138,74,0.7); }
.as-prose ul { padding-left: 20px; margin: 0 0 18px; color: var(--ink-soft); }
.as-prose li { margin-bottom: 10px; line-height: 1.7; }
.as-prose .updated { font-size: 12.5px; letter-spacing: .04em; color: var(--brown-soft); margin-bottom: 40px; }

/* ============================================================
   CONTACT page
   ============================================================ */
.as-contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 80px);
}
.as-contact-info { display: flex; flex-direction: column; gap: 30px; }
.as-contact-info .block h4 { font-size: 22px; margin-bottom: 8px; }
.as-contact-info .block p { color: var(--brown); font-size: 15px; }
.as-collab-types { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.as-collab-type {
  border: 1px solid var(--cream-deep);
  padding: 16px 18px;
  background: var(--paper);
}
.as-collab-type .t { font-family: var(--font-display); font-size: 19px; color: var(--ink); }
.as-collab-type .d { font-size: 12.5px; color: var(--brown); margin-top: 4px; }

/* ============================================================
   SOCIAL page
   ============================================================ */
.as-social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.as-social-grid img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .3s;
}
.as-social-grid a:hover img { opacity: 0.88; }

/* Three-up values */
.as-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.as-three .item { text-align: center; }
.as-three .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 40px;
  color: var(--gold);
}
.as-three .item h4 { font-size: 24px; margin-top: 8px; }
.as-three .item p { color: var(--brown); margin-top: 12px; font-size: 15px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1000px) {
  .as-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .as-prod-grid { grid-template-columns: repeat(2, 1fr); }
  .as-jgrid { grid-template-columns: repeat(2, 1fr); }
  .as-inside { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .as-nav { grid-template-columns: auto 1fr auto; }
  .as-nav-links { display: none; }
  .as-nav-burger { display: block; }
  .as-brand { justify-self: center; }
  .as-nav-cta { display: none; }

  .as-foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .as-foot-brand { grid-column: 1 / -1; }

  .as-lead { grid-template-columns: 1fr; }
  .as-lead-guide { order: -1; }
  .as-mag { grid-template-columns: 1fr; }
  .as-about-band { grid-template-columns: 1fr; }
  .as-band, .as-look, .as-guide-hero, .as-jfeature, .as-contact-grid { grid-template-columns: 1fr; }
  .as-band.reverse .as-band-media, .as-look.reverse .as-look-media { order: 0; }
  .as-three { grid-template-columns: 1fr; gap: 36px; }
  .as-social-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .as-cat-grid { grid-template-columns: 1fr; }
  .as-prod-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .as-jgrid { grid-template-columns: 1fr; }
  .as-inside { grid-template-columns: 1fr; gap: 28px; }
  .as-collab-types { grid-template-columns: 1fr; }
  .as-foot-grid { grid-template-columns: 1fr; }
  .as-article-body > p:first-of-type::first-letter { font-size: 3.4em; }
}

/* ============================================================
   SUPPLEMENTAL COMPONENT CSS
   Classes used in page builder / posts not already defined above
   ============================================================ */

/* --- Guide hero inner layout --- */
.as-guide-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.as-gh-text { display: flex; flex-direction: column; }
.as-gh-media img { aspect-ratio: 3/4; width: 100%; object-fit: cover; object-position: 50% 20%; display: block; }

/* --- About bands (cream bg variant, not dark) --- */
.as-about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.as-about-band img { aspect-ratio: 4/5; width: 100%; object-fit: cover; display: block; }
.as-about-reverse > div:first-child { order: 2; }
.as-about-reverse > div:last-child  { order: 1; }

/* --- Three-up values (standalone class selectors) --- */
.as-three-item { text-align: center; }
.as-three-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

/* --- Inside-the-guide grid items --- */
.as-inside-item { display: flex; flex-direction: column; }
.as-inside-n {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

/* --- Look item brand/prod (new naming in posts) --- */
.as-look-brand { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--brown-soft); display: block; }
.as-look-prod  { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.as-look-reverse > .as-look-media { order: 2; }

/* --- Guide form (mirrors lead form) --- */
.as-guide-form { margin-top: 30px; max-width: 460px; }
.as-guide-form .as-field-row { display: flex; gap: 10px; flex-wrap: wrap; }
.as-guide-form input[type=email] {
  flex: 1 1 200px;
  border: 1px solid var(--cream-deep);
  background: #fff8ef;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
}
.as-guide-form input[type=email]:focus { outline: none; border-color: var(--gold); }
.as-guide-form.sent .as-field-row,
.as-guide-form.sent .micro { display: none; }
.as-guide-form.sent .as-form-success { display: flex; }

/* --- Collab contact form --- */
.as-collab-form .as-form-body { display: flex; flex-direction: column; }
.as-collab-form.sent .as-form-body { display: none; }
.as-collab-form.sent .as-form-success { display: flex; }

/* --- Social platform strip --- */
.as-social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.as-plat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  border: 1px solid var(--cream-deep);
  background: var(--paper);
  text-decoration: none;
  color: inherit;
  transition: border-color .3s, background .3s;
}
.as-plat:hover { border-color: var(--gold); background: var(--cream); }
.as-plat-name  { font-family: var(--font-display); font-size: 22px; color: var(--ink); }
.as-plat-handle { font-size: 12.5px; letter-spacing: .04em; color: var(--brown-soft); }
.as-plat-meta  { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; font-size: 12.5px; color: var(--brown); }

/* --- Instagram grid --- */
.as-ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.as-ig-tile {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.as-ig-tile.as-ig-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.as-ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.as-ig-tile:hover img { transform: scale(1.04); }
.as-ig-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33,28,22,.75) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s;
}
.as-ig-tile:hover .as-ig-ov { opacity: 1; }
.as-ig-cap { font-family: var(--font-sans); font-size: 13px; color: #F3ECDD; margin: 0 0 6px; }
.as-ig-meta { display: flex; gap: 12px; font-size: 12px; color: rgba(243,236,221,.7); }

/* --- Pinterest board --- */
.as-pin-board {
  columns: 4;
  column-gap: 14px;
}
.as-pin {
  break-inside: avoid;
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.as-pin img { width: 100%; display: block; border-radius: 12px; transition: transform .4s ease; }
.as-pin:hover img { transform: scale(1.03); }
.as-pin-foot {
  padding: 10px 2px 4px;
}
.as-pin-board-name { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--brown-soft); }
.as-pin-title { font-family: var(--font-display); font-size: 17px; color: var(--ink); margin-top: 3px; }

/* --- TikTok reel row --- */
.as-reel-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.as-reel {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.as-reel img { aspect-ratio: 9/16; width: 100%; object-fit: cover; display: block; border-radius: 8px; transition: transform .4s ease; }
.as-reel:hover img { transform: scale(1.03); }
.as-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: rgba(255,255,255,.85);
  background: rgba(33,28,22,.45);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.as-reel-foot { padding: 10px 4px 0; }
.as-reel-views { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-bright); }
.as-reel-cap { font-family: var(--font-sans); font-size: 13px; color: #C2B6A2; margin: 4px 0 0; }

/* --- Shop inline (article posts) --- */
.as-shop-inline {
  border: 1px solid var(--cream-deep);
  background: var(--paper);
  padding: clamp(22px, 3vw, 36px);
  margin: 36px 0;
}
.as-si-head { font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--brown-soft); margin-bottom: 6px; }
.as-si-title { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 18px; }

/* --- Post category badge --- */
.as-post-cat {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown-soft);
}

/* --- Contact grid (2-col) --- */
.as-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.as-contact-form { display: flex; flex-direction: column; }

/* ============================================================
   SUPPLEMENTAL RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .as-ig-grid { grid-template-columns: repeat(3, 1fr); }
  .as-ig-tile.as-ig-feature { grid-column: span 1; grid-row: span 1; }
  .as-pin-board { columns: 3; }
  .as-reel-row { grid-template-columns: repeat(3, 1fr); }
  .as-social-grid { grid-template-columns: repeat(2, 1fr); }
  .as-guide-hero, .as-about-band { grid-template-columns: 1fr; }
  .as-about-reverse > div:first-child { order: 0; }
  .as-about-reverse > div:last-child  { order: 0; }
}

@media (max-width: 560px) {
  .as-ig-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .as-pin-board { columns: 2; }
  .as-reel-row { grid-template-columns: repeat(2, 1fr); }
  .as-social-grid { grid-template-columns: 1fr 1fr; }
  .as-contact-grid { grid-template-columns: 1fr; }
  .as-guide-hero { grid-template-columns: 1fr; }
}

/* ============================================================
   HERO B — Full-width CSS Grid split layout
   Matches handoff: hero-b .split { grid-template-columns: 1.04fr 0.96fr }

   NOTE: Elementor Container does not apply _css_classes to the HTML element in
   this version (4.1.2). Structural selectors are used instead.
   .page-id-7 ensures rules only affect the homepage.
   ============================================================ */

/* Hero containers are targeted by Elementor element ID to avoid any
   :first-of-type cascade bleed onto inner containers of later sections. */

/* Hero outer — elementor-element-1f832bd */
.elementor-element-1f832bd {
  display: grid !important;
  grid-template-columns: 1.04fr 0.96fr !important;
  min-height: min(86vh, 820px) !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  align-items: stretch;
}

/* Hero text column — elementor-element-9c5d016 */
.elementor-element-9c5d016 {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: clamp(40px, 6vw, 96px) var(--gutter) !important;
  padding-left: max(var(--gutter), calc((100vw - var(--maxw)) / 2 + var(--gutter))) !important;
  overflow: visible !important;
  background: var(--cream);
  width: auto !important;
  max-width: none !important;
  min-height: 0;
}

/* Widgets in text column stack vertically */
.elementor-element-9c5d016 > * {
  flex-shrink: 0;
}

/* Heading font scale — 5.6vw/82px ensures the 3-line layout at 1460px viewport */
.elementor-element-9c5d016 .elementor-heading-title {
  font-size: clamp(46px, 5.6vw, 82px) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.015em !important;
  width: 100% !important;
}

/* Hero image column — elementor-element-89b3978
   position:relative anchors the absolutely-positioned image so the portrait
   image (1152×2048) does not drive grid track height. */
.elementor-element-89b3978 {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
  width: auto !important;
  max-width: none !important;
  min-height: min(86vh, 820px);
}

/* Image widget wrappers fill the column absolutely */
.elementor-element-89b3978 .elementor-widget-image,
.elementor-element-89b3978 .elementor-widget-image .elementor-widget-container,
.elementor-element-89b3978 .elementor-widget-image figure {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  display: block !important;
}

/* Hero image — correct crop at 50% 18% (face/shoulders centred) */
.elementor-element-89b3978 .elementor-widget-image img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 50% 18% !important;
  display: block !important;
  max-width: none !important;
}

/* Responsive — single column below 880px, image first */
@media (max-width: 880px) {
  .elementor-element-1f832bd {
    grid-template-columns: 1fr !important;
    min-height: unset !important;
  }
  .elementor-element-9c5d016 {
    order: 2;
    padding-left: var(--gutter) !important;
    padding-right: var(--gutter) !important;
  }
  .elementor-element-89b3978 {
    order: 1;
    min-height: 440px !important;
  }
  .elementor-element-89b3978 .elementor-widget-image img {
    min-height: 440px;
  }
}
