:root {
  --black: #030303;
  --obsidian: #080808;
  --charcoal: #111111;
  --panel: #16130d;
  --gold: #d7ad4d;
  --gold-bright: #ffe78a;
  --gold-soft: #a97823;
  --cream: #fff5d7;
  --muted: rgba(255, 245, 215, 0.72);
  --line: rgba(215, 173, 77, 0.24);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  align-items: center;
  background: rgba(3, 3, 3, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(3, 3, 3, 0.96);
}

.brand {
  align-items: center;
  display: flex;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  height: 70px;
  object-fit: contain;
  width: 78px;
}

.brand-text {
  display: grid;
  gap: 5px;
  line-height: 1;
  min-width: 0;
  text-transform: uppercase;
}

.brand-title {
  color: var(--gold-bright);
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  font-weight: 850;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.brand-line {
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.52em;
  white-space: nowrap;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 245, 215, 0.86);
  position: relative;
}

.site-nav .nav-cta {
  background: var(--gold-bright);
  border: 1px solid var(--gold-bright);
  color: var(--black);
  font-weight: 950;
  padding: 13px 18px;
}

.site-nav a::after,
.nav-dropdown-toggle::after {
  background: var(--gold-bright);
  bottom: -7px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown-toggle:focus-visible::after {
  transform: scaleX(1);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--black);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: rgba(255, 245, 215, 0.86);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: inherit;
  gap: 8px;
  letter-spacing: inherit;
  list-style: none;
  padding: 0;
  position: relative;
  text-transform: inherit;
}

.nav-dropdown-toggle::before {
  color: var(--gold-bright);
  content: "▾";
  font-size: 0.86em;
  order: 2;
  transition: transform 160ms ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle::before {
  transform: rotate(180deg);
}

.dropdown-menu {
  background: rgba(3, 3, 3, 0.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  min-width: 220px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: calc(100% + 18px);
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-menu {
  gap: 0 26px;
  grid-template-columns: repeat(2, minmax(210px, 1fr));
  min-width: min(620px, calc(100vw - 36px));
  padding: 22px;
}

.nav-dropdown.is-open .dropdown-menu,
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  border-bottom: 1px solid rgba(215, 173, 77, 0.16);
  color: var(--cream);
  font-weight: 950;
  padding: 12px;
}

.dropdown-menu a:last-child {
  border-bottom: 0;
}

.nav-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--cream);
  display: none;
  height: 42px;
  justify-content: center;
  padding: 0;
  width: 42px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 24px;
}

.nav-toggle span:first-child {
  transform: translateY(-5px);
}

.nav-toggle span:last-child {
  transform: translateY(5px);
}

.nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.78fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 44px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(255, 231, 138, 0.52), transparent);
  content: "";
  height: 1px;
  left: clamp(18px, 5vw, 72px);
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  top: 118px;
}

.hero-copy-block {
  max-width: 980px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4rem, 9.4vw, 9.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 0.92;
  margin-bottom: 28px;
  max-width: 1000px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.35rem, 7.8vw, 7.8rem);
  max-width: 900px;
}

.home-hero h1 {
  font-size: clamp(2.9rem, 5.8vw, 5.9rem);
  max-width: 780px;
}

h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.5rem);
  font-weight: 320;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0;
  text-transform: uppercase;
}

h3 {
  color: var(--cream);
  font-size: 1.26rem;
  letter-spacing: 0.08em;
  line-height: 1.12;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(1.14rem, 2vw, 1.55rem);
  margin-bottom: 34px;
  max-width: 650px;
}

.hero-subline {
  color: var(--gold-bright);
  display: none;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.mobile-hero-logo {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border: 1px solid currentColor;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 50px;
  padding: 13px 22px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-soft));
  border-color: var(--gold);
  color: var(--black);
}

.button-secondary {
  background: transparent;
  color: var(--cream);
}

.hero-art {
  align-items: center;
  display: grid;
  justify-items: center;
  position: relative;
}

.hero-art::before {
  background: radial-gradient(circle, rgba(215, 173, 77, 0.08), transparent 62%);
  content: "";
  height: min(520px, 48vw);
  position: absolute;
  width: min(520px, 48vw);
}

.hero-art img {
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.74));
  height: min(560px, 46vw);
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.home-hero {
  min-height: 92svh;
  padding-bottom: 72px;
}

.home-hero .hero-copy {
  max-width: 760px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 42svh;
}

.proof-strip div {
  align-content: center;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 4px;
  min-height: 154px;
  padding: 28px clamp(18px, 4vw, 42px);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  color: var(--gold-bright);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 320;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-band {
  border-bottom: 1px solid var(--line);
  padding: 92px clamp(18px, 5vw, 72px);
}

.home-section-heading {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(150px, 0.26fr) minmax(0, 1fr);
  margin-bottom: 38px;
}

.home-section-heading h2 {
  max-width: 1040px;
}

.offer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-grid article {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  min-height: 300px;
  padding: 26px;
}

.offer-grid span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 78px;
}

