/* ==========================================================================
   AUTHORITY SPEAKS — Master Stylesheet
   "Truth That Moves Rooms."
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Palette — deep navy authority + warm gold accent + cream paper */
  --as-ink:        #0B1A3A;       /* deep navy — primary */
  --as-ink-deep:   #050d22;       /* near-black navy for hero */
  --as-gold:       #C9A24A;       /* refined antique gold */
  --as-gold-soft:  #E6C887;       /* gold highlight */
  --as-cream:      #F4EFE6;       /* paper cream */
  --as-cream-warm: #EDE3D0;       /* warm cream */
  --as-bone:       #FBF8F1;       /* off-white */
  --as-rust:       #8C3A1B;       /* prophetic accent — rare use */
  --as-grey:       #6B6960;       /* warm grey for body */
  --as-line:       rgba(11, 26, 58, 0.12);

  /* Typography */
  --as-serif: "Fraunces", "Playfair Display", Georgia, serif;
  --as-sans:  "Inter Tight", "Helvetica Neue", system-ui, sans-serif;
  --as-mono:  "JetBrains Mono", "Courier New", monospace;

  /* Scale */
  --as-radius-sm: 2px;
  --as-radius:    4px;
  --as-shadow-soft: 0 20px 60px -20px rgba(11, 26, 58, 0.25);
  --as-shadow-deep: 0 40px 100px -30px rgba(5, 13, 34, 0.5);

  /* Container */
  --as-max: 1280px;
  --as-gutter: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--as-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  color: var(--as-ink);
  background: var(--as-bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--as-gold); }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--as-gold);
  color: var(--as-ink-deep);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--as-serif);
  font-weight: 500;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--as-ink);
  margin: 0 0 0.5em;
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

h1 { font-size: clamp(2.75rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4 { font-size: 1.25rem; }

p { margin: 0 0 1em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--as-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--as-gold);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.75rem;
  height: 1px;
  background: currentColor;
}

.lede {
  font-family: var(--as-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  line-height: 1.45;
  color: var(--as-grey);
}

/* ---------- Layout Helpers ---------- */
.as-container {
  max-width: var(--as-max);
  margin: 0 auto;
  padding-left: var(--as-gutter);
  padding-right: var(--as-gutter);
}

.as-section {
  padding: clamp(4rem, 9vw, 8rem) 0;
}

.as-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--as-line);
  border: none;
}

/* ---------- Header / Nav ---------- */
.as-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.5rem 0;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.3s ease, padding 0.3s ease, color 0.3s ease;
  color: var(--as-cream);
}

.as-header .as-logo,
.as-header .as-nav a {
  color: var(--as-cream);
}

.as-header.is-scrolled {
  padding: 0.85rem 0;
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--as-line);
  color: var(--as-ink);
}

.as-header.is-scrolled .as-logo,
.as-header.is-scrolled .as-nav a {
  color: var(--as-ink);
}

.as-header.is-scrolled .as-nav-toggle span {
  background: var(--as-ink);
}

/* Inner pages — non-front — always have light header */
body:not(.as-front) .as-header {
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--as-line);
  color: var(--as-ink);
}

body:not(.as-front) .as-header .as-logo,
body:not(.as-front) .as-header .as-nav a {
  color: var(--as-ink);
}

.as-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.as-logo {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-family: var(--as-serif);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--as-ink);
}

.as-logo__mark {
  width: 8px;
  height: 8px;
  background: var(--as-gold);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-2px);
}

.as-logo__amp {
  color: var(--as-gold);
  font-style: italic;
}

.as-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.as-nav ul,
.as-nav .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.25rem;
}

.as-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
}

.as-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--as-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.as-nav a:hover::after { transform: scaleX(1); }

.as-nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.as-nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* ---------- Buttons ---------- */
.as-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--as-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--as-radius);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.as-btn--primary {
  background: var(--as-ink);
  color: var(--as-cream);
}

.as-btn--primary:hover {
  background: var(--as-gold);
  color: var(--as-ink);
  transform: translateY(-2px);
}

.as-btn--ghost {
  background: transparent;
  color: var(--as-ink);
  border: 1px solid var(--as-ink);
}

.as-btn--ghost:hover {
  background: var(--as-ink);
  color: var(--as-cream);
}

.as-btn--gold {
  background: var(--as-gold);
  color: var(--as-ink-deep);
}

.as-btn--gold:hover {
  background: var(--as-gold-soft);
  transform: translateY(-2px);
}

.as-btn--ink-bg {
  background: var(--as-cream);
  color: var(--as-ink-deep);
}

