/* ============================================================
   Acreweave — Brand CSS
   Batch: web0519 | Font: Satoshi + Sora
   Accent: #84a62a (field-sage) | Secondary: #b45309 (harvest amber)
   ============================================================ */

/* Horizontal overflow guard — MANDATORY at TOP */
html, body { overflow-x: hidden; }

/* ============================================================
   CSS Variables / Design Tokens
   ============================================================ */
:root {
  --accent: #84a62a;
  --accent-rgb: 132, 166, 42;
  --accent-hover: #6d8c20;
  --secondary: #b45309;
  --secondary-rgb: 180, 83, 9;
  --bg-dark: #1c1917;
  --bg-alt: #292524;
  --bg-surface: #3c3330;
  --bg-cream: #f7f5f0;
  --bg-white: #ffffff;
  --text-primary: #1c1917;
  --text-secondary: #57534e;
  --text-muted: #78716c;
  --text-light: #f5f5f4;
  --text-light-muted: rgba(245,245,244,0.8);
  --border: #e7e5e4;
  --border-dark: #44403c;
  --nav-h: 64px;
  --font-sans: 'Satoshi', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Satoshi', sans-serif;
  --container-max: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-sans);
  background: var(--bg-white);
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin-top: 0;
}
ul, ol { margin: 0; padding: 0; }
p { margin-top: 0; }

/* ============================================================
   Utility Container
   ============================================================ */
.aw-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Legacy container support from components */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================================
   Section Shared Styles
   ============================================================ */
.aw-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.aw-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.aw-section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  line-height: 1.7;
}

/* For component c-section-* classes used in copied components */
.c-section-header { text-align: center; margin-bottom: 56px; }
.c-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.c-section-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.c-section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.aw-btn,
.c-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.aw-btn--primary,
.c-btn--primary {
  background: var(--accent);
  color: #ffffff;
}
.aw-btn--primary:hover,
.c-btn--primary:hover {
  background: var(--accent-hover);
  color: #ffffff;
}

.aw-btn--outline,
.c-btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.aw-btn--outline:hover,
.c-btn--outline:hover {
  background: var(--accent);
  color: #ffffff;
}

.aw-btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
}
.aw-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.c-btn--full { width: 100%; text-align: center; display: block; }
.c-btn--sm { padding: 8px 18px; font-size: 13px; }

/* ============================================================
   Nav (aw-nav) — Single-element, HARD RULE compliant
   nav_theme: light | sticky | A-simple variant
   ============================================================ */
.aw-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Solid nav — used on index (light theme) and all sub-pages */
.aw-nav--solid {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 1px 8px rgba(28,25,23,0.06);
}

.aw-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
}

.aw-nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  text-decoration: none;
}

.aw-nav__logo-img {
  height: 28px;
  width: auto;
  display: none;
}
.aw-nav__logo-img--light { display: inline; }
.aw-nav__logo-img--dark  { display: none; }

/* On solid/light bg — use dark logo */
.aw-nav--solid .aw-nav__logo-img--light { display: inline; }
.aw-nav--solid .aw-nav__logo-img--dark  { display: none; }

.aw-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.aw-nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.aw-nav__links a:hover,
.aw-nav__links a.active {
  color: var(--accent);
  background: rgba(132, 166, 42, 0.08);
}

/* Primary CTA in nav */
.aw-nav__cta--button {
  background: var(--accent) !important;
  color: #ffffff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  white-space: nowrap;
}
.aw-nav__cta--button:hover {
  background: var(--accent-hover) !important;
  color: #ffffff !important;
}

/* Secondary CTA link in nav */
.aw-nav__secondary-cta {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary) !important;
  padding: 8px 12px;
  text-decoration: none;
}
.aw-nav__secondary-cta:hover {
  color: var(--accent) !important;
}

/* Hamburger toggle */
.aw-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.aw-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
}

/* Responsive nav */
@media (max-width: 768px) {
  .aw-nav__links,
  .c-nav__links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .aw-nav__links.open,
  .c-nav__links.open { display: flex; }
  .aw-nav__links a,
  .c-nav__links a { padding: 10px 12px; border-radius: var(--radius-sm); }
  .aw-nav__toggle,
  .c-nav__toggle { display: flex; }
}

/* ============================================================
   Page-Hero (sub-page mini hero)
   ============================================================ */
.aw-page-hero {
  background: var(--bg-cream);
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
}
.aw-page-hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.aw-page-hero__title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.aw-page-hero__lede {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.65;
}

/* ============================================================
   Hero — C-split variant (index.html)
   Hero uses bg-image + left gradient overlay
   ============================================================ */
.aw-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.aw-hero--split {
  background-image: url('images/hero-home.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.aw-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 25, 23, 0.92) 0%,
    rgba(28, 25, 23, 0.80) 45%,
    rgba(28, 25, 23, 0.35) 100%
  );
  z-index: 1;
}

.aw-hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 100px 24px 80px;
  width: 100%;
}

