/* ============================================================
   GRAFFITI ATTIRE — Brand Stylesheet
   Dark poetic streetwear. Port these tokens into the theme's
   global CSS (or Elementor > Site Settings > Global), and the
   component classes into section/widget CSS.
   Token + base-class names match 10-codex/graffiti-page-assets.css
   ============================================================ */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Color */
  --ga-black:    #050505;  /* page background */
  --ga-washed:   #0A0908;  /* raised panels / trust row */
  --ga-charcoal: #14100E;  /* product image wells */
  --ga-panel:    #0C0B0A;  /* summary cards */
  --ga-bone:     #E8E0D2;  /* primary text */
  --ga-paper:    #C9BDAA;  /* light "wall" sections */
  --ga-red:      #B01616;  /* brand accent */
  --ga-dark-red: #7A0C0C;
  --ga-red-hover:#8F1414;  /* button hover */
  --ga-white:    #F2EFE7;  /* text on red */
  --ga-muted:    #A9A298;  /* body copy */
  --ga-muted-2:  #8A847A;  /* secondary copy */
  --ga-faint:    #6A635A;  /* labels / meta */
  --ga-faint-2:  #5E584F;  /* legal / footer meta */
  --ga-border:   #2D2925;  /* inputs / chips */
  --ga-border-2: #1D1A17;  /* hairlines */
  --ga-hairline: #221F1C;  /* dividers */

  /* Type */
  --ga-heading: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --ga-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --ga-body:    'Space Mono', 'Courier New', monospace;
  --ga-mono:    'Space Mono', 'Courier New', monospace;
  --ga-marker:  'Permanent Marker', cursive;       /* graffiti tags only */

  /* Layout */
  --ga-maxw: 1180px;
  --ga-gutter: 30px;
}

/* ---------- 2. BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--ga-black);
  color: var(--ga-bone);
  font-family: var(--ga-mono);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--ga-red); color: var(--ga-black); }
img { display: block; max-width: 100%; }
a { color: inherit; }

.ga-container { max-width: var(--ga-maxw); margin: 0 auto; padding-left: var(--ga-gutter); padding-right: var(--ga-gutter); }

/* ---------- 3. TYPE HELPERS ---------- */
.ga-kicker {
  font-family: var(--ga-marker);
  color: var(--ga-red);
  font-size: 15px;
  letter-spacing: 0.04em;
  display: inline-block;
}
.ga-heading-xl {
  font-family: var(--ga-heading);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ga-bone);
  text-shadow: 2px 3px 0 rgba(0,0,0,0.45);
}
.ga-heading-xl .red, .ga-red { color: var(--ga-red); }
.ga-heading {
  font-family: var(--ga-heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ga-bone);
}
.ga-section-title { font-family: var(--ga-heading); font-size: 46px; text-transform: uppercase; letter-spacing: 0.01em; color: var(--ga-bone); }
.ga-label { font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ga-faint); }
.ga-body { font-family: var(--ga-mono); font-size: 13px; line-height: 1.85; color: var(--ga-muted); }
.ga-eyebrow { font-family: var(--ga-mono); font-size: 13px; color: var(--ga-muted-2); }