.offer-grid p,
.system-list li {
  color: var(--muted);
  font-weight: 700;
}

.work-preview-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-preview-card {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  padding: 18px;
  transition: border-color 180ms ease, transform 180ms ease;
}

.work-preview-card:hover,
.work-preview-card:focus-visible {
  border-color: rgba(255, 231, 138, 0.56);
  transform: translateY(-3px);
}

.work-preview-card img {
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(215, 173, 77, 0.22);
  object-fit: cover;
  width: 100%;
}

.work-preview-card-tall img,
.work-preview-card img.quickstart-concept-image,
.work-preview-card img.bg-ae-logo-preview {
  aspect-ratio: 4 / 3;
  background: #05070c;
  object-fit: contain;
}

.work-preview-card span {
  color: var(--cream);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-preview-flyer-card {
  min-height: 100%;
}

.flyer-mini {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(13, 23, 32, 0.18) calc(50% - 1px), rgba(13, 23, 32, 0.18) calc(50% + 1px), transparent calc(50% + 1px)),
    linear-gradient(135deg, #f8f4ec 0%, #fffaf0 50%, #fcfaf5 100%);
  border: 1px solid rgba(215, 173, 77, 0.22);
  color: #24130d;
  display: grid;
  gap: 14px;
  grid-template-columns: 0.92fr 1fr;
  min-height: 260px;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.flyer-mini::after {
  background: #f3dfb6;
  border: 0;
  bottom: 18px;
  content: "";
  height: 46px;
  left: 18px;
  position: absolute;
  right: 18px;
  top: auto;
  transform: none;
  width: auto;
}

.flyer-mini-photo {
  border: 6px solid #fffaf0;
  box-shadow: 0 12px 26px rgba(13, 23, 32, 0.16);
  height: 138px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.flyer-mini-photo img {
  height: 100%;
  background: #f8f4ec;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.flyer-mini-copy {
  align-content: center;
  display: grid;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.flyer-mini-copy span {
  color: #a17011;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flyer-mini-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 500;
  line-height: 0.9;
}

.flyer-mini-copy small {
  color: #641f36;
  font-size: 0.88rem;
  font-weight: 800;
}

.work-preview-email-card {
  min-height: 100%;
}

.email-mini {
  background:
    radial-gradient(circle at 88% 12%, rgba(40, 117, 134, 0.28), transparent 34%),
    linear-gradient(145deg, rgba(255, 211, 90, 0.12), rgba(100, 31, 54, 0.16) 46%, #070707);
  border: 1px solid rgba(215, 173, 77, 0.22);
  color: var(--cream);
  display: grid;
  gap: 10px;
  min-height: 260px;
  padding: 18px;
}

.email-mini-header {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 82px 1fr;
  margin-bottom: 4px;
}

.email-mini-header img {
  aspect-ratio: auto;
  background: #fffaf0;
  border: 1px solid rgba(215, 173, 77, 0.24);
  object-fit: contain;
  padding: 8px;
}

.email-mini-header span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.email-mini-row {
  align-items: center;
  background: #fbf4e7;
  color: #14110e;
  display: grid;
  gap: 12px;
  grid-template-columns: 38px 1fr;
  padding: 10px 12px;
}

.email-mini-row strong {
  color: #641f36;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.email-mini-row span {
  color: #14110e;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.home-system {
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
}

.system-list {
  border-top: 1px solid var(--line);
  counter-reset: system;
  list-style: none;
  margin: 0;
  padding: 0;
}

.system-list li {
  border-bottom: 1px solid var(--line);
  counter-increment: system;
  padding: 24px 0 24px 62px;
  position: relative;
}

.system-list li::before {
  color: var(--gold-bright);
  content: counter(system, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 950;
  left: 0;
  position: absolute;
  top: 29px;
}

.system-list span {
  color: var(--cream);
  display: block;
  font-size: 1.1rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.home-cta {
  align-items: center;
  display: grid;
  justify-items: center;
  min-height: 60svh;
  padding: 94px clamp(18px, 5vw, 72px);
  text-align: center;
}

.home-cta h2 {
  margin-bottom: 28px;
  max-width: 1040px;
}

.intro {
  align-items: start;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  padding: 72px clamp(18px, 5vw, 72px) 96px;
}

.intro > p {
  font-size: clamp(1.55rem, 3vw, 3rem);
  font-weight: 320;
  letter-spacing: 0.02em;
  line-height: 1.08;
  margin: 0;
  text-transform: uppercase;
}

.intro-metrics {
  display: grid;
  gap: 12px;
}

.intro-metrics a {
  align-items: center;
  background: rgba(8, 8, 8, 0.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  grid-template-columns: 118px 1fr;
  min-height: 124px;
  padding: 22px;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.intro-metrics a:hover,
.intro-metrics a:focus-visible {
  background: rgba(15, 15, 15, 0.96);
  border-color: rgba(255, 231, 138, 0.56);
  transform: translateY(-2px);
}

.intro-metrics strong {
  border-right: 1px solid var(--line);
  display: grid;
  gap: 8px;
  justify-items: start;
  line-height: 1;
  padding-right: 18px;
}

.intro-metrics strong span {
  color: var(--gold-bright);
  font-size: clamp(2.2rem, 4vw, 3.15rem);
  font-weight: 320;
  letter-spacing: 0.02em;
}

.intro-metrics small {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-metrics p {
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.intro-metrics b {
  color: var(--cream);
  display: block;
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.section {
  padding: 96px clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  margin-bottom: 42px;
}

.service-grid,
.work-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.work-panel {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 280px;
  padding: 28px;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-index {
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: auto;
}

.service-card p,
.work-panel p,
.method-copy p,
.ai-feature > p,
.contact p {
  color: var(--muted);
  margin-bottom: 0;
}

.ai-feature {
  align-items: center;
  background: var(--obsidian);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  padding: 84px clamp(18px, 5vw, 72px);
}

.ai-feature h2 {
  max-width: 820px;
}

.ai-feature > p {
  font-size: 1.06rem;
  font-weight: 700;
}

.method {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  color: var(--cream);
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  padding: 104px clamp(18px, 5vw, 72px);
}

.method .eyebrow {
  color: var(--gold-bright);
}

.method-copy p {
  font-size: 1.08rem;
  margin-top: 24px;
  max-width: 680px;
}

.method-list {
  border-top: 1px solid var(--line);
  counter-reset: method;
  list-style: none;
  margin: 0;
  padding: 0;
}

.method-list li {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  counter-increment: method;
  padding: 24px 0 24px 58px;
  position: relative;
}

.method-list li::before {
  color: var(--gold-bright);
  content: counter(method, decimal-leading-zero);
  font-size: 0.8rem;
  font-weight: 950;
  left: 0;
  position: absolute;
  top: 28px;
}

.method-list span {
  color: var(--cream);
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.work {
  background: #090909;
}

.work-panel {
  box-shadow: none;
}

.contact {
  display: grid;
  gap: 60px;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.58fr);
  padding: 104px clamp(18px, 5vw, 72px);
}

.contact-page {
  align-items: start;
  gap: clamp(34px, 6vw, 96px);
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 0.9fr);
  min-height: calc(100svh - 118px);
  overflow: hidden;
  padding-top: 146px;
  position: relative;
}

.consultation-page::before {
  background: linear-gradient(120deg, rgba(255, 231, 138, 0.08), rgba(255, 231, 138, 0) 54%);
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 52%;
}

.consultation-page::after {
  background: rgba(255, 245, 215, 0.04);
  bottom: 0;
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
}

.consultation-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.consultation-copy {
  padding-top: 52px;
}

.consultation-copy h1 {
  font-size: clamp(2.8rem, 5.8vw, 6.6rem);
  max-width: 720px;
}

.consultation-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.42rem);
  font-weight: 700;
  max-width: 760px;
}

.contact h2 {
  margin-bottom: 24px;
}

.contact-form {
  background: rgba(255, 245, 215, 0.955);
  border: 1px solid rgba(255, 231, 138, 0.34);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding: clamp(24px, 4vw, 46px);
  position: relative;
  text-align: left;
  width: 100%;
}

.form-heading {
  border-bottom: 1px solid rgba(5, 5, 5, 0.14);
  color: #050505;
  display: grid;
  gap: 6px;
  padding-bottom: 18px;
  text-transform: uppercase;
}

.form-heading span {
  color: #a17011;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.form-heading strong {
  color: #050505;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 950;
}

.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row-phone {
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
}

label {
  color: rgba(255, 245, 215, 0.78);
  display: grid;
  font-size: 0.82rem;
  font-weight: 850;
  gap: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form label {
  color: #050505;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: none;
}

input,
textarea,
select {
  background: rgba(255, 245, 215, 0.08);
  border: 1px solid var(--line);
  color: var(--cream);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  background: #f7f7f2;
  border: 1px solid rgba(5, 5, 5, 0.18);
  color: #050505;
  font-weight: 750;
}

.contact-form select {
  appearance: auto;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(5, 5, 5, 0.54);
}

.contact-form .button-primary {
  background: #050505;
  border-color: #050505;
  color: var(--gold-bright);
  width: 100%;
}

.contact-form .form-note {
  color: #050505;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 245, 215, 0.42);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus,
.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(255, 231, 138, 0.34);
  outline-offset: 3px;
}

.form-note {
  color: var(--gold-bright);
  font-size: 0.9rem;
  font-weight: 800;
  min-height: 1.4em;
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 72px);
}

.site-footer p {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.footer-brand {
  align-items: center;
  color: var(--gold-bright);
  display: flex;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-legal {
  color: var(--cream);
}

.footer-brand sup {
  color: var(--cream);
  font-size: 0.55em;
  letter-spacing: 0.08em;
  vertical-align: super;
}

.footer-logo {
  height: 64px;
  object-fit: contain;
  width: 72px;
}

.detail-main {
  padding-top: 118px;
}

.detail-hero {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.48fr);
  min-height: 56svh;
  padding: 52px clamp(18px, 5vw, 72px) 72px;
}

.detail-hero h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  line-height: 0.96;
  max-width: 880px;
}

.detail-hero p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  max-width: 680px;
}

.detail-logo {
  filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.72));
  margin-inline: auto;
  max-height: 360px;
  object-fit: contain;
}

.scroll-cue {
  align-items: center;
  border-bottom: 1px solid var(--line);
  color: var(--gold-bright);
  display: grid;
  gap: 8px;
  justify-items: center;
  letter-spacing: 0.14em;
  padding: 18px;
  text-transform: uppercase;
}

.detail-hero + .scroll-cue,
.about-hero + .scroll-cue,
.home-hero + .scroll-cue {
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.86));
  border-bottom: 0;
  margin-top: -82px;
  position: relative;
  z-index: 2;
}

.scroll-cue::after {
  animation: scrollCueBounce 1.45s ease-in-out infinite;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  height: 12px;
  transform: rotate(45deg);
  width: 12px;
}

.scroll-cue span {
  font-size: 0.68rem;
  font-weight: 950;
}

.scroll-cue-inline {
  border-bottom: 0;
  display: inline-grid;
  justify-items: center;
  margin: 22px 0 8px;
  padding: 0;
}

.scroll-cue-between {
  background: rgba(5, 5, 5, 0.92);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: 16px 18px 20px;
}

#audry,
#about-contact,
#capabilities,
#home-proof,
#home-offer,
#home-work,
#home-system,
#home-contact,
#service-action,
#page-action,
#cest-la-vie-website,
#quickstart-boosters,
#cest-la-vie-logo,
#cest-la-vie-brochure,
#cest-la-vie-email-flow,
#bg-ae-logo-design {
  scroll-margin-top: 96px;
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }

  50% {
    transform: translateY(6px) rotate(45deg);
  }
}

.detail-section {
  padding: 86px clamp(18px, 5vw, 72px);
}

.detail-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 230px;
  padding: 28px;
}

.detail-card span {
  color: var(--gold-bright);
  display: block;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.detail-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.capabilities {
  background: var(--obsidian);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  padding: 86px clamp(18px, 5vw, 72px);
}

.capabilities h2 {
  max-width: 1000px;
}

.capabilities > p {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
  margin: 0;
  max-width: 980px;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-list span {
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.service-explorer {
  border-bottom: 1px solid var(--line);
  padding: 86px clamp(18px, 5vw, 72px);
}

.service-explorer-heading {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr);
  margin-bottom: 34px;
}

.service-explorer-heading h2 {
  max-width: 980px;
}

.service-explorer-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
}

.service-directory-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-directory-card {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: inherit;
  display: grid;
  min-height: 260px;
  padding: 26px;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-directory-card:hover,
.service-directory-card:focus-visible {
  background: rgba(16, 16, 16, 0.96);
  border-color: rgba(255, 231, 138, 0.56);
  transform: translateY(-2px);
}

.service-directory-card span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.service-directory-card h3 {
  margin-bottom: 16px;
}

.service-directory-card p {
  color: var(--muted);
  margin: 0;
}

.service-tabs {
  border: 1px solid var(--line);
  display: grid;
}

.service-tab {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  min-height: 62px;
  padding: 18px;
  text-align: left;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.service-tab:last-child {
  border-bottom: 0;
}

.service-tab.is-active,
.service-tab:hover,
.service-tab:focus-visible {
  background: var(--gold-bright);
  color: var(--black);
}

.service-panels {
  min-height: 430px;
}

.service-panel {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  display: grid;
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
}

.service-panel span {
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.service-panel h3 {
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 0.98;
  max-width: 980px;
}

.service-panel p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  max-width: 860px;
}

.service-panel ul {
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.service-panel li {
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.portfolio-section {
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 28px;
  padding: 86px clamp(18px, 5vw, 72px);
}

.portfolio-case {
  background: rgba(8, 8, 8, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 28px;
  padding: 28px;
}

.portfolio-copy {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.48fr);
}

.portfolio-copy h2 {
  max-width: 760px;
}

.portfolio-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
  margin: 0;
  max-width: 680px;
}

.portfolio-note {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.portfolio-image-wrap {
  background: var(--cream);
  border: 1px solid rgba(215, 173, 77, 0.34);
  overflow: hidden;
}

.portfolio-image-wrap-dark {
  background: var(--black);
}

.portfolio-image-wrap img {
  width: 100%;
}

.portfolio-image-contain {
  padding: clamp(10px, 1.6vw, 22px);
}

.portfolio-image-contain img {
  display: block;
  height: auto;
  object-fit: contain;
}

.flyer-showcase {
  align-items: center;
  background: linear-gradient(135deg, #efede8 0%, #d6d0c5 48%, #f8f5ef 100%);
  border: 1px solid rgba(215, 173, 77, 0.34);
  display: flex;
  justify-content: center;
  min-height: min(36vw, 430px);
  overflow: hidden;
  padding: clamp(22px, 3vw, 42px);
  position: relative;
}

.brochure-spread {
  background: #f8f4ec;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.24);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: clamp(280px, 28vw, 410px);
  max-width: 1120px;
  position: relative;
  transform: perspective(1600px) rotateX(3deg);
  width: min(88vw, 1120px);
  z-index: 3;
}

.brochure-spread::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16), rgba(255, 255, 255, 0.32), rgba(0, 0, 0, 0.12));
  content: "";
  height: 100%;
  position: absolute;
  left: calc(50% - 6px);
  top: 0;
  width: 12px;
  z-index: 5;
}

.brochure-page {
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 2.8vw, 38px);
  position: relative;
}

.brochure-page-left {
  background: #fffaf0;
}

.brochure-page-right {
  background: #fcfaf5;
}

.brochure-image-frame {
  background: #fffaf0;
  border: 7px solid #fffaf0;
  box-shadow: 0 14px 34px rgba(13, 20, 22, 0.12);
  height: 58%;
  overflow: hidden;
}

.brochure-image-frame img {
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  width: 100%;
}

.brochure-angled-band {
  background: #fff7e6;
  border: 1px solid rgba(215, 173, 77, 0.28);
  color: #0d1720;
  margin: 20px -42px 0 0;
  padding: clamp(18px, 2.4vw, 28px) clamp(22px, 2.8vw, 34px);
  position: relative;
}

.brochure-angled-band::after {
  background: #d79b32;
  bottom: -10px;
  content: "";
  height: 10px;
  position: absolute;
  right: 0;
  width: 68%;
}

.brochure-angled-band span,
.brochure-heading span,
.brochure-services strong,
.brochure-contact span,
.brochure-mark,
.brochure-callout span {
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brochure-angled-band span,
.brochure-heading span {
  color: #c88a2d;
}

.brochure-angled-band h3,
.brochure-heading h3 {
  letter-spacing: 0;
  text-transform: none;
}

.brochure-angled-band h3 {
  color: #0d1720;
  font-size: clamp(1.26rem, 2.3vw, 2.35rem);
  line-height: 0.94;
  margin: 14px 0 0;
}

.brochure-heading p,
.brochure-services span,
.brochure-contact small {
  font-weight: 760;
  line-height: 1.5;
}

.brochure-contact {
  display: grid;
  gap: 7px;
  margin-top: clamp(18px, 2.2vw, 26px);
}

.brochure-contact span {
  color: #0d1720;
}

.brochure-contact strong {
  color: #0d1720;
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  letter-spacing: 0.04em;
}

.brochure-contact small {
  color: #5f5649;
}

.brochure-heading {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.brochure-heading h3 {
  color: #0d1720;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.28rem, 4.6vw, 4.8rem);
  font-weight: 500;
  line-height: 0.86;
  margin: 14px 0;
}

.brochure-heading p {
  color: #5f5649;
  font-size: clamp(0.92rem, 1.12vw, 1.05rem);
  max-width: 560px;
}

.brochure-feature-row {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 150px;
  margin-top: clamp(18px, 2.4vw, 28px);
}

.brochure-logo-frame {
  background: #fffaf0;
  border: 8px solid #fffaf0;
  box-shadow: 0 16px 34px rgba(13, 20, 22, 0.14);
  height: clamp(130px, 13vw, 178px);
  overflow: hidden;
}

.brochure-logo-frame img {
  height: 100%;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.brochure-callout {
  align-content: center;
  background: #d79b32;
  color: #0d1720;
  display: grid;
  min-height: 116px;
  padding: 16px;
}

.brochure-callout strong {
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
}

.brochure-services {
  background: #0d1720;
  color: #fff8e7;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
  margin: clamp(16px, 2vw, 24px) 0 0;
  padding: 0;
}

.brochure-services div {
  align-items: center;
  background: rgba(255, 248, 231, 0.04);
  border: 1px solid rgba(255, 248, 231, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(142px, 0.38fr) minmax(0, 1fr);
  padding: 11px 13px;
}

.brochure-services strong {
  color: #d79b32;
  display: block;
  font-size: 0.68rem;
  line-height: 1.15;
  margin-bottom: 0;
}

.brochure-services span {
  color: rgba(255, 248, 231, 0.76);
  font-size: 0.74rem;
  line-height: 1.35;
}

.brochure-pullquote {
  border-bottom: 1px solid rgba(13, 23, 32, 0.16);
  border-top: 1px solid rgba(13, 23, 32, 0.16);
  color: #641f36;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 2vw, 1.8rem);
  line-height: 1.05;
  margin-top: 18px;
  padding: 14px 0;
}

.brochure-visit-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.brochure-visit-row span {
  background: rgba(13, 23, 32, 0.08);
  color: #0d1720;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  padding: 8px 9px;
  text-transform: uppercase;
}

.brochure-mark {
  background: #d79b32;
  color: #0d1720;
  display: inline-flex;
  margin-top: 14px;
  padding: 11px 13px;
}

.email-flow-showcase {
  background:
    radial-gradient(circle at 84% 10%, rgba(40, 117, 134, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(255, 211, 90, 0.1), rgba(100, 31, 54, 0.13) 46%, rgba(5, 5, 5, 0.98));
  border: 1px solid rgba(215, 173, 77, 0.34);
  display: grid;
  gap: clamp(18px, 2.6vw, 32px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1fr);
  padding: clamp(18px, 3vw, 38px);
}

.flow-strategy {
  align-content: start;
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid rgba(215, 173, 77, 0.22);
  display: grid;
  gap: 18px;
  padding: clamp(20px, 2.6vw, 34px);
}

.flow-strategy h3 {
  color: var(--cream);
  font-size: clamp(1.8rem, 3.4vw, 4rem);
  line-height: 0.92;
  margin: 0;
  text-transform: uppercase;
}

.flow-strategy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 720;
  line-height: 1.55;
  margin: 0;
}

.strategy-list {
  border-top: 1px solid var(--line);
  display: grid;
  margin-top: 10px;
}

.strategy-list div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 56px 1fr;
  padding: 16px 0;
}

.strategy-list span {
  color: var(--gold-bright);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.strategy-list strong {
  color: var(--cream);
  font-size: 0.94rem;
  line-height: 1.28;
}

.email-stack {
  display: grid;
  gap: 14px;
}

.email-card {
  background: #fbf4e7;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.26);
  color: #14110e;
  display: grid;
  grid-template-columns: 128px 1fr;
  min-height: 158px;
  overflow: hidden;
}

.email-card:nth-child(2) {
  margin-left: clamp(0px, 2.4vw, 42px);
}

.email-card:nth-child(3) {
  margin-left: clamp(0px, 4.8vw, 84px);
}

.email-card:nth-child(4) {
  margin-left: clamp(0px, 2.4vw, 42px);
}

.email-photo {
  background: #15110e;
  min-height: 100%;
  overflow: hidden;
}

.email-photo img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.email-photo-logo {
  background: #fffaf0;
  padding: 12px;
}

.email-photo-logo img {
  object-fit: contain;
}

.email-copy {
  display: grid;
  gap: 8px;
  padding: 17px 19px;
}

.email-copy span {
  color: #b47d2b;
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.email-copy h3 {
  color: #641f36;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2.25vw, 2.3rem);
  font-weight: 500;
  line-height: 0.96;
  margin: 0;
}

.email-copy p {
  color: #594c42;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.42;
  margin: 0;
}

.email-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 4px;
}

.email-meta small {
  background: rgba(40, 117, 134, 0.1);
  color: #287586;
  font-size: 0.56rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  padding: 7px 8px;
  text-transform: uppercase;
}

.sequence-footer {
  align-items: center;
  border: 1px solid rgba(215, 173, 77, 0.3);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 18px;
}

.sequence-footer strong {
  color: var(--gold-bright);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sequence-footer span {
  color: var(--muted);
  font-weight: 800;
}

.about-hero {
  background: var(--black);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.72fr);
  padding: 56px clamp(18px, 5vw, 72px) 78px;
}

.about-hero h1 {
  font-size: clamp(2.45rem, 4.6vw, 5rem);
  line-height: 0.98;
  max-width: 820px;
}

.about-hero > p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  font-weight: 700;
  margin: 0;
}

.contact-page h1 {
  font-size: clamp(2.6rem, 5.4vw, 5.8rem);
  line-height: 0.96;
}

.founders-section {
  display: grid;
  gap: 0;
}

.founder-profile {
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  padding: 82px clamp(18px, 5vw, 72px);
}

.founder-profile-audry {
  background: var(--black);
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
}

.founder-profile-audry .founder-image-wrap {
  order: 2;
}

.founder-image-wrap {
  align-self: stretch;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.founder-image-wrap::after {
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.25));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.founder-image-wrap img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.founder-profile-aboudy .founder-image-wrap img {
  object-position: center 34%;
}

.founder-profile-audry .founder-image-wrap img {
  object-position: center 38%;
}

.founder-copy {
  max-width: 820px;
}

.founder-copy h2 {
  margin-bottom: 12px;
}

.founder-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.02rem;
}

.founder-social {
  color: var(--gold-bright);
  display: inline-flex;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 26px;
  text-transform: uppercase;
}

.detail-cta {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 42px clamp(18px, 5vw, 72px);
}

.detail-cta p {
  color: var(--muted);
  margin: 0;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.back-note {
  margin-top: 28px;
}

.back-note a {
  color: var(--gold-bright);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page {
  min-height: calc(100svh - 118px);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    align-content: start;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    bottom: auto;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    overflow: hidden;
    padding: 10px 18px 16px;
    pointer-events: none;
    position: fixed;
    right: 0;
    top: 78px;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
    width: auto;
    z-index: -1;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    border: 0;
    border-top: 1px solid var(--line);
    font-size: clamp(1rem, 4vw, 1.45rem);
    letter-spacing: 0.1em;
    padding: 11px 0;
  }

  .site-nav .nav-cta {
    border: 1px solid var(--gold-bright);
    justify-content: center;
    margin-top: 12px;
    padding: 14px 16px;
    text-align: center;
  }

  .nav-dropdown {
    border-top: 1px solid var(--line);
    display: grid;
    padding: 11px 0 0;
  }

  .nav-dropdown-toggle {
    color: var(--gold-bright);
    display: flex;
    font-size: 0.76rem;
    justify-content: flex-start;
    letter-spacing: 0.16em;
    margin-bottom: 8px;
    pointer-events: none;
    width: 100%;
  }

  .dropdown-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    min-width: 0;
    opacity: 1;
    padding: 0;
    pointer-events: auto;
    position: static;
    transform: none;
  }

  .mega-menu {
    min-width: 0;
    padding: 0;
  }

  .dropdown-menu a {
    border: 1px solid rgba(215, 173, 77, 0.22);
    color: var(--cream);
    font-size: clamp(0.78rem, 3vw, 1rem);
    padding: 10px;
  }

  .hero,
  .intro,
  .ai-feature,
  .method,
  .contact,
  .detail-hero,
  .about-hero,
  .home-section-heading,
  .home-system,
  .service-explorer-heading,
  .service-explorer-grid,
  .service-directory-grid,
  .portfolio-copy,
  .email-flow-showcase,
  .founder-profile,
  .founder-profile-audry,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .founder-profile-audry .founder-image-wrap {
    order: 0;
  }

  .hero {
    min-height: 100svh;
  }

  .hero-art {
    order: -1;
  }

  .hero-art img {
    height: min(460px, 76vw);
  }

  .service-grid,
  .work-grid,
  .detail-grid,
  .offer-grid,
  .work-preview-grid,
  .proof-strip {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .proof-strip div {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 0;
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .service-card,
  .service-directory-card,
  .work-panel,
  .offer-grid article {
    min-height: 220px;
  }

  .consultation-page::before,
  .consultation-page::after {
    display: none;
  }

  .consultation-copy {
    padding-top: 0;
  }

  .form-row,
  .form-row-phone {
    grid-template-columns: 1fr;
  }

  .flyer-showcase {
    min-height: 560px;
  }

  .brochure-spread {
    grid-template-columns: 1fr;
    transform: perspective(1000px) rotateX(2deg);
    width: min(88vw, 760px);
  }

  .brochure-spread::before {
    display: none;
  }

  .brochure-services {
    grid-template-columns: 1fr;
  }

  .brochure-services div {
    grid-template-columns: 1fr;
    border-bottom: 1px solid rgba(255, 248, 231, 0.18);
  }

  .brochure-services div:last-child {
    border-bottom: 0;
  }

  .email-card,
  .email-card:nth-child(n) {
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    align-items: center;
    padding: 9px 14px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    height: 46px;
    width: 52px;
  }

  .brand-title {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .brand-line {
    display: block;
    font-size: 0.54rem;
    letter-spacing: 0.28em;
  }

  .nav-toggle {
    height: 38px;
    width: 38px;
  }

  .site-nav {
    padding: 10px 14px 14px;
    top: 66px;
  }

  .hero {
    gap: 18px;
    padding: 76px 16px 22px;
  }

  .hero-copy-block {
    text-align: center;
  }

  .work-preview-card img.mobile-contain {
    background: #f8f4ec;
    object-fit: contain;
  }

  .hero .eyebrow {
    text-align: center;
  }

  .hero::before {
    left: 16px;
    right: 16px;
    top: 66px;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.55rem);
    line-height: 0.98;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.25rem);
  }

  .home-hero h1 {
    font-size: clamp(2rem, 8vw, 2.85rem);
  }

  .mobile-hero-logo {
    display: block;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.7));
    height: 142px;
    margin: -6px auto 12px;
    object-fit: contain;
    width: 158px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-subline {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
  }

  .hero-copy {
    font-size: 0.96rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 18px;
  }

  .hero-art img {
    display: none;
  }

  .hero-art::before {
    display: none;
  }

  .button {
    min-height: 46px;
    padding: 12px 16px;
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .intro,
  .section,
  .ai-feature,
  .method,
  .contact,
  .home-band,
  .home-cta,
  .detail-section,
  .capabilities,
  .service-explorer,
  .portfolio-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact,
  .home-band,
  .home-cta,
  .detail-hero,
  .detail-section,
  .capabilities,
  .service-explorer,
  .portfolio-section,
  .about-hero,
  .founder-profile {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact-page {
    padding-top: 96px;
  }

  .consultation-copy h1 {
    font-size: clamp(2.3rem, 10vw, 3.55rem);
  }

  .detail-main {
    padding-top: 72px;
  }

  .home-hero {
    min-height: 100svh;
  }

  .offer-grid span {
    margin-bottom: 42px;
  }

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

  .service-tab {
    border-right: 1px solid var(--line);
    font-size: 0.72rem;
    min-height: 54px;
    padding: 14px;
    text-align: center;
  }

  .service-tab:nth-child(2n) {
    border-right: 0;
  }

  .service-panel,
  .service-panels {
    min-height: 0;
  }

  .contact-page .back-note {
    display: none;
  }

  .detail-hero {
    gap: 26px;
    min-height: 0;
  }

  .detail-hero + .scroll-cue,
  .about-hero + .scroll-cue {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.1), rgba(5, 5, 5, 0.94));
    margin-top: -34px;
    padding: 26px 18px 24px;
  }

  .scroll-cue-between {
    padding: 28px 18px 30px;
  }

  .scroll-cue {
    gap: 12px;
  }

  .detail-hero h1 {
    font-size: clamp(2.15rem, 9vw, 3.25rem);
  }

  .detail-hero p {
    font-size: 1rem;
  }

  .detail-logo {
    max-height: 210px;
  }

  .founder-image-wrap {
    min-height: 420px;
  }

  .intro {
    padding-top: 48px;
  }

  .intro-metrics a {
    align-items: stretch;
    gap: 14px;
    grid-template-columns: 86px 1fr;
    min-height: 0;
    padding: 18px;
  }

  .intro-metrics strong {
    padding-right: 14px;
  }

  .intro-metrics strong span {
    font-size: 2rem;
  }

  .intro-metrics small {
    font-size: 0.6rem;
  }

  .contact-form,
  .service-card,
  .work-panel,
  .detail-card {
    padding: 22px;
  }

  .flyer-mini {
    min-height: 220px;
    padding: 22px;
  }

  .flyer-showcase {
    min-height: 0;
    padding: 26px;
  }

  .brochure-spread {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    transform: none;
    width: 100%;
  }

  .brochure-spread::before {
    display: block;
    left: calc(50% - 3px);
    width: 6px;
  }

  .brochure-page {
    padding: 12px;
  }

  .brochure-image-frame {
    border-width: 4px;
    height: 118px;
  }

  .brochure-angled-band {
    margin: 10px -12px 0 0;
    padding: 12px;
  }

  .brochure-angled-band h3 {
    font-size: clamp(0.9rem, 4.2vw, 1.12rem);
  }

  .brochure-contact {
    gap: 3px;
    margin-top: 12px;
  }

  .brochure-contact strong {
    font-size: 0.85rem;
  }

  .brochure-contact small,
  .brochure-heading p,
  .brochure-services span {
    font-size: 0.58rem;
    line-height: 1.3;
  }

  .brochure-heading h3 {
    font-size: clamp(1.25rem, 8vw, 2rem);
    margin: 8px 0;
  }

  .brochure-feature-row {
    gap: 8px;
    grid-template-columns: 1fr;
    margin-top: 12px;
  }

  .brochure-logo-frame {
    border-width: 4px;
    height: 86px;
  }

  .brochure-callout {
    min-height: 0;
    padding: 8px;
  }

  .brochure-services {
    gap: 5px;
    margin-top: 10px;
  }

  .brochure-services div {
    gap: 4px;
    grid-template-columns: 1fr;
    padding: 7px;
  }

  .brochure-services strong,
  .brochure-mark,
  .brochure-callout span,
  .brochure-contact span,
  .brochure-heading span,
  .brochure-angled-band span {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }

  .brochure-pullquote {
    font-size: 0.8rem;
    margin-top: 10px;
    padding: 8px 0;
  }

  .brochure-visit-row {
    gap: 5px;
    margin-top: 8px;
  }

  .brochure-visit-row span {
    font-size: 0.46rem;
    padding: 5px 6px;
  }

  .brochure-mark {
    margin-top: 8px;
    padding: 7px;
  }

  .email-mini {
    min-height: 220px;
    padding: 16px;
  }

  .email-mini-header {
    grid-template-columns: 72px 1fr;
  }

  .email-flow-showcase {
    padding: 16px;
  }

  .flow-strategy {
    padding: 18px;
  }

  .flow-strategy h3 {
    font-size: clamp(1.55rem, 8vw, 2.6rem);
  }

  .strategy-list div {
    gap: 10px;
    grid-template-columns: 42px 1fr;
    padding: 13px 0;
  }

  .strategy-list strong {
    font-size: 0.82rem;
  }

  .email-card {
    grid-template-columns: 1fr;
  }

  .email-photo {
    height: 144px;
  }

  .email-copy {
    padding: 15px;
  }

  .email-copy h3 {
    font-size: clamp(1.32rem, 7vw, 1.9rem);
  }

  .email-copy p {
    font-size: 0.78rem;
  }

  .detail-actions,
  .detail-actions .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo {
    height: 58px;
    width: 64px;
  }
}