.aw-hero__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  background: rgba(132, 166, 42, 0.15);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(132, 166, 42, 0.3);
}

.aw-hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 680px;
}

.aw-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 245, 244, 0.82);
  margin-bottom: 36px;
  max-width: 560px;
}

.aw-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero CTA button overrides for dark background context */
.aw-hero .aw-btn--outline {
  color: rgba(245, 245, 244, 0.9);
  border-color: rgba(245, 245, 244, 0.35);
}
.aw-hero .aw-btn--outline:hover {
  color: #ffffff;
  border-color: rgba(245, 245, 244, 0.7);
  background: rgba(245, 245, 244, 0.1);
}

@media (max-width: 768px) {
  .aw-hero { min-height: 70vh; }
  .aw-hero__inner { padding: 80px 24px 60px; }
  .aw-hero__title { font-size: 32px; }
  .aw-hero__subtitle { font-size: 16px; }
}

/* ============================================================
   Stats — B-cards variant
   ============================================================ */
.aw-stats {
  padding: 72px 0;
  background: var(--bg-cream);
}
.aw-stats__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.aw-stats__card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.aw-stats__number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 8px;
}
.aw-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.aw-stats__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* c-stats compatibility */
.c-stats--cards { padding: 72px 0; background: var(--bg-cream); }
.c-stats__wrap { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.c-stats__grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.c-stats__card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
}
.c-stats__number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.c-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.c-stats__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .aw-stats__grid,
  .c-stats__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .aw-stats__grid,
  .c-stats__grid--4 { grid-template-columns: 1fr; }
}

/* ============================================================
   Features — C-alternating variant
   ============================================================ */
.aw-features {
  padding: 88px 0;
  background: #ffffff;
}
.aw-features--alt-bg {
  background: var(--bg-cream);
}
.aw-features__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-features__header {
  text-align: center;
  margin-bottom: 64px;
}
.aw-features__rows {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
.aw-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.aw-features__row--reversed .aw-features__text-col { order: 2; }
.aw-features__row--reversed .aw-features__img-col  { order: 1; }
.aw-features__name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.aw-features__one-liner {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.aw-features__body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}
.aw-features__image {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center;
}
.aw-features__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* c-features alternating compatibility */
.c-features--alternating { padding: 88px 0; background: #ffffff; }
.c-features__rows { display: flex; flex-direction: column; gap: 72px; }
.c-features__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.c-features__row--reversed .c-features__text-col { order: 2; }
.c-features__row--reversed .c-features__img-col  { order: 1; }
.c-features__name { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-bottom: 14px; }
.c-features__text { font-size: 16px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 12px; }
.c-features__img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  aspect-ratio: 16/9;
  object-fit: cover;
}
.c-features__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .aw-features__row,
  .c-features__row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .aw-features__row--reversed .aw-features__text-col,
  .aw-features__row--reversed .aw-features__img-col,
  .c-features__row--reversed .c-features__text-col,
  .c-features__row--reversed .c-features__img-col { order: unset; }
}

/* ============================================================
   Process — A-numbered variant
   ============================================================ */
.aw-process {
  padding: 88px 0;
  background: var(--bg-cream);
}
.aw-process__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-process__header {
  text-align: center;
  margin-bottom: 56px;
}
.aw-process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.aw-process__step {
  position: relative;
  padding: 32px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.aw-process__number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(132, 166, 42, 0.15);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}