.as-btn .arrow {
  transition: transform 0.2s ease;
}

.as-btn:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Hero ---------- */
.as-hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 5rem;
  background: var(--as-ink-deep);
  color: var(--as-cream);
  overflow: hidden;
}

.as-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 162, 74, 0.18), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 162, 74, 0.08), transparent 50%);
  pointer-events: none;
}

.as-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.as-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.as-hero__eyebrow {
  margin-bottom: 2.5rem;
  color: var(--as-gold);
}

.as-hero h1 {
  color: var(--as-cream);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.as-hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--as-gold-soft);
}

.as-hero__lede {
  font-family: var(--as-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.78);
  max-width: 38rem;
  margin: 0 0 2.75rem;
}

.as-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.as-hero__cta .as-btn--ghost {
  background: transparent;
  color: var(--as-cream);
  border-color: rgba(244, 239, 230, 0.4);
}

.as-hero__cta .as-btn--ghost:hover {
  background: var(--as-cream);
  color: var(--as-ink-deep);
  border-color: var(--as-cream);
}

.as-hero__cta .as-btn--primary {
  background: var(--as-gold);
  color: var(--as-ink-deep);
}

.as-hero__cta .as-btn--primary:hover {
  background: var(--as-gold-soft);
}

/* Hero portrait */
.as-hero__portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--as-radius);
  overflow: hidden;
  box-shadow: var(--as-shadow-deep);
  background: var(--as-ink);
}

.as-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}

.as-hero__portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5, 13, 34, 0.5));
}

.as-hero__badge {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: -1px;
  padding: 1.25rem 1.5rem;
  background: var(--as-gold);
  color: var(--as-ink-deep);
  font-family: var(--as-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero scroll indicator */
.as-hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--as-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}

.as-hero__scroll::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--as-gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* Marquee strip */
.as-marquee {
  background: var(--as-ink-deep);
  color: var(--as-gold-soft);
  border-top: 1px solid rgba(201, 162, 74, 0.2);
  border-bottom: 1px solid rgba(201, 162, 74, 0.2);
  padding: 1.4rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.as-marquee__track {
  display: inline-flex;
  gap: 3.5rem;
  animation: marquee 40s linear infinite;
  font-family: var(--as-serif);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 300;
}

.as-marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}

.as-marquee__track span::after {
  content: "✦";
  color: var(--as-gold);
  font-size: 0.7em;
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Topics Section ---------- */
.as-topics {
  background: var(--as-bone);
  position: relative;
}

.as-topics__header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.as-topics h2 {
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 400;
}

.as-topics h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--as-gold);
}

.as-topics__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--as-line);
  border-left: 1px solid var(--as-line);
}

.as-topic {
  padding: 3rem 2.5rem;
  border-right: 1px solid var(--as-line);
  border-bottom: 1px solid var(--as-line);
  background: var(--as-bone);
  transition: background 0.3s ease;
  position: relative;
}

.as-topic:hover {
  background: var(--as-cream-warm);
}

.as-topic__num {
  font-family: var(--as-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--as-gold);
  margin-bottom: 1.5rem;
  display: block;
}

.as-topic h3 {
  font-size: 1.65rem;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.as-topic p {
  color: var(--as-grey);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.as-topic__audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.as-topic__audiences span {
  font-family: var(--as-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--as-line);
  border-radius: 100px;
  color: var(--as-grey);
}

/* ---------- Audiences Strip ---------- */
.as-audiences {
  background: var(--as-cream-warm);
  padding: 4.5rem 0;
}

.as-audiences__inner {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 3rem;
  align-items: center;
}

.as-audiences__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
}

.as-audiences__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--as-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--as-ink);
  border-bottom: 1px solid var(--as-line);
  padding-bottom: 0.85rem;
}

.as-audiences__item::before {
  content: "→";
  color: var(--as-gold);
  font-style: italic;
}

/* ---------- About / Bio ---------- */
.as-about {
  background: var(--as-bone);
  position: relative;
  overflow: hidden;
}

.as-about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.as-about__portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--as-radius);
  overflow: hidden;
  box-shadow: var(--as-shadow-soft);
  position: sticky;
  top: 7rem;
}

.as-about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.as-about__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 74, 0.3);
  margin: 12px;
  z-index: 2;
  pointer-events: none;
}

.as-about__content h2 {
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 400;
  line-height: 1.05;
}

.as-about__content h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--as-gold);
}

.as-about__content p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--as-ink);
  margin-bottom: 1.25rem;
}