/* ---------- 4. BUTTONS ---------- */
.ga-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  background: var(--ga-red); color: var(--ga-white);
  border: 1px solid var(--ga-red);
  font-family: var(--ga-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.ga-btn:hover { background: var(--ga-red-hover); }
.ga-btn-outline {
  background: transparent; border: 1px solid #534C45; color: var(--ga-bone);
}
.ga-btn-outline:hover { border-color: var(--ga-bone); background: transparent; }
.ga-btn-sm { padding: 13px 24px; font-size: 10px; }
.ga-btn-block { display: flex; width: 100%; }

/* ---------- 5. HEADER / NAV ---------- */
.ga-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(5,5,5,0.94); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ga-hairline);
}
.ga-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 16px; padding-bottom: 16px; }
.ga-logo img { height: 30px; width: auto; }
.ga-nav { display: flex; gap: 30px; flex: 1; justify-content: center; }
.ga-nav a {
  position: relative; padding: 4px 0;
  font-family: var(--ga-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #CFC8BC; text-decoration: none; transition: color 0.2s ease;
}
.ga-nav a:hover { color: var(--ga-red); }
.ga-nav a.is-active { color: var(--ga-bone); }
.ga-nav a.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--ga-red); }
.ga-utils { display: flex; gap: 22px; align-items: center; }
.ga-utils a { display: flex; align-items: center; gap: 7px; color: #CFC8BC; text-decoration: none; font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; transition: color 0.2s ease; }
.ga-utils a:hover { color: #fff; }

.ga-el-header {
  background: rgba(5,5,5,0.96);
  border-bottom: 1px solid var(--ga-hairline);
  padding: 0 var(--ga-gutter);
  position: sticky;
  top: 0;
  z-index: 60;
}
.ga-el-header > .elementor-container { align-items: center; max-width: var(--ga-maxw); min-height: 68px; }
.ga-el-header .elementor-widget:not(:last-child) { margin-bottom: 0; }
.ga-el-header-logo-image img { height: 30px; object-fit: contain; width: auto; }
.ga-el-header-nav-list,
.ga-el-header-utils { align-items: center; display: flex; gap: 28px; }
.ga-el-header-nav-list { justify-content: center; }
.ga-el-header-utils { gap: 18px; justify-content: flex-end; }
.ga-el-header-nav-list a,
.ga-el-header-utils a {
  color: #CFC8BC;
  font-family: var(--ga-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.ga-el-header-nav-list a:hover,
.ga-el-header-utils a:hover { color: var(--ga-red); }

/* ---------- 6. HERO ---------- */
.ga-hero-wall {
  position: relative; display: flex; align-items: center; min-height: 660px;
  background-color: var(--ga-black);
  background-image: url('../claud/hero.webp');
  background-size: cover; background-position: right center;
}
.ga-hero-wall::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ga-black) 6%, rgba(5,5,5,0.55) 38%, rgba(5,5,5,0) 70%);
}
.ga-hero-wall > .ga-container { position: relative; z-index: 2; width: 100%; padding-top: 60px; padding-bottom: 60px; }
.ga-hero__copy { max-width: 620px; }
.ga-hero h1 { margin: 14px 0 24px; font-size: clamp(4rem, 9vw, 7rem); }
.ga-hero p { font-size: 14px; line-height: 1.75; color: #BDB6AA; max-width: 330px; margin-bottom: 34px; }
.ga-btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- 7. TRUST ROW ---------- */
.ga-trust { background: var(--ga-washed); border-bottom: 1px solid var(--ga-border-2); }
.ga-trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 22px 0; }
.ga-trust__item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.ga-trust__item span { font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #BDB6AA; }
.ga-trust__item svg { stroke: var(--ga-bone); }

/* ---------- 8. TORN BANNERS ---------- */
.ga-torn-red {
  position: relative; margin: -1px 0; padding: 66px var(--ga-gutter);
  background-color: var(--ga-red);
  background-image: url('../claud/torn-red.webp');
  background-size: 100% 100%; background-repeat: no-repeat;
  color: var(--ga-white);
}
.ga-torn-red__inner { max-width: var(--ga-maxw); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; }
.ga-torn-red p { font-family: var(--ga-mono); font-size: 15px; line-height: 2; letter-spacing: 0.04em; color: var(--ga-white); }
.ga-torn-red .ga-btn-dark { background: #0A0807; color: var(--ga-bone); border-color: #0A0807; }
.ga-torn-red .ga-btn-dark:hover { background: #000; }

.ga-torn-bone { height: 34px; background: url('../claud/torn-bone.webp') center top / cover no-repeat; }
.ga-torn-bone--flip { transform: scaleY(-1); }

/* ---------- 9. SECTION HEADER ---------- */
.ga-section { padding: 54px var(--ga-gutter); }
.ga-section--lg { padding-top: 74px; }
.ga-section__head { text-align: center; margin-bottom: 30px; }
.ga-section__head p { font-family: var(--ga-mono); font-size: 13px; color: var(--ga-muted-2); margin-top: 6px; }
.ga-center { text-align: center; }
.ga-mt-lg { margin-top: 28px; }

/* ---------- 10. LOOKBOOK + CATEGORY TILES ---------- */
.ga-tiles-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ga-tiles-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.ga-tile { display: block; position: relative; overflow: hidden; }
.ga-tile img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.2s ease; }
.ga-tile:hover img { opacity: 0.9; }
.ga-tile--lb { aspect-ratio: 900 / 472; }
.ga-tile--cat { aspect-ratio: 5 / 3; }

/* ---------- 11. PRODUCT CARD ---------- */
.ga-products { display: grid; gap: 18px; }
.ga-products--3 { grid-template-columns: repeat(3, 1fr); }
.ga-products--4 { grid-template-columns: repeat(4, 1fr); gap: 14px; }
.ga-product-card { text-decoration: none; color: inherit; display: block; }
.ga-product-card__media {
  position: relative; aspect-ratio: 1/1; overflow: hidden; margin-bottom: 14px;
  background: var(--ga-charcoal);
  background-image: url('../claud/card-wall.webp'); background-size: cover; background-position: center;
}
.ga-product-card__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ga-product-card__media img.fit-contain { object-fit: contain; }
.ga-product-card__media img.fit-cover { object-fit: cover; }
.ga-product-card:hover { opacity: 0.94; }
.ga-product-title { font-family: var(--ga-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #CFC8BC; line-height: 1.5; }
.ga-product-price { font-family: var(--ga-mono); font-size: 12px; color: var(--ga-muted-2); margin-top: 6px; }
.ga-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--ga-red); color: var(--ga-white); font-family: var(--ga-mono); font-size: 9px; font-weight: 700; letter-spacing: 0.14em; padding: 4px 9px; }

/* ---------- 12. MANIFESTO (LIGHT WALL) ---------- */
.ga-paper-wall { background: var(--ga-paper); padding: 54px var(--ga-gutter); color: #16120F; }
.ga-paper-wall__grid { max-width: var(--ga-maxw); margin: 0 auto; display: grid; grid-template-columns: 0.8fr 1.6fr 0.9fr; gap: 30px; align-items: center; }
.ga-paper-wall h2 { font-family: var(--ga-heading); font-size: 36px; text-transform: uppercase; color: #16120F; margin-bottom: 18px; }
.ga-paper-wall p { font-family: var(--ga-mono); font-size: 12.5px; line-height: 1.95; color: #3A342D; }
.ga-tag { font-family: var(--ga-marker); font-size: 30px; line-height: 1.05; color: #1A1613; transform: rotate(-3deg); display: inline-block; }

/* ---------- 13. COUPON / PROMO ---------- */
.ga-coupon-wall20 {
  position: relative; padding: 62px var(--ga-gutter);
  background-color: #0A0807;
  background-image: linear-gradient(rgba(8,7,6,0.8), rgba(8,7,6,0.88)), url('../claud/wall-bg.webp');
  background-size: cover; background-position: center;
}
.ga-coupon-wall20__grid { max-width: var(--ga-maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr 0.9fr; gap: 36px; align-items: center; }
.ga-coupon-code { font-family: var(--ga-marker); font-size: 96px; line-height: 0.9; color: var(--ga-red); letter-spacing: 0.02em; text-shadow: 2px 3px 0 rgba(0,0,0,0.5); }

/* ---------- 14. FOOTER ---------- */
.ga-footer {
  background-color: #070605;
  background-image: linear-gradient(rgba(7,6,5,0.82), rgba(7,6,5,0.92)), url('../claud/footer-bg.webp');
  background-size: cover; background-position: center;
  border-top: 1px solid var(--ga-hairline);
  padding: 56px var(--ga-gutter) 28px;
}
.ga-footer__grid { max-width: var(--ga-maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 34px; padding-bottom: 44px; border-bottom: 1px solid var(--ga-border-2); }
.ga-footer img { height: 30px; margin-bottom: 16px; }
.ga-footer h4 { font-family: var(--ga-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #CFC8BC; margin-bottom: 16px; }
.ga-footer__col { display: flex; flex-direction: column; gap: 11px; }
.ga-footer__col a { font-family: var(--ga-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ga-muted-2); text-decoration: none; transition: color 0.2s ease; }
.ga-footer__col a:hover { color: var(--ga-bone); }
.ga-footer p { font-family: var(--ga-mono); font-size: 12px; line-height: 1.7; color: var(--ga-muted-2); max-width: 230px; margin-bottom: 20px; }
.ga-social { display: flex; gap: 10px; }
.ga-social a { width: 30px; height: 30px; border: 1px solid var(--ga-border); display: flex; align-items: center; justify-content: center; color: #9A948A; text-decoration: none; transition: border-color 0.2s ease, color 0.2s ease; }
.ga-social a:hover { border-color: var(--ga-red); color: #fff; }
.ga-footer__bar { max-width: var(--ga-maxw); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding-top: 22px; flex-wrap: wrap; gap: 12px; }
.ga-footer__bar span { font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ga-faint-2); }
.ga-footer__legal { display: flex; gap: 26px; }
.ga-footer__legal a { font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ga-faint-2); text-decoration: none; }
.ga-footer__legal a:hover { color: #CFC8BC; }

/* ---------- 15. NEWSLETTER / INLINE FORM ---------- */
.ga-inline-form { display: flex; border: 1px solid var(--ga-border); }
.ga-inline-form input { flex: 1; background: transparent; border: none; outline: none; padding: 11px 12px; color: var(--ga-bone); font-family: var(--ga-mono); font-size: 11px; min-width: 0; }
.ga-inline-form button { background: var(--ga-red); border: none; color: var(--ga-white); padding: 0 14px; cursor: pointer; font-size: 15px; line-height: 1; }
.ga-inline-form button:hover { background: var(--ga-red-hover); }

.ga-el-footer { padding: 72px var(--ga-gutter) 34px; }
.ga-el-footer > .elementor-container { align-items: flex-start; border-bottom: 1px solid var(--ga-border-2); max-width: var(--ga-maxw); padding-bottom: 44px; }
.ga-el-footer .elementor-widget:not(:last-child) { margin-bottom: 16px; }
.ga-el-footer-logo img { height: 38px; object-fit: contain; width: auto; }
.ga-el-footer-heading .elementor-heading-title { color: #CFC8BC; font-family: var(--ga-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.ga-el-footer-copy { color: var(--ga-muted-2); font-family: var(--ga-mono); font-size: 12px; line-height: 1.7; }

/* ---------- 16. BREADCRUMB ---------- */
.ga-crumb { font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ga-faint); margin-bottom: 14px; }
.ga-crumb a { color: var(--ga-faint); text-decoration: none; }
.ga-crumb a:hover { color: var(--ga-bone); }

/* ---------- 17. SHOP FILTER BAR ---------- */
.ga-page-head { border-bottom: 1px solid var(--ga-border-2); padding: 48px var(--ga-gutter) 36px; }
.ga-filterbar { border-bottom: 1px solid var(--ga-hairline); }
.ga-filterbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding: 16px 0; }
.ga-chips { display: flex; gap: 6px; }
.ga-chip { background: transparent; border: 1px solid var(--ga-border); color: #CFC8BC; font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; padding: 9px 16px; cursor: pointer; }
.ga-chip.is-active { position: relative; }
.ga-chip.is-active::after { content: ""; display: inline-block; width: 5px; height: 5px; background: var(--ga-red); border-radius: 50%; margin-left: 8px; vertical-align: middle; }
.ga-select { background: #14110F; border: 1px solid var(--ga-border); color: #CFC8BC; font-family: var(--ga-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 9px 12px; cursor: pointer; outline: none; }

/* ---------- 18. PDP (PRODUCT DETAIL) ---------- */
.ga-pdp { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.ga-gallery__main { position: relative; aspect-ratio: 1/1; background: var(--ga-charcoal); background-image: url('../claud/card-wall.webp'); background-size: cover; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; overflow: hidden; }
.ga-gallery__main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.ga-gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ga-thumb { position: relative; aspect-ratio: 1/1; background: var(--ga-charcoal); border: 1px solid var(--ga-border); padding: 0; cursor: pointer; overflow: hidden; }
.ga-thumb.is-active { border-color: var(--ga-red); }
.ga-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ga-pdp__price { font-family: var(--ga-mono); font-size: 20px; color: var(--ga-bone); margin: 0 0 22px; }
.ga-swatches { display: flex; gap: 8px; }
.ga-swatch { width: 46px; height: 46px; background: transparent; border: 1px solid var(--ga-border); color: #CFC8BC; font-family: var(--ga-mono); font-size: 11px; letter-spacing: 0.08em; cursor: pointer; }
.ga-swatch.is-active { background: var(--ga-red); border-color: var(--ga-red); color: var(--ga-white); }
.ga-qty { display: flex; align-items: center; border: 1px solid var(--ga-border); }
.ga-qty button { background: transparent; border: none; color: #CFC8BC; width: 44px; height: 50px; font-size: 18px; cursor: pointer; }
.ga-qty span { width: 40px; text-align: center; font-family: var(--ga-mono); font-size: 14px; color: var(--ga-bone); }
.ga-accordion button { width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--ga-hairline); color: #CFC8BC; font-family: var(--ga-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; padding: 16px 0; display: flex; justify-content: space-between; cursor: pointer; text-align: left; }
.ga-accordion p { font-family: var(--ga-mono); font-size: 12px; line-height: 1.85; color: var(--ga-muted-2); padding: 14px 0 18px; }

/* ---------- 19. CART + CHECKOUT ---------- */
.ga-two-col { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 40px; align-items: start; }
.ga-summary { background: var(--ga-panel); border: 1px solid var(--ga-border-2); padding: 30px 28px; position: sticky; top: 90px; }
.ga-summary h2 { font-family: var(--ga-heading); font-size: 26px; text-transform: uppercase; color: var(--ga-bone); margin-bottom: 22px; }
.ga-row { display: flex; justify-content: space-between; font-family: var(--ga-mono); font-size: 12px; color: var(--ga-muted); }
.ga-row span.val { color: var(--ga-bone); }
.ga-row--total { align-items: baseline; padding: 18px 0; border-top: 1px solid var(--ga-border); }
.ga-row--total .total { font-family: var(--ga-heading); font-size: 30px; color: var(--ga-bone); }
.ga-cart-line { display: grid; grid-template-columns: 1fr 130px 120px 40px; gap: 16px; align-items: center; padding: 22px 0; border-bottom: 1px solid #1A1714; }
.ga-cart-line__media { width: 84px; height: 84px; flex: none; position: relative; overflow: hidden; background: var(--ga-charcoal); background-image: url('../claud/card-wall.webp'); background-size: cover; }
.ga-cart-line__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ga-icon-btn { background: transparent; border: none; color: var(--ga-faint-2); cursor: pointer; padding: 6px; }
.ga-icon-btn:hover { color: var(--ga-red); }
.ga-field { width: 100%; background: var(--ga-panel); border: 1px solid var(--ga-border); outline: none; padding: 14px; color: var(--ga-bone); font-family: var(--ga-mono); font-size: 12px; }
.ga-field:focus { border-color: var(--ga-red); }
.ga-field::placeholder { color: var(--ga-faint-2); }
.ga-fieldset { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ga-fieldset .span-2 { grid-column: span 2; }
.ga-step-num { font-family: var(--ga-heading); font-size: 18px; color: var(--ga-red); }

/* ---------- 20. RESPONSIVE ---------- */
@media (max-width: 980px) {
  .ga-pdp, .ga-two-col, .ga-paper-wall__grid, .ga-coupon-wall20__grid { grid-template-columns: 1fr; }
  .ga-footer__grid { grid-template-columns: 1fr 1fr; }
  .ga-products--4, .ga-tiles-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ga-nav { display: none; }
  .ga-hero-wall { min-height: 600px; background-position: 63% center; }
  .ga-heading-xl, .ga-hero h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .ga-trust__grid { grid-template-columns: 1fr 1fr; }
  .ga-products--3, .ga-tiles-3, .ga-products--4 { grid-template-columns: 1fr 1fr; }
  .ga-cart-line { grid-template-columns: 1fr auto; }
}

/* ---------- 21. ELEMENTOR PRO CODEX BRIDGE ---------- */
.ga-elementor-page,
.elementor-page.ga-dark-poetic {
  background: var(--ga-black);
  color: var(--ga-bone);
}

body.graffiti-attire .site-main {
  margin: 0;
  max-width: none;
  width: 100%;
}

.ga-el-section {
  background: var(--ga-black);
  color: var(--ga-bone);
  padding: 64px var(--ga-gutter);
}

.ga-el-section > .elementor-container,
.ga-el-section .elementor-container {
  max-width: var(--ga-maxw);
}

.ga-el-hero {
  min-height: 660px;
  display: flex;
  align-items: center;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: var(--ga-black);
  background-image: linear-gradient(90deg, rgba(5,5,5,1) 4%, rgba(5,5,5,0.62) 42%, rgba(5,5,5,0.03) 72%), url('../claud/hero.webp');
  background-size: cover;
  background-position: right center;
  padding: 0;
  width: 100vw;
}

.ga-el-hero > .elementor-container {
  max-width: var(--ga-maxw);
  min-height: 660px;
  padding: 60px var(--ga-gutter);
  width: 100%;
}

.ga-el-hero-copy-column {
  max-width: 620px;
}

.ga-el-kicker .elementor-heading-title {
  font-family: var(--ga-marker);
  color: var(--ga-red);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.ga-el-hero-title .elementor-heading-title,
.ga-el-section-title .elementor-heading-title {
  font-family: var(--ga-heading);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ga-bone);
}

.ga-el-hero-title .elementor-heading-title {
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.86;
  margin: 14px 0 24px;
  text-shadow: 2px 3px 0 rgba(0,0,0,0.45);
  max-width: 620px;
}

.ga-el-hero-title .elementor-heading-title .red {
  color: var(--ga-red);
}

.ga-el-section-title .elementor-heading-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.95;
}

.ga-el-lede,
.ga-el-section-copy,
.ga-el-manifesto-copy {
  color: var(--ga-muted);
  font-family: var(--ga-mono);
  font-size: 14px;
  line-height: 1.85;
}

.ga-el-lede {
  max-width: 350px;
  margin-bottom: 20px;
}

.ga-el-button .elementor-button {
  background: var(--ga-red);
  border: 1px solid var(--ga-red);
  border-radius: 0;
  color: var(--ga-white);
  font-family: var(--ga-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 16px 28px;
  text-transform: uppercase;
}

.ga-el-button--outline .elementor-button {
  background: transparent;
  border-color: #534C45;
  color: var(--ga-bone);
}

.ga-el-button--small .elementor-button {
  padding: 13px 24px;
  font-size: 10px;
}

.ga-el-trust {
  background: var(--ga-washed);
  border-bottom: 1px solid var(--ga-border-2);
  padding: 18px var(--ga-gutter);
}

.ga-el-trust .elementor-container {
  justify-content: center;
}

.ga-el-trust-item {
  text-align: center;
}

.ga-el-trust-label .elementor-heading-title {
  color: #BDB6AA;
  font-family: var(--ga-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ga-el-products,
.ga-el-categories,
.ga-el-lookbook {
  border-top: 1px solid var(--ga-hairline);
}

.ga-el-centered-column {
  text-align: center;
}

.ga-el-product-shortcode .ga-product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.ga-el-product-shortcode .ga-product-card,
.ga-product-grid .ga-product-card {
  border: 0;
  color: inherit;
  text-decoration: none;
}

.ga-el-product-shortcode .ga-product-card__image,
.ga-product-grid .ga-product-card__image {
  aspect-ratio: 1 / 1;
  background-color: var(--ga-charcoal);
  background-image: url('../claud/card-wall.webp');
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
}

.ga-el-product-shortcode .ga-product-card__image img,
.ga-product-grid .ga-product-card__image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.ga-el-product-shortcode .ga-product-card__body,
.ga-product-grid .ga-product-card__body {
  padding: 0;
}

.ga-el-product-shortcode .ga-product-card__title,
.ga-product-grid .ga-product-card__title {
  font-family: var(--ga-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.ga-el-product-shortcode .ga-product-card__cta,
.ga-product-grid .ga-product-card__cta {
  display: none;
}

.ga-el-manifesto {
  background-color: var(--ga-red);
  background-image: url('../claud/torn-red.webp');
  background-size: 100% 100%;
  color: var(--ga-white);
  min-height: 220px;
  text-align: center;
}

.ga-el-manifesto--white {
  background-color: var(--ga-paper);
  background-image: url('../claud/torn-bone.webp');
  color: #16120F;
}

.ga-el-lookbook .ga-el-lookbook-image img {
  aspect-ratio: 900 / 472;
  object-fit: cover;
  width: 100%;
}

.ga-el-lookbook-intro {
  margin-bottom: 24px;
  text-align: center;
}

.ga-el-shop-wall .elementor-container {
  row-gap: 18px;
}

.ga-el-lookbook-card {
  padding: 0 8px;
}

.ga-el-lookbook-button {
  margin-top: 10px;
}

.ga-el-card-title .elementor-heading-title {
  font-family: var(--ga-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ga-el-category-tiles .elementor-container {
  row-gap: 18px;
}

.ga-el-category-card {
  padding: 0 8px;
}

.ga-el-category-image img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
  width: 100%;
}

.ga-el-story-paper {
  background: var(--ga-paper);
  color: #16120F;
  position: relative;
}

.ga-el-story-paper::before,
.ga-el-story-paper::after {
  content: "";
  height: 34px;
  position: absolute;
  left: 0;
  right: 0;
  background: url('../claud/torn-bone.webp') center top / cover no-repeat;
}

.ga-el-story-paper::before {
  top: -1px;
}

.ga-el-story-paper::after {
  bottom: -1px;
  transform: scaleY(-1);
}

.ga-el-story-paper .elementor-container {
  align-items: center;
}

.ga-el-story-tag .elementor-heading-title {
  color: #1A1613;
  font-family: var(--ga-marker);
  font-size: 30px;
  line-height: 1.05;
  transform: rotate(-3deg);
}

.ga-el-story-crown img {
  max-width: 70px;
}

.ga-el-story-title .elementor-heading-title {
  color: #16120F;
  font-family: var(--ga-heading);
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.ga-el-story-copy {
  color: #3A342D;
  font-family: var(--ga-mono);
  font-size: 12.5px;
  line-height: 1.95;
}

.ga-el-button--paper .elementor-button {
  background: transparent;
  border: 1px solid #6E6557;
  color: #16120F;
}

.ga-el-story-image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.ga-el-promo {
  background-color: #0A0807;
  background-image: linear-gradient(rgba(8,7,6,0.78), rgba(8,7,6,0.9)), url('../claud/wall-bg.webp');
  background-position: center;
  background-size: cover;
}

.ga-el-promo .elementor-container {
  align-items: center;
}

.ga-el-hand-title .elementor-heading-title {
  color: var(--ga-red);
  font-family: var(--ga-marker);
  font-size: clamp(4rem, 9vw, 7rem);
  line-height: 0.9;
  text-shadow: 2px 3px 0 rgba(0,0,0,.5);
}

.ga-el-promo-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
}

.ga-el-journal {
  background: #050505;
  border-top: 1px solid var(--ga-hairline);
}

.ga-el-journal-shortcode .ga-journal-grid,
.ga-journal-grid--shortcode {
  margin-top: 28px;
  padding: 0;
  width: 100%;
}

.ga-journal-grid--columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ga-journal-grid--columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ga-el-values,
.ga-el-statements {
  background-color: #050505;
  background-image: linear-gradient(rgba(5,5,5,0.9), rgba(5,5,5,0.96)), url('../claud/wall-bg.webp');
  background-position: center;
  background-size: cover;
  border-top: 1px solid var(--ga-hairline);
}

.ga-el-values .elementor-container,
.ga-el-statements .elementor-container {
  row-gap: 20px;
}

.ga-el-values-intro {
  margin-bottom: 12px;
  text-align: center;
}

.ga-el-value-card,
.ga-el-statement-card {
  border: 1px solid rgba(232, 224, 210, 0.18);
  background: rgba(17, 17, 17, 0.78);
  min-height: 220px;
  padding: 28px;
}

.ga-el-value-number .elementor-heading-title {
  background: var(--ga-red);
  color: var(--ga-bone);
  display: inline-block;
  font-family: var(--ga-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 8px 12px;
}

.ga-el-value-title .elementor-heading-title,
.ga-el-statement-title .elementor-heading-title {
  color: var(--ga-bone);
  font-family: var(--ga-heading);
  line-height: 0.95;
  text-transform: uppercase;
}

.ga-el-value-title .elementor-heading-title {
  font-size: 32px;
}

.ga-el-statement-title .elementor-heading-title {
  font-size: clamp(2rem, 4vw, 4rem);
}

.ga-el-value-copy {
  color: var(--ga-muted);
  font-family: var(--ga-mono);
  font-size: 13px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .ga-el-product-shortcode .ga-product-grid,
  .ga-el-categories .ga-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ga-el-header > .elementor-container {
    gap: 14px;
  }

  .ga-el-header-logo,
  .ga-el-header-nav,
  .ga-el-header-utils-column {
    width: 100%;
  }

  .ga-el-header-nav-list,
  .ga-el-header-utils {
    flex-wrap: wrap;
    justify-content: center;
  }

  .ga-el-value-card,
  .ga-el-statement-card {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .ga-el-section {
    padding: 46px 20px;
  }

  .ga-el-hero {
    min-height: 620px;
    background-position: 64% center;
  }
}