.aw-process__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.aw-process__desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* c-process compatibility */
.c-process { padding: 88px 0; background: var(--bg-cream); }
.c-process .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.c-process__step {
  padding: 28px 24px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.c-process__num {
  font-size: 36px;
  font-weight: 800;
  color: rgba(132, 166, 42, 0.18);
  font-family: var(--font-display);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.c-process__name { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.c-process__text { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin: 0; }

@media (max-width: 900px) {
  .aw-process__steps { grid-template-columns: repeat(2, 1fr); }
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .aw-process__steps { grid-template-columns: 1fr; }
  .c-process__steps { grid-template-columns: 1fr; }
}

/* ============================================================
   Pricing — A-3col variant (pricing.html)
   ============================================================ */
.aw-pricing {
  padding: 88px 0;
  background: #ffffff;
}
.aw-pricing__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-pricing__header {
  text-align: center;
  margin-bottom: 56px;
}
.aw-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.aw-pricing__card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: box-shadow 0.2s;
}
.aw-pricing__card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.aw-pricing__card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(132, 166, 42, 0.18);
}
.aw-pricing__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--accent);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.aw-pricing__tier {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.aw-pricing__price {
  margin-bottom: 12px;
}
.aw-pricing__amount {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-primary);
  font-family: var(--font-display);
}
.aw-pricing__period {
  font-size: 16px;
  color: var(--text-muted);
  margin-left: 4px;
}
.aw-pricing__desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}
.aw-pricing__features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.aw-pricing__features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.aw-pricing__features li:last-child { border-bottom: none; }
.aw-pricing__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--accent);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  margin-top: 2px;
}
.aw-pricing__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.aw-pricing__card--featured .aw-pricing__cta {
  background: var(--accent);
  color: #ffffff;
}
.aw-pricing__card--featured .aw-pricing__cta:hover {
  background: var(--accent-hover);
  color: #ffffff;
}
.aw-pricing__card:not(.aw-pricing__card--featured) .aw-pricing__cta {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.aw-pricing__card:not(.aw-pricing__card--featured) .aw-pricing__cta:hover {
  background: var(--accent);
  color: #ffffff;
}

/* c-pricing compatibility */
.c-pricing { padding: 88px 0; background: #ffffff; }
.c-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  margin-top: 0;
}
.c-pricing__card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
}
.c-pricing__card--featured { border-color: var(--accent); box-shadow: 0 8px 32px rgba(132,166,42,0.18); }
.c-pricing__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.c-pricing__plan { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.c-pricing__price { margin-bottom: 10px; }
.c-pricing__amount { font-size: 42px; font-weight: 800; color: var(--text-primary); }
.c-pricing__period { font-size: 15px; color: var(--text-muted); }
.c-pricing__desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.c-pricing__features { list-style: none; padding: 0; margin: 0 0 24px; }
.c-pricing__features li { font-size: 14px; color: var(--text-secondary); padding: 7px 0; border-bottom: 1px solid var(--border); }
.c-pricing__features li:last-child { border-bottom: none; }
.c-btn--full { width: 100%; text-align: center; display: block; }

@media (max-width: 900px) {
  .aw-pricing__grid,
  .c-pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   Testimonials — A-quotes variant
   ============================================================ */
.aw-testimonials {
  padding: 88px 0;
  background: var(--bg-cream);
}
.aw-testimonials__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}
.aw-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.aw-testimonials__card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.aw-testimonials__quote {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
  margin: 0 0 24px 0;
  font-style: italic;
}
.aw-testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.aw-testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
}
.aw-testimonials__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.aw-testimonials__role {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

/* c-testimonials compatibility */
.c-testimonials--quotes { padding: 88px 0; background: var(--bg-cream); }
.c-testimonials__grid--3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}
.c-testimonials__quote {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--border);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.c-testimonials__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  margin: 0 0 20px;
}
.c-testimonials__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-testimonials__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.c-testimonials__author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}
.c-testimonials__role {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
}

@media (max-width: 900px) {
  .aw-testimonials__grid,
  .c-testimonials__grid--3col { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
}

/* ============================================================
   CTA Banner — A-banner variant
   ============================================================ */
.aw-cta {
  padding: 88px 0;
  background: var(--bg-dark);
  text-align: center;
}
.aw-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.aw-cta__headline {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.aw-cta__body {
  font-size: 18px;
  color: rgba(245, 245, 244, 0.75);
  margin-bottom: 36px;
  line-height: 1.65;
}
.aw-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.aw-cta .aw-btn--outline {
  color: rgba(245, 245, 244, 0.85);
  border-color: rgba(245, 245, 244, 0.35);
}
.aw-cta .aw-btn--outline:hover {
  color: #ffffff;
  border-color: rgba(245, 245, 244, 0.7);
  background: rgba(245, 245, 244, 0.08);
}

/* c-cta compatibility */
.c-cta { padding: 88px 0; background: var(--bg-dark); text-align: center; }
.c-cta .container { max-width: 720px; }
.c-cta__title { font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: #ffffff; margin-bottom: 14px; }
.c-cta__desc { font-size: 17px; color: rgba(245,245,244,0.75); margin-bottom: 32px; }
.c-cta__buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   Team — A-grid variant (team.html)
   ============================================================ */
.aw-team {
  padding: 88px 0;
  background: #ffffff;
}
.aw-team__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-team__header {
  text-align: center;
  margin-bottom: 56px;
}
.aw-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}
.aw-team__card {
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.aw-team__card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.aw-team__avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 20px;
  display: block;
  border: 3px solid var(--bg-cream);
}
.aw-team__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.aw-team__title {
  font-size: 14px;
  color: var(--accent);
  font-weight: 500;
  margin: 0;
}
.aw-team__bio {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
}

/* c-team compatibility */
.c-team { padding: 88px 0; background: #ffffff; }
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 860px;
  margin: 0 auto;
}
.c-team__card {
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--border);
}
.c-team__photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin: 0 auto 20px;
  display: block;
}
.c-team__name { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.c-team__role { font-size: 14px; color: var(--accent); font-weight: 500; margin: 0; }

@media (max-width: 768px) {
  .aw-team__grid,
  .c-team__grid { grid-template-columns: 1fr; max-width: 360px; }
}

/* ============================================================
   About Page Sections
   ============================================================ */
.aw-about {
  padding: 80px 0;
}
.aw-about__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Origin / Founding Story */
.aw-about__origin {
  padding: 80px 0;
  background: #ffffff;
}
.aw-about__origin-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-about__origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.aw-about__origin-content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.aw-about__origin-content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.aw-about__origin-sidebar {
  padding: 32px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent);
}
.aw-about__origin-sidebar blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.65;
  margin: 0 0 16px 0;
}
.aw-about__origin-sidebar cite {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  font-style: normal;
}