.as-about__content p:first-of-type {
  font-size: 1.25rem;
  font-family: var(--as-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--as-grey);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.as-credentials {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--as-line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.as-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.as-credential__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1px solid var(--as-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--as-gold);
  font-family: var(--as-mono);
  font-size: 0.7rem;
  margin-top: 2px;
}

.as-credential__text {
  font-size: 0.92rem;
  line-height: 1.5;
}

.as-credential__text strong {
  display: block;
  font-weight: 600;
  color: var(--as-ink);
  font-family: var(--as-sans);
}

.as-credential__text span {
  color: var(--as-grey);
  font-size: 0.85rem;
}

/* ---------- Pull Quote ---------- */
.as-pullquote {
  background: var(--as-ink-deep);
  color: var(--as-cream);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.as-pullquote::before {
  content: "\201C";
  position: absolute;
  top: -3rem;
  left: 5%;
  font-family: var(--as-serif);
  font-size: 22rem;
  color: var(--as-gold);
  opacity: 0.15;
  line-height: 1;
}

.as-pullquote__inner {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.as-pullquote blockquote {
  margin: 0;
  font-family: var(--as-serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--as-cream);
}

.as-pullquote blockquote em {
  font-style: italic;
  color: var(--as-gold-soft);
}

.as-pullquote cite {
  display: block;
  margin-top: 2.5rem;
  font-family: var(--as-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--as-gold);
  font-style: normal;
}

/* ---------- Testimonials ---------- */
.as-testimonials {
  background: var(--as-bone);
}

.as-testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}

.as-testimonials__header .eyebrow {
  margin-bottom: 1rem;
}

.as-testimonials__header h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.as-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.as-testimonial {
  background: var(--as-bone);
  border: 1px solid var(--as-line);
  padding: 2.5rem;
  border-radius: var(--as-radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.as-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--as-shadow-soft);
  border-color: var(--as-gold);
}

.as-testimonial__quote {
  font-family: var(--as-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--as-ink);
  flex-grow: 1;
  margin: 0;
}

.as-testimonial__quote::before {
  content: "\201C";
  display: block;
  font-size: 3rem;
  color: var(--as-gold);
  line-height: 0.5;
  margin-bottom: 0.5rem;
}

.as-testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--as-line);
}

.as-testimonial__author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.as-testimonial__author span {
  display: block;
  font-size: 0.8rem;
  color: var(--as-grey);
  font-family: var(--as-mono);
  letter-spacing: 0.05em;
}

/* ---------- Logos ---------- */
.as-logos {
  background: var(--as-cream-warm);
  padding: 5rem 0;
}

.as-logos__title {
  text-align: center;
  font-family: var(--as-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--as-grey);
  margin-bottom: 3rem;
}

.as-logos__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2.5rem 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.as-logo-item {
  font-family: var(--as-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--as-ink);
  text-align: center;
  letter-spacing: -0.01em;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  padding: 1rem;
  border-bottom: 1px solid var(--as-line);
}

.as-logo-item:hover { opacity: 1; }

/* ---------- Booking CTA Section ---------- */
.as-booking {
  background: var(--as-ink-deep);
  color: var(--as-cream);
  position: relative;
  overflow: hidden;
}

.as-booking::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 162, 74, 0.12), transparent 50%);
  pointer-events: none;
}

.as-booking__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.as-booking__intro h2 {
  color: var(--as-cream);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.as-booking__intro h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--as-gold-soft);
}

.as-booking__intro p {
  font-family: var(--as-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.75);
  margin-bottom: 2.5rem;
}

.as-booking__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(244, 239, 230, 0.15);
  border-bottom: 1px solid rgba(244, 239, 230, 0.15);
  margin-bottom: 2rem;
}

.as-booking__detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}

.as-booking__detail span:first-child {
  font-family: var(--as-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--as-gold);
}

.as-booking__detail span:last-child {
  color: var(--as-cream);
  font-weight: 500;
}

.as-booking__form {
  background: var(--as-bone);
  color: var(--as-ink);
  padding: 3rem;
  border-radius: var(--as-radius);
  box-shadow: var(--as-shadow-deep);
}

.as-booking__form h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.as-booking__form .as-form-note {
  font-size: 0.85rem;
  color: var(--as-grey);
  margin-bottom: 1.75rem;
}

.as-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.as-form-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.as-form-field label {
  font-family: var(--as-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--as-grey);
  margin-bottom: 0.4rem;
}

