:root {
  --night: #1a1a2e;
  --night-deep: #111124;
  --sand: #e8dfd0;
  --sand-warm: #ddd4c3;
  --gold: #c3853a;
  --blue: #6787c2;
  --grey: #7a6f5e;
  --ink: #202033;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.aw-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 7%, rgba(103,135,194,.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(195,133,58,.12), transparent 30%),
    var(--sand);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: .01em;
}

.aw-serif { font-family: "Cormorant Garamond", serif; }
.aw-shell { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.aw-header-spacer { height: 88px; }
.aw-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;
}
.aw-site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: var(--sand);
  border-bottom: 1px solid rgba(122,111,94,.25);
  box-shadow: 0 8px 24px rgba(26,26,46,.08);
}
.aw-header-row-main {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.aw-brand {
  display: flex;
  align-items: center;
  color: var(--night);
  text-decoration: none;
  flex-shrink: 0;
}
.aw-brand-lockup {
  display: inline-flex;
  align-items: center;
}
.aw-brand__mark {
  width: 46px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  margin-right: 16px;
  display: block;
}
.aw-brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}
.aw-brand__word {
  display: block;
  color: var(--blue);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: .01em;
  white-space: nowrap;
}
.aw-brand__credentials {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}
.aw-brand--footer .aw-brand__word { color: var(--sand); }
.aw-brand-lockup--hero .aw-brand__mark {
  width: 72px;
  height: 68px;
  margin-right: 20px;
}
.aw-brand-lockup--hero .aw-brand__word {
  color: var(--sand);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
}
.aw-nav { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.aw-nav a {
  color: var(--night);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  transition: color .2s ease, background .2s ease, opacity .2s ease;
}
.aw-nav a:hover { color: var(--gold); text-decoration: none; }
.aw-nav a.is-active { background: var(--gold); color: var(--sand); font-weight: 600; text-decoration: none; }
.aw-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.aw-header-cta { white-space: nowrap; padding: 10px 18px; }
.aw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 6px;
  padding: 12px 24px;
  min-height: 44px;
  background: var(--gold);
  color: var(--sand);
  border: 1px solid var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1.25;
  transition: transform .2s ease, opacity .2s ease, background .2s ease, color .2s ease;
}
.aw-button:hover,
.aw-button:focus {
  transform: translateY(-1px);
  opacity: .9;
  text-decoration: none;
  color: var(--sand);
}
.aw-button--secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.aw-button--secondary:hover,
.aw-button--secondary:focus {
  background: var(--gold);
  color: var(--sand);
}
.aw-mobile-toggle { display: none; border: 1px solid rgba(195,133,58,.45); background: transparent; color: var(--gold); border-radius: 8px; padding: 10px 12px; }
.aw-mobile-menu { display: none; }