/* Mission */
.aw-about__mission {
  padding: 80px 0;
  background: var(--bg-dark);
}
.aw-about__mission-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.aw-about__mission h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}
.aw-about__mission p {
  font-size: 18px;
  color: rgba(245, 245, 244, 0.82);
  line-height: 1.7;
  margin: 0;
}

/* Stage Focus */
.aw-about__stage-focus {
  padding: 72px 0;
  background: var(--bg-cream);
}
.aw-about__stage-focus-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.aw-about__stage-focus h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.aw-about__stage-focus p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}
.aw-about__stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132, 166, 42, 0.1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(132, 166, 42, 0.2);
  margin-bottom: 24px;
}

/* Values */
.aw-about__values {
  padding: 80px 0;
  background: #ffffff;
}
.aw-about__values-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-about__values-header {
  text-align: center;
  margin-bottom: 48px;
}
.aw-about__values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.aw-about__value-card {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
}
.aw-about__value-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.aw-about__value-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .aw-about__origin-grid { grid-template-columns: 1fr; gap: 36px; }
  .aw-about__values-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Product Page Sections (problem / how-it-works / features / target-customer)
   ============================================================ */
.aw-product__section {
  padding: 80px 0;
}
.aw-product__section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-product__section-inner:has(> *:only-child) {
  max-width: 820px;
}