.as-form-field input,
.as-form-field select,
.as-form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--as-bone);
  border: 1px solid var(--as-line);
  border-radius: var(--as-radius-sm);
  font-family: var(--as-sans);
  font-size: 0.95rem;
  color: var(--as-ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.as-form-field input:focus,
.as-form-field select:focus,
.as-form-field textarea:focus {
  outline: none;
  border-color: var(--as-gold);
  background: white;
}

.as-form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--as-sans);
}

.as-booking__form .as-btn {
  width: 100%;
  justify-content: center;
  padding: 1.1rem;
  margin-top: 1rem;
}

/* ---------- Footer ---------- */
.as-footer {
  background: var(--as-ink-deep);
  color: var(--as-cream);
  padding: 5rem 0 2rem;
  position: relative;
}

.as-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(244, 239, 230, 0.1);
}

.as-footer__brand {
  font-family: var(--as-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--as-cream);
}

.as-footer__tagline {
  font-family: var(--as-serif);
  font-style: italic;
  color: var(--as-gold-soft);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.as-footer__col h4 {
  font-family: var(--as-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--as-gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.as-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.as-footer__col ul li {
  margin-bottom: 0.65rem;
}

.as-footer__col a {
  font-size: 0.92rem;
  color: rgba(244, 239, 230, 0.75);
  transition: color 0.2s ease;
}

.as-footer__col a:hover { color: var(--as-gold); }

.as-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  font-family: var(--as-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}

.as-footer__ecosystem {
  display: flex;
  gap: 1.5rem;
}

.as-footer__ecosystem a {
  color: rgba(244, 239, 230, 0.6);
}

/* ---------- Single / Page Content ---------- */
.as-page {
  padding: 9rem 0 6rem;
  background: var(--as-bone);
  min-height: 70vh;
}

.as-page__header {
  text-align: center;
  margin-bottom: 4rem;
}

.as-page__header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1rem;
}

.as-content {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.75;
}

.as-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.85rem;
}

.as-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.as-content p { margin-bottom: 1.25rem; }

.as-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--as-gold);
  background: var(--as-cream-warm);
  font-family: var(--as-serif);
  font-style: italic;
  font-size: 1.15rem;
}

.as-content a {
  color: var(--as-ink);
  border-bottom: 1px solid var(--as-gold);
}

.as-content a:hover {
  background: var(--as-gold);
  color: var(--as-ink-deep);
}

.as-content img {
  border-radius: var(--as-radius);
  margin: 2rem 0;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .as-hero__inner,
  .as-about__inner,
  .as-booking__inner,
  .as-topics__header,
  .as-audiences__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .as-about__portrait { position: relative; top: 0; max-width: 22rem; }
  .as-topics__grid { grid-template-columns: 1fr; }
  .as-testimonials__grid { grid-template-columns: 1fr; }
  .as-logos__grid { grid-template-columns: repeat(3, 1fr); }
  .as-footer__top { grid-template-columns: 1fr 1fr; }
  .as-credentials { grid-template-columns: 1fr; }
  .as-audiences__list { grid-template-columns: 1fr; }
  .as-form-row { grid-template-columns: 1fr; }

  .as-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--as-bone); padding: 2rem; flex-direction: column; gap: 0; align-items: stretch; box-shadow: var(--as-shadow-soft); }
  .as-nav.is-open { display: flex; }
  .as-nav ul { flex-direction: column; gap: 1.25rem; }
  .as-nav-toggle { display: flex; }

  .as-footer__bottom { flex-direction: column; gap: 1.25rem; text-align: center; }
}

@media (max-width: 600px) {
  .as-hero { padding: 7rem 0 3rem; }
  .as-hero__cta { flex-direction: column; align-items: stretch; }
  .as-hero__cta .as-btn { justify-content: center; }
  .as-section { padding: 4rem 0; }
  .as-topic { padding: 2rem 1.5rem; }
  .as-booking__form { padding: 2rem 1.5rem; }
  .as-footer__top { grid-template-columns: 1fr; }
  .as-logos__grid { grid-template-columns: repeat(2, 1fr); }
  .as-marquee__track { font-size: 1.2rem; gap: 2rem; }
  .as-marquee__track span { gap: 2rem; }
}

/* ---------- WP-specific blocks support ---------- */
.alignwide {
  margin-left: -2rem;
  margin-right: -2rem;
}

.alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

.wp-block-button__link {
  background: var(--as-ink) !important;
  color: var(--as-cream) !important;
  border-radius: var(--as-radius) !important;
  padding: 0.95rem 1.75rem !important;
  font-family: var(--as-sans) !important;
  font-weight: 500 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-size: 0.85rem !important;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}