.aw-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(103,135,194,.28), transparent 28%),
    radial-gradient(circle at 12% 22%, rgba(195,133,58,.28), transparent 30%),
    linear-gradient(135deg, var(--night), #101024 62%, #0b0b18);
  color: var(--sand);
  padding: 86px 0 76px;
}
.aw-hero::after, .aw-cta-card::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -160px;
  border: 1px solid rgba(195,133,58,.28);
  border-radius: 50%;
  box-shadow: inset 0 0 0 34px rgba(195,133,58,.04), inset 0 0 0 78px rgba(103,135,194,.035);
  pointer-events: none;
}
.aw-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(280px, .86fr); align-items: center; gap: 54px; }
.aw-label { color: var(--gold); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.aw-h1 {
  margin: 14px 0 0;
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.aw-h1--home { display: grid; gap: 10px; }
.aw-h1__primary { display: block; }
.aw-h1__tagline {
  display: block;
  font-size: clamp(24px, 3.5vw, 36px);
  font-style: italic;
  color: rgba(232,223,208,.88);
}
.aw-hero-credentials {
  margin: 16px 0 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.aw-intro {
  margin-top: 24px;
  color: rgba(232,223,208,.9);
  font-size: 17px;
  max-width: 680px;
  line-height: 1.65;
}
.aw-hero .aw-intro p { margin: 0; color: inherit; }
.aw-hero .aw-intro a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(195,133,58,.45);
}
.aw-hero .aw-intro a:hover {
  color: var(--sand);
  border-bottom-color: var(--sand);
}
.aw-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.aw-hero-card {
  position: relative;
  border-radius: 28px;
  padding: 18px;
  background: rgba(232,223,208,.08);
  border: 1px solid rgba(232,223,208,.16);
  box-shadow: 0 26px 70px rgba(0,0,0,.25);
}
.aw-hero-card__inner {
  min-height: 330px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle, rgba(232,223,208,.15), transparent 52%),
    linear-gradient(145deg, rgba(103,135,194,.30), rgba(195,133,58,.22));
}
.aw-hero-card img { max-width: 78%; max-height: 280px; object-fit: contain; opacity: .94; }
.aw-quote-mini {
  margin-top: 18px;
  border-left: 3px solid var(--gold);
  padding: 12px 0 12px 18px;
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.aw-main { background: var(--sand); }
.aw-content-wrap { width: min(920px, calc(100% - 32px)); margin: 0 auto; padding: 56px 0 76px; }
.aw-section-title {
  margin: 0 0 24px;
  color: var(--night);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 400;
  line-height: 1.15;
}
.aw-home-testimonials {
  padding: 48px 0 12px;
  border-bottom: 1px solid rgba(122,111,94,.16);
  margin-bottom: 8px;
}
.aw-home-testimonials__more {
  margin: 28px 0 0;
  display: flex;
  justify-content: center;
}
.aw-section-heading {
  margin: 0 0 22px;
  color: var(--night);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.15;
}
.aw-related-section { margin-top: 54px; }
.aw-prose { color: rgba(32, 32, 51, 0.88); }
.aw-prose p,
.aw-prose li {
  color: rgba(32, 32, 51, 0.8);
}
.aw-prose h2 {
  margin: 3.25rem 0 1rem;
  color: var(--night);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.15;
}
.aw-prose h2:first-child { margin-top: 0; }
.aw-prose h2:not(:first-child)::before {
  content: "";
  display: block;
  width: min(96px, 28%);
  height: 1px;
  margin: 0 0 1.35rem;
  background: linear-gradient(90deg, rgba(195,133,58,.75), rgba(195,133,58,.15));
}
.aw-prose h3 {
  margin: 2rem 0 .75rem;
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
}
.aw-prose p { margin: 1rem 0; }
.aw-prose a:not(.aw-button):not(.aw-condition-card):not(.aw-info-card) {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(195,133,58,.38);
  transition: color .2s ease, border-color .2s ease;
}
.aw-prose a:not(.aw-button):not(.aw-condition-card):not(.aw-info-card):hover {
  color: var(--night);
  border-bottom-color: var(--night);
}
.aw-prose a.aw-button,
.aw-prose a.aw-button:hover,
.aw-prose a.aw-button:focus,
.aw-prose .aw-inline-cta a,
.aw-prose .aw-read-more a,
.aw-prose .aw-pricing-card a.aw-button,
.aw-prose a.aw-condition-card,
.aw-prose a.aw-condition-card:hover {
  border-bottom: none;
  text-decoration: none;
}
.aw-prose a.aw-button { color: var(--sand); }
.aw-prose a.aw-button--secondary { color: var(--gold); }
.aw-prose a.aw-button--secondary:hover,
.aw-prose a.aw-button--secondary:focus { color: var(--sand); }
.aw-prose .aw-text-link a {
  font-weight: 600;
}
.aw-prose hr {
  display: none;
}
.aw-prose ul, .aw-prose ol { margin: 1rem 0 1.2rem 1.3rem; }
.aw-prose blockquote {
  margin: 2rem 0;
  padding: 18px 24px;
  border-left: 3px solid var(--gold);
  background: var(--night);
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
}
.aw-disclaimer {
  margin-bottom: 34px;
  border-radius: 16px;
  background: var(--grey);
  color: var(--night);
  border-left: 4px solid var(--gold);
  padding: 18px 20px;
  font-size: 13px;
}
.aw-section-divider {
  border: 0;
  height: 0;
  margin: 2.5rem 0;
  border-top: 1px solid rgba(122,111,94,.18);
}
.aw-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.aw-info-card { display: block; border-radius: 18px; background: var(--sand-warm); padding: 22px; color: var(--ink); text-decoration: none; border-top: 4px solid var(--gold); transition: transform .2s ease, box-shadow .2s ease; }
.aw-info-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(26,26,46,.12); }
.aw-info-card small { color: var(--gold); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 700; }
.aw-info-card h3 { margin: 8px 0 8px; color: var(--night); font-family: "Cormorant Garamond", serif; font-size: 26px; line-height: 1.1; }
.aw-info-card p { margin: 0; color: rgba(32,32,51,.72); font-size: 14px; }
.aw-section-block { margin: 54px 0; }
.aw-section-block h2 { margin: 0 0 22px; color: var(--night); font-family: "Cormorant Garamond", serif; font-size: clamp(30px, 4vw, 43px); font-weight: 400; line-height: 1.15; }
.aw-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.aw-testimonial-card {
  position: relative;
  min-height: 100%;
  border-radius: 18px;
  background: var(--grey);
  color: var(--sand);
  border-left: 3px solid var(--gold);
  padding: 28px 24px 24px;
  overflow: hidden;
}
.aw-testimonial-card__quote {
  position: absolute;
  top: -8px;
  right: 18px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 72px;
  line-height: 1;
  opacity: .55;
}
.aw-testimonial-card p { margin: 0 0 18px; position: relative; z-index: 1; }
.aw-testimonial-card strong { display: block; color: var(--gold); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.aw-testimonial-card span { display: inline-flex; margin-top: 12px; border-radius: 999px; background: var(--blue); color: var(--sand); padding: 4px 10px; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
.aw-faq { margin-top: 48px; }
.aw-faq details { border-bottom: 1px solid rgba(122,111,94,.35); padding: 18px 0; }
.aw-faq summary { cursor: pointer; color: var(--night); font-weight: 600; }
.aw-faq p { margin: 10px 0 0; color: rgba(32,32,51,.76); }
.aw-citations {
  margin-top: 48px;
  border-radius: 20px;
  background: rgba(122,111,94,.14);
  padding: 26px 28px;
}
.aw-citations ol { margin: 0; padding-left: 1.25rem; }
.aw-citation-item {
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(32,32,51,.78);
}
.aw-citation-item strong { color: var(--night); font-weight: 600; }
.aw-citation-text { display: inline; }
.aw-citation-text p { display: inline; margin: 0; color: inherit; }
.aw-citations a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(195,133,58,.38);
}
.aw-citations a:hover {
  color: var(--night);
  border-bottom-color: var(--night);
}
.aw-cta-card {
  position: relative;
  overflow: hidden;
  margin: 54px 0;
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 14%, rgba(195,133,58,.16), transparent 32%),
    linear-gradient(135deg, var(--night), #101024);
  color: var(--sand);
  padding: 34px;
}
.aw-cta-card__content { position: relative; z-index: 1; max-width: 640px; }
.aw-cta-card h2 { margin: 0; font-family: "Cormorant Garamond", serif; font-size: 34px; font-weight: 400; }
.aw-cta-card p { color: rgba(232,223,208,.72); margin: 12px 0 20px; }
.aw-cta-card .aw-button { width: fit-content; display: inline-flex; }

.aw-stat-callout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
  margin: 28px 0;
  padding: 22px;
  border-radius: 18px;
  background: var(--night);
  color: var(--sand);
}
.aw-stat-callout__value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--gold);
  line-height: 1.1;
}
.aw-pull-quote {
  margin: 2rem 0;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--night);
  color: var(--sand);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-style: italic;
  line-height: 1.45;
}
.aw-pull-quote cite {
  display: block;
  margin-top: 12px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.aw-inline-cta, .aw-text-link { margin: 1.25rem 0; }
.aw-read-more {
  margin: 1.5rem 0 0;
  display: flex;
  justify-content: center;
}
.aw-read-more .aw-button { min-width: 168px; }
.aw-badge {
  display: inline-block;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(195,133,58,.14);
  color: var(--gold);
  border: 1px solid rgba(195,133,58,.45);
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.aw-condition-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 8px;
  align-items: stretch;
}
.aw-condition-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 16px;
  background: var(--sand-warm);
  padding: 20px 20px 18px;
  color: var(--ink);
  text-decoration: none;
  border-top: 4px solid var(--gold);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.aw-condition-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(26,26,46,.1);
  border-top-color: var(--blue);
}
.aw-condition-card h3 {
  margin: 0 0 8px;
  color: var(--night);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.1;
}
.aw-condition-card__copy {
  margin: 0;
  flex: 1 1 auto;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(32,32,51,.76);
}
.aw-condition-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(122,111,94,.18);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.aw-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 24px 0 8px;
  align-items: stretch;
}
.aw-pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  border-radius: 18px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(122,111,94,.22);
  padding: 22px 22px 20px;
  box-shadow: 0 10px 24px rgba(26,26,46,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.aw-pricing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(26,26,46,.08);
  border-color: rgba(195,133,58,.42);
}
.aw-pricing-card__header h3 {
  margin: 0 0 10px;
  color: var(--night);
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  line-height: 1.15;
}
.aw-pricing-card__body {
  flex: 1 1 auto;
}
.aw-pricing-card__body p { margin: 0 0 10px; font-size: 14px; line-height: 1.65; color: rgba(32,32,51,.78); }
.aw-pricing-card__features {
  margin: 10px 0 0;
  padding-left: 1.1rem;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(32,32,51,.76);
}
.aw-pricing-card__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
}
.aw-pricing-card__investment {
  margin: 0;
  width: 100%;
  font-weight: 700;
  color: var(--gold);
  font-size: 15px;
  text-align: center;
}
.aw-pricing-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
  min-height: 46px;
  margin-inline: auto;
  padding: 12px 22px;
  line-height: 1.3;
  text-align: center;
  box-sizing: border-box;
}
.aw-portal-card {
  margin: 28px 0;
  padding: 28px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(195,133,58,.14), transparent 34%),
    linear-gradient(135deg, var(--night), #101024);
  color: var(--sand);
}
.aw-portal-card__title {
  margin: 0 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 400;
}
.aw-portal-card__lead { margin: 0 0 18px; color: rgba(232,223,208,.76); font-size: 14px; }
.aw-portal-form { display: grid; gap: 12px; max-width: 420px; }
.aw-portal-input {
  width: 100%;
  border: 1px solid rgba(232,223,208,.28);
  border-radius: 8px;
  background: rgba(232,223,208,.08);
  color: var(--sand);
  padding: 12px 14px;
  font: inherit;
}
.aw-portal-input::placeholder { color: rgba(232,223,208,.5); }
.aw-portal-name-fields { display: grid; gap: 12px; }
.aw-portal-submit { width: fit-content; }
.aw-portal-message { margin: 14px 0 0; font-size: 13px; color: rgba(232,223,208,.8); }
.aw-portal-message.is-success { color: #9fd4a8; }
.aw-portal-message.is-error { color: #efb0b0; }
.aw-doxy-trust {
  margin: 28px 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(122,111,94,.25);
}
.aw-doxy-trust__visual {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(26,26,46,.08), rgba(26,26,46,.42)),
    radial-gradient(circle at 30% 30%, rgba(103,135,194,.35), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(195,133,58,.28), transparent 40%),
    linear-gradient(135deg, #d8cdbd, #b9aa95);
}
.aw-doxy-trust__strip {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  background: var(--night);
  color: var(--sand);
  font-size: 12px;
}
.aw-doxy-trust__brand { color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.aw-doxy-trust__badges { color: rgba(232,223,208,.78); }
.aw-doxy-trust__note { color: var(--grey); }
.aw-footer { background: var(--night); color: var(--sand); padding-top: 48px; }
.aw-footer-cta { margin-bottom: 42px; }
.aw-footer-grid { display: grid; grid-template-columns: 1fr; gap: 18px; padding-bottom: 18px; }
.aw-footer-brand { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.aw-footer-sitemap { grid-template-columns: repeat(4, 1fr); gap: 36px; padding-bottom: 34px; }
.aw-footer h3 { color: var(--gold); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.aw-footer a { display: block; color: var(--sand); text-decoration: none; font-size: 13px; line-height: 1.9; }
.aw-footer a:hover { color: var(--gold); }
.aw-footer-legal { border-top: 1px solid rgba(122,111,94,.35); padding: 16px 0; color: var(--grey); font-size: 11px; display: flex; justify-content: space-between; gap: 18px; }
.aw-footer-legal a { display: inline; color: var(--sand); font-size: inherit; line-height: inherit; }

.aw-blog-list { display: grid; gap: 20px; }
.aw-post-card { background: rgba(255,255,255,.34); border-radius: 22px; padding: 24px; border-top: 4px solid var(--gold); }
.aw-post-card h2 { font-family: "Cormorant Garamond", serif; font-size: 32px; line-height: 1.1; margin: 8px 0; }
.aw-post-card h2 a { color: var(--night); text-decoration: none; }
.aw-post-card h2 a:hover { color: var(--gold); }
.aw-post-card p { color: rgba(32,32,51,.76); }
.aw-post-card small { color: var(--grey); font-size: 12px; }
.aw-cta-card .aw-category-link {
  display: block;
  color: var(--sand);
  text-decoration: none;
  margin-top: 8px;
  font-size: 14px;
}
.aw-cta-card .aw-category-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .aw-header-spacer { height: 72px; }
  .aw-header-row-main { height: 72px; }
  .aw-header-actions, .aw-nav { display: none; }
  .aw-brand__mark { width: 40px; height: 38px; margin-right: 12px; }
  .aw-brand__word { font-size: 16px; }
  .aw-brand__credentials { display: none; }
  .aw-brand-lockup--hero .aw-brand__mark { width: 58px; height: 55px; margin-right: 16px; }
  .aw-mobile-toggle { display: inline-flex; }
  .aw-mobile-menu.is-open { display: grid; gap: 10px; position: fixed; inset: 72px 0 auto 0; background: var(--night); padding: 20px; border-bottom: 1px solid rgba(232,223,208,.2); }
  .aw-mobile-menu a { color: var(--gold); text-decoration: none; padding: 12px 4px; font-size: 18px; }
  .aw-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .aw-hero { padding: 52px 0; }
  .aw-card-grid { grid-template-columns: 1fr; }
  .aw-testimonial-grid { grid-template-columns: 1fr; }
  .aw-condition-grid { grid-template-columns: 1fr 1fr; }
  .aw-pricing-grid { grid-template-columns: 1fr; }
  .aw-stat-callout { grid-template-columns: 1fr; }
  .aw-footer-brand { display: block; }
  .aw-footer-sitemap { grid-template-columns: 1fr 1fr; }
  .aw-footer-legal { flex-direction: column; }
}

@media (max-width: 560px) {
  .aw-brand__word { font-size: 15px; }
  .aw-footer-sitemap { grid-template-columns: 1fr; }
  .aw-hero-card__inner { min-height: 220px; }
  .aw-condition-grid { grid-template-columns: 1fr; }
  .aw-shell, .aw-content-wrap { width: min(100%, calc(100% - 24px)); }
}

@media (max-width: 900px) {
  .aw-content-wrap > div[style*="grid-template-columns"] { display: block !important; }
  .aw-content-wrap aside.aw-cta-card { margin-top: 28px !important; }
}