/* Problem section */
.aw-problem {
  padding: 88px 0;
  background: var(--bg-cream);
}
.aw-problem__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.aw-problem__content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.aw-problem__content p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.aw-problem__stat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.aw-problem__stat-card:last-child { margin-bottom: 0; }
.aw-problem__stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--secondary);
  font-family: var(--font-display);
  display: block;
  margin-bottom: 6px;
}
.aw-problem__stat-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* How it works section */
.aw-how-it-works {
  padding: 88px 0;
  background: #ffffff;
}
.aw-how-it-works__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-how-it-works__header {
  text-align: center;
  margin-bottom: 56px;
}
.aw-how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.aw-how-it-works__step {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  border-top: 3px solid var(--accent);
}
.aw-how-it-works__num {
  font-size: 40px;
  font-weight: 800;
  color: rgba(132, 166, 42, 0.2);
  font-family: var(--font-display);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.aw-how-it-works__step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.aw-how-it-works__step-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Integrations section */
.aw-integrations {
  padding: 64px 0;
  background: var(--bg-cream);
}
.aw-integrations__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.aw-integrations__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  list-style: none;
  padding: 0;
}
.aw-integrations__item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Target customer section */
.aw-target-customer {
  padding: 80px 0;
  background: var(--bg-dark);
}
.aw-target-customer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-target-customer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.aw-target-customer h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.aw-target-customer__primary {
  font-size: 17px;
  color: rgba(245, 245, 244, 0.85);
  line-height: 1.7;
  margin-bottom: 20px;
}
.aw-target-customer__size-band {
  font-size: 15px;
  color: rgba(245, 245, 244, 0.7);
  line-height: 1.65;
  margin-bottom: 24px;
}
.aw-target-customer__not-for {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border-left: 3px solid var(--secondary);
}
.aw-target-customer__not-for-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 10px;
  display: block;
}
.aw-target-customer__not-for p {
  font-size: 14px;
  color: rgba(245, 245, 244, 0.7);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .aw-problem__grid,
  .aw-target-customer__grid,
  .aw-how-it-works__grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   Footer — A-4col variant
   ============================================================ */
.aw-footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  border-top: 1px solid var(--border-dark);
  color: #94a3b8;
}
.aw-footer__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.aw-footer__brand-logo {
  font-size: 20px;
  font-weight: 800;
  color: #f5f5f4;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  font-family: var(--font-display);
}
.aw-footer__tagline {
  font-size: 14px;
  color: #78716c;
  line-height: 1.6;
  max-width: 260px;
}
.aw-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.aw-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #78716c;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}
.aw-footer__social a:hover {
  background: var(--accent);
  color: #ffffff;
}
.aw-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #e5e5e5;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.aw-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aw-footer__links li { margin-bottom: 10px; }
.aw-footer__links a {
  font-size: 14px;
  color: #78716c;
  text-decoration: none;
  transition: color 0.2s;
}
.aw-footer__links a:hover { color: var(--accent); }
.aw-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #78716c;
  line-height: 1.5;
}
.aw-footer__contact-item i {
  color: var(--accent);
  font-size: 13px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.aw-footer__bottom {
  border-top: 1px solid var(--border-dark);
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #57534e;
}
.aw-footer__legal {
  display: flex;
  gap: 20px;
}
.aw-footer__legal a {
  color: #57534e;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.aw-footer__legal a:hover { color: #94a3b8; }

/* c-footer compatibility */
.c-footer { background: var(--bg-dark); padding: 64px 0 0; border-top: 1px solid var(--border-dark); color: #94a3b8; }
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.c-footer .container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.c-footer__logo { font-size: 20px; font-weight: 800; color: #f5f5f4; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.c-footer__logo span { color: var(--accent); }
.c-footer__tagline { font-size: 14px; color: #78716c; line-height: 1.6; }
.c-footer__col h4 { font-size: 13px; font-weight: 700; color: #e5e5e5; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.6px; }
.c-footer__col ul { list-style: none; padding: 0; margin: 0; }
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul li a, .c-footer__col ul a { font-size: 14px; color: #78716c; text-decoration: none; transition: color 0.2s; }
.c-footer__col ul li a:hover, .c-footer__col ul a:hover { color: var(--accent); }
.c-footer__contact p { font-size: 14px; margin-bottom: 10px; line-height: 1.5; }
.c-footer__contact i { color: var(--accent); width: 16px; font-size: 13px; margin-right: 8px; }
.c-footer__bottom { border-top: 1px solid var(--border-dark); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #57534e; }
.c-footer__legal { display: flex; gap: 20px; }
.c-footer__legal a { color: #57534e; text-decoration: none; font-size: 13px; }
.c-footer__legal a:hover { color: #94a3b8; }

@media (max-width: 768px) {
  .aw-footer__grid,
  .c-footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .aw-footer__bottom,
  .c-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================================
   Cookie Banner — A-generic variant
   hidden-attribute mechanism
   ============================================================ */
.aw-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 400px;
  background: #292524;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.aw-cookie[hidden] { display: none !important; }
.aw-cookie__text {
  font-size: 14px;
  color: #d6d3d1;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.aw-cookie__text a { color: var(--accent); }
.aw-cookie__text a:hover { text-decoration: underline; }
.aw-cookie__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.aw-cookie__accept {
  background: var(--accent);
  color: #ffffff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.aw-cookie__accept:hover { background: var(--accent-hover); }
.aw-cookie__dismiss {
  background: transparent;
  color: #a8a29e;
  border: 1px solid #57534e;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.aw-cookie__dismiss:hover {
  border-color: #a8a29e;
  color: #d6d3d1;
}

/* c-cookie / c-btn compatibility */
.c-cookie {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  max-width: 400px;
  background: #292524;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.c-cookie[hidden] { display: none !important; }
.c-cookie__inner { }
.c-cookie__text {
  font-size: 14px;
  color: #d6d3d1;
  line-height: 1.6;
  margin: 0 0 14px 0;
}
.c-cookie__text a { color: var(--accent); }
.c-cookie__actions { display: flex; gap: 10px; justify-content: flex-end; }
.c-btn--sm { padding: 7px 16px; font-size: 13px; }

/* ============================================================
   Blog index preview card (homepage)
   ============================================================ */
.aw-blog-preview {
  padding: 80px 0;
  background: var(--bg-cream);
}
.aw-blog-preview__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
.aw-blog-preview__header {
  text-align: center;
  margin-bottom: 48px;
}
.aw-blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.aw-blog-preview__card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.aw-blog-preview__card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.aw-blog-preview__thumb {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
  display: block;
}
.aw-blog-preview__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.aw-blog-preview__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.aw-blog-preview__date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.aw-blog-preview__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
}
.aw-blog-preview__title a { color: inherit; }
.aw-blog-preview__title a:hover { color: var(--accent); }
.aw-blog-preview__read-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
}
.aw-blog-preview__footer { text-align: center; }

@media (max-width: 768px) {
  .aw-blog-preview__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   FontAwesome
   ============================================================ */
/* FA6 loaded via css/fontawesome.min.css */

/* Testimonial CSS-only initials avatar */
.aw-testimonials__avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(132, 166, 42, 0.15);
  border: 2px solid rgba(132, 166, 42, 0.25);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   Contact Page — A-split variant
   ============================================================ */
.aw-contact {
  padding: 72px 0 88px;
  background: #ffffff;
}
.aw-contact__grid {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: start;
}
.aw-contact__form-heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}
.aw-contact__success {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0fdf4;
  border: 1px solid rgba(21,128,61,0.2);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 15px;
  color: #15803d;
}
.aw-contact__success[hidden] { display: none; }
.aw-contact__success i { font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.aw-contact__success p { margin: 0; line-height: 1.55; }
.aw-contact__field {
  margin-bottom: 20px;
}
.aw-contact__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.aw-contact__label span { color: var(--secondary); }
.aw-contact__input {
  width: 100%;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.aw-contact__input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(132, 166, 42, 0.12);
}
.aw-contact__input::placeholder { color: #a8a29e; }
.aw-contact__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2378716c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.aw-contact__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.aw-contact__submit {
  padding: 13px 32px;
  font-size: 15px;
  width: auto;
  cursor: pointer;
}
/* Info column */
.aw-contact__info {
  padding-top: 8px;
}
.aw-contact__info-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.aw-contact__info-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.aw-contact__info-heading {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 12px;
}
.aw-contact__address {
  font-style: normal;
}
.aw-contact__address p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.aw-contact__address i { color: var(--accent); font-size: 13px; margin-top: 3px; flex-shrink: 0; }
.aw-contact__detail {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.aw-contact__detail i { color: var(--accent); font-size: 13px; flex-shrink: 0; }
.aw-contact__detail a { color: var(--text-secondary); }
.aw-contact__detail a:hover { color: var(--accent); }
.aw-contact__note {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.aw-contact__crop-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.aw-contact__crop-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding: 5px 0;
  padding-left: 16px;
  position: relative;
}
.aw-contact__crop-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.aw-contact__form-col { }
.aw-contact__form { }
.aw-contact__crops-served { }
@media (max-width: 900px) {
  .aw-contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Pricing FAQ */
.aw-pricing__billing-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}
.aw-pricing__faq {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
}
.aw-pricing__faq-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 36px;
  text-align: center;
}
.aw-pricing__faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 900px;
  margin: 0 auto;
}
.aw-pricing__faq-q {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.aw-pricing__faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}
.aw-pricing__faq-item { }
.aw-pricing__faq-a a { color: var(--accent); }
.aw-pricing__faq-a a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .aw-pricing__faq-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================================
   404 Page
   ============================================================ */
.aw-404 {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg-cream);
}
.aw-404__inner {
  max-width: 560px;
  text-align: center;
}
.aw-404__number {
  font-size: 120px;
  font-weight: 800;
  color: rgba(132, 166, 42, 0.18);
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: 0;
  display: block;
}
.aw-404__title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.aw-404__body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 36px;
}
.aw-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.u-text-center { text-align: center; }
.u-mt-auto { margin-top: auto; }
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Login / Auth — Pattern A (subfolder) — B-split-features layout
   bg_mode: B-css-gradient | No site nav / footer / cookie banner
   ============================================================ */
.aw-auth-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(132, 166, 42, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(180, 83, 9, 0.08) 0%, transparent 50%),
    #111009;
}
.aw-auth-split {
  flex: 1;
  display: flex;
  min-height: 100vh;
}
/* Form side (left) */
.aw-auth-form-side {
  flex: 0 0 480px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px;
  background: rgba(28, 25, 23, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255,255,255,0.06);
}
/* Info side (right) */
.aw-auth-info-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 56px;
  position: relative;
}

/* Auth logo bar */
.aw-auth-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  text-decoration: none;
}

/* Auth back link */
.aw-auth-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(245, 245, 244, 0.55);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.aw-auth-back:hover { color: rgba(245, 245, 244, 0.9); }

/* Auth card */
.aw-auth-card {
  width: 100%;
}
.aw-auth-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.aw-auth-card .aw-auth-subtitle {
  font-size: 14px;
  color: rgba(245, 245, 244, 0.6);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Form fields */
.aw-auth-form .aw-auth-field { margin-bottom: 16px; }
.aw-auth-form label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}
.aw-auth-form .aw-auth-input {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: #f1f5f9;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.aw-auth-form .aw-auth-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(132, 166, 42, 0.15);
}
.aw-auth-form .aw-auth-input::placeholder { color: rgba(245, 245, 244, 0.3); }
.aw-auth-form select.aw-auth-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a8a29e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.aw-auth-form select.aw-auth-input option { background: #1c1917; color: #f1f5f9; }
/* Two-col row for signup */
.aw-auth-field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
/* Remember / checkbox row */
.aw-auth-remember-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 8px;
}
.aw-auth-checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(245, 245, 244, 0.65);
  cursor: pointer;
}
.aw-auth-checkbox-label input[type=checkbox] {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}
.aw-auth-forgot {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
}
.aw-auth-forgot:hover { text-decoration: underline; filter: brightness(1.15); }

/* Submit button */
.aw-auth-btn {
  width: 100%;
  padding: 13px;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  margin-top: 4px;
  transition: filter 0.2s;
}
.aw-auth-btn:hover { filter: brightness(1.12); }

/* Message alerts */
.aw-auth-message {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.aw-auth-message[hidden] { display: none; }
.aw-auth-message.success {
  background: rgba(21, 128, 61, 0.15);
  color: #86efac;
  border: 1px solid rgba(134, 239, 172, 0.2);
}
.aw-auth-message.info {
  background: rgba(132, 166, 42, 0.12);
  color: #c5e06e;
  border: 1px solid rgba(132, 166, 42, 0.25);
}
.aw-auth-message.success i, .aw-auth-message.info i { flex-shrink: 0; margin-top: 1px; }

/* Cross-links */
.aw-auth-links {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(245, 245, 244, 0.5);
}
.aw-auth-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.aw-auth-links a:hover { text-decoration: underline; filter: brightness(1.12); }

/* Terms line */
.aw-auth-terms {
  font-size: 12px;
  color: rgba(245, 245, 244, 0.4);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.aw-auth-terms a { color: rgba(245, 245, 244, 0.55); text-decoration: underline; }
.aw-auth-terms a:hover { color: rgba(245, 245, 244, 0.85); }

/* Info side content */
.aw-auth-info-side .aw-auth-tagline {
  font-size: 28px;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.3;
  margin-bottom: 32px;
  max-width: 420px;
}
.aw-auth-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
}
.aw-auth-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.aw-auth-features-list li:first-child { padding-top: 0; }
.aw-auth-features-list li:last-child { border-bottom: none; }
.aw-auth-features-list .aw-auth-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(132, 166, 42, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 15px;
}
.aw-auth-features-list .aw-auth-feat-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 3px;
}
.aw-auth-features-list .aw-auth-feat-text p {
  font-size: 13px;
  color: rgba(245, 245, 244, 0.55);
  margin: 0;
  line-height: 1.5;
}
.aw-auth-stage-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(132, 166, 42, 0.1);
  border: 1px solid rgba(132, 166, 42, 0.2);
  color: #a8cc44;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Mini-footer (Pattern A — replaces full footer) */
.aw-auth-mini-footer {
  padding: 20px 48px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(245, 245, 244, 0.35);
}
.aw-auth-mini-footer a {
  color: rgba(245, 245, 244, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.aw-auth-mini-footer a:hover { color: rgba(245, 245, 244, 0.8); }
.aw-auth-mini-footer__links {
  display: flex;
  gap: 20px;
}

/* Dashboard layout */
.aw-dashboard-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(132, 166, 42, 0.08) 0%, transparent 50%),
    #111009;
  display: flex;
}
.aw-dashboard-sidebar {
  flex: 0 0 240px;
  background: rgba(28, 25, 23, 0.8);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.aw-dashboard-sidebar .aw-auth-logo {
  margin-bottom: 36px;
}
.aw-dashboard-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.aw-dashboard-nav li { margin-bottom: 4px; }
.aw-dashboard-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(245, 245, 244, 0.55);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.aw-dashboard-nav a:hover,
.aw-dashboard-nav a.is-active {
  background: rgba(132, 166, 42, 0.12);
  color: #d4ea7a;
}
.aw-dashboard-nav a i { font-size: 13px; width: 16px; text-align: center; }
.aw-dashboard-nav .aw-dashboard-logout a { color: rgba(245, 245, 244, 0.35); }
.aw-dashboard-nav .aw-dashboard-logout a:hover { color: rgba(245, 245, 244, 0.65); background: transparent; }
.aw-dashboard-main {
  flex: 1;
  padding: 40px 48px;
  overflow-y: auto;
}
.aw-dashboard-welcome {
  margin-bottom: 36px;
}
.aw-dashboard-welcome h1 {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 6px;
}
.aw-dashboard-welcome p {
  font-size: 14px;
  color: rgba(245, 245, 244, 0.55);
  margin: 0;
}
.aw-dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.aw-dashboard-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}
.aw-dashboard-stat__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-display);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}
.aw-dashboard-stat__label {
  font-size: 13px;
  color: rgba(245, 245, 244, 0.5);
}
.aw-dashboard-preview {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 28px;
  color: rgba(245, 245, 244, 0.45);
  font-size: 14px;
  text-align: center;
}
.aw-dashboard-preview h3 {
  font-size: 16px;
  font-weight: 600;
  color: rgba(245, 245, 244, 0.7);
  margin-bottom: 8px;
}
.aw-dashboard-preview p { margin: 0; line-height: 1.55; }

/* Verify page centered */
.aw-auth-centered {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.aw-auth-centered-card {
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.aw-auth-centered-card .aw-auth-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(132, 166, 42, 0.12);
  border: 2px solid rgba(132, 166, 42, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  color: var(--accent);
}
.aw-auth-centered-card h2 {
  font-size: 26px;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 12px;
}
.aw-auth-centered-card p {
  font-size: 15px;
  color: rgba(245, 245, 244, 0.6);
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Responsive */
@media (max-width: 900px) {
  .aw-auth-split { flex-direction: column; }
  .aw-auth-form-side { flex: none; max-width: 100%; padding: 40px 28px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .aw-auth-info-side { display: none; }
  .aw-dashboard-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .aw-dashboard-page { flex-direction: column; }
  .aw-dashboard-sidebar { flex: none; min-height: auto; padding: 20px 16px; }
  .aw-dashboard-nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .aw-dashboard-main { padding: 24px 20px; }
  .aw-dashboard-stats { grid-template-columns: 1fr 1fr; }
  .aw-auth-field-pair { grid-template-columns: 1fr; }
  .aw-auth-mini-footer { padding: 16px 24px; }
}
@media (max-width: 480px) {
  .aw-dashboard-stats { grid-template-columns: 1fr; }
  .aw-auth-form-side { padding: 32px 20px; }
}

/* ============================================================
   BLOG ARTICLE READING WIDTH (MANDATORY)
   ============================================================ */
.c-article,
.c-article__container,
.c-post__body,
.c-post,
.c-blog-post,
.blog-article,
.blog-article-body,
.blog-article-content,
.blog-post,
.blog-post-body,
.article-body,
.article-content,
.post-content,
.post-body,
.container-narrow,
.reading-column,
.aw-post__body {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.c-article img,
.c-article__container img,
.c-post__body img,
.blog-article-body img,
.blog-post img,
.article-body img,
.article-content img,
.post-content img,
.aw-post__body img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 24px auto 32px;
}

.c-article h2,
.c-post__body h2,
.blog-article-body h2,
.blog-post h2,
.article-body h2,
.post-content h2,
.aw-post__body h2 { margin-top: 48px; margin-bottom: 20px; }

.c-article h3,
.c-post__body h3,
.blog-article-body h3,
.blog-post h3,
.article-body h3,
.post-content h3,
.aw-post__body h3 { margin-top: 36px; margin-bottom: 16px; }

.aw-post__body p { font-size: 17px; line-height: 1.8; margin-bottom: 24px; color: var(--text-primary); }
.aw-post__body ul, .aw-post__body ol { margin-bottom: 24px; padding-left: 24px; }
.aw-post__body li { font-size: 17px; line-height: 1.8; margin-bottom: 8px; }
.aw-post__body blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--bg-cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--text-secondary);
}

/* ============================================================
   Blog Index Page (aw-blog-grid family)
   ============================================================ */
.aw-blog-list {
  padding: 72px 0 96px;
  background: var(--bg-white);
}

.aw-blog-list__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.aw-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.aw-blog-grid > li { list-style: none; }

.aw-blog-grid__item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.aw-blog-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(28,25,23,0.1);
}

.aw-blog-grid__cover {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.aw-blog-grid__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.aw-blog-grid__item:hover .aw-blog-grid__cover img {
  transform: scale(1.04);
}

.aw-blog-grid__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aw-blog-grid__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.aw-blog-grid__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(132,166,42,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

.aw-blog-grid__date {
  font-size: 12px;
  color: var(--text-muted);
}

.aw-blog-grid__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.aw-blog-grid__title a { color: inherit; text-decoration: none; }
.aw-blog-grid__title a:hover { color: var(--accent); }

.aw-blog-grid__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 0;
  flex: 1;
}

.aw-blog-grid__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.aw-blog-grid__cta:hover { color: var(--accent-hover); }
.aw-blog-grid__cta i { font-size: 12px; }

@media (max-width: 960px) {
  .aw-blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .aw-blog-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Blog Article Detail Page (aw-post-detail family)
   ============================================================ */
.aw-post-detail__hero {
  background: var(--bg-dark);
  padding: 72px 0 56px;
  color: var(--text-light);
}

.aw-post-detail__hero-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.aw-post-detail__cat {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.aw-post-detail__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 20px;
}

.aw-post-detail__excerpt {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(245,245,244,0.75);
  margin-bottom: 24px;
}

.aw-post-detail__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(245,245,244,0.55);
}

.aw-post-detail__meta i { color: rgba(132,166,42,0.8); }

.aw-post-detail__cover-wrap {
  max-width: 860px;
  margin: 48px auto 0;
  padding: 0 24px;
}

.aw-post-detail__cover-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.aw-post-detail__content {
  padding: 56px 0 72px;
}

/* Prev/Next nav */
.aw-article-nav {
  max-width: 780px;
  margin: 40px auto 0;
  padding: 32px 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.aw-article-nav__prev,
.aw-article-nav__next {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.aw-article-nav__prev:hover,
.aw-article-nav__next:hover { color: var(--accent-hover); }

/* ============================================================
   Related Articles (aw-related-articles family)
   ============================================================ */
.aw-related-articles {
  background: var(--bg-cream);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.aw-related-articles__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.aw-related-articles__heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 32px;
}

.aw-related-articles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.aw-related-articles__card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.aw-related-articles__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28,25,23,0.1);
}

.aw-related-articles__card a { display: block; text-decoration: none; color: inherit; }

.aw-related-articles__card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.aw-related-articles__card-body {
  padding: 16px;
}

.aw-related-articles__card-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
  margin: 0 0 6px;
}

.aw-related-articles__card-date {
  font-size: 12px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .aw-related-articles__grid { grid-template-columns: 1fr; }
  .aw-article-nav { flex-direction: column; gap: 12px; }
}

/* ============================================================
   Legal Pages (aw-legal family)
   ============================================================ */
.aw-legal {
  padding: 64px 0 96px;
  background: var(--bg-white);
}

.aw-legal__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.aw-legal h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 14px;
}

.aw-legal h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 28px;
  margin-bottom: 10px;
}

.aw-legal p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.aw-legal ul, .aw-legal ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.aw-legal li {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.aw-legal a { color: var(--accent); text-decoration: underline; }
.aw-legal a:hover { color: var(--accent-hover); }

.aw-legal__last-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
