:root {
  color-scheme: light;
  --navy: #212c42;
  --slate: #374259;
  --cream: #e2dbcd;
  --paper: #f7f4ed;
  --ink: #12151c;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--navy);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12, 17, 27, 0.78), rgba(12, 17, 27, 0));
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-name {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.26em;
}

.brand-line {
  color: var(--cream);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: var(--cream);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  border: 1px solid var(--cream);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.header-cta {
  padding: 0.72rem 1.2rem;
  font-size: 0.88rem;
  font-weight: 650;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--cream);
  color: var(--navy);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.04);
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9, 14, 24, 0.12) 20%, rgba(18, 25, 40, 0.42) 58%, rgba(22, 30, 48, 0.96) 100%),
    linear-gradient(90deg, rgba(10, 14, 22, 0.22), transparent 30%, transparent 70%, rgba(10, 14, 22, 0.2));
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: clamp(7rem, 12vh, 8.5rem);
  left: 50%;
  width: min(32vw, 420px);
  opacity: 0.42;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-logo img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: end;
  width: min(860px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 8rem 0 clamp(3.25rem, 7vh, 5.5rem);
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.65rem, 7vw, 6.4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-intro {
  max-width: 620px;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
  margin-top: 2rem;
}

.primary-button {
  padding: 0.92rem 1.45rem;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
}

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

.price-note {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.secondary-link {
  padding: 0.8rem 0;
  font-size: 0.94rem;
  font-weight: 700;
  text-underline-offset: 0.42rem;
  text-decoration-thickness: 1px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--slate);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.45rem clamp(1rem, 3vw, 2.5rem);
  text-align: center;
}

.proof-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.proof-strip strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1;
}

.proof-strip span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section {
  scroll-margin-top: 2rem;
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 7rem);
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

.section h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.section-about {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.about-copy > p:not(.section-kicker) {
  max-width: 730px;
}

.section-lead {
  margin: 1.8rem 0 1.2rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.signature-card {
  max-width: 600px;
  margin-top: 2.2rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(33, 44, 66, 0.14);
}

.signature-card img {
  width: 100%;
  aspect-ratio: 5 / 1.35;
  object-fit: cover;
  object-position: center 30%;
}

.about-portrait {
  position: relative;
  margin: 0;
}

.about-portrait::before {
  position: absolute;
  z-index: 0;
  inset: -1rem 1rem 1rem -1rem;
  border: 1px solid rgba(33, 44, 66, 0.34);
  content: "";
}

.about-portrait img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.section-services {
  background: var(--cream);
  color: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 0.7fr);
  gap: 2.5rem clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -1.7rem;
}

.section-heading > p:last-child {
  max-width: 560px;
  margin: 0;
  color: rgba(18, 21, 28, 0.72);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(33, 44, 66, 0.26);
}

.service-card {
  min-height: 310px;
  padding: 2rem clamp(1.4rem, 3vw, 2.8rem) 1.5rem;
}

.service-card + .service-card {
  border-left: 1px solid rgba(33, 44, 66, 0.26);
}

.service-number {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-card h3 {
  max-width: 310px;
  margin: 4.5rem 0 1rem;
  color: var(--navy);
  font-size: clamp(1.55rem, 2.5vw, 2.15rem);
  line-height: 1.08;
}

.service-card p {
  margin: 0;
  color: rgba(18, 21, 28, 0.7);
}

.card-links {
  display: grid;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.card-links a,
.text-link,
.video-caption a {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-underline-offset: 0.32rem;
  text-transform: uppercase;
}

.section-listen {
  background: var(--navy);
}

.section-heading-light .section-kicker {
  color: var(--cream);
}

.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.video-card {
  overflow: hidden;
  background: var(--white);
  color: var(--navy);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #06080c;
  object-fit: cover;
}

.video-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem 1.25rem;
}

.video-caption span {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.video-caption h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.video-caption > div {
  display: grid;
  gap: 0.25rem;
}

.video-caption > a {
  flex: 0 0 auto;
}

.section-pricing {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--paper);
  color: var(--ink);
}

.pricing-intro h2 strong {
  display: block;
  color: var(--navy);
  font-weight: 400;
}

.pricing-intro > p:not(.section-kicker) {
  max-width: 520px;
  margin: 1.6rem 0 2rem;
  color: rgba(18, 21, 28, 0.72);
}

.dark-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.dark-button:hover,
.dark-button:focus-visible,
.submit-button:hover,
.submit-button:focus-visible {
  background: transparent;
  color: var(--navy);
  transform: translateY(-2px);
}

.pricing-details {
  border-top: 1px solid rgba(33, 44, 66, 0.26);
}

.pricing-details > div {
  padding: 1.65rem 0;
}

.pricing-details > div + div {
  border-top: 1px solid rgba(33, 44, 66, 0.2);
}

.pricing-details h3 {
  margin: 0 0 1.2rem;
  color: var(--navy);
  font-size: 1.55rem;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.9rem;
}

.check-list li::before {
  position: absolute;
  top: 0.05em;
  left: 0;
  color: var(--slate);
  content: "✓";
  font-weight: 900;
}

.quote-box {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 0 1.5rem;
}

.quote-box p {
  margin: 0;
}

.quote-box .extra-hour {
  grid-column: 2;
  margin-top: 0.9rem;
  color: var(--navy);
}

.recommendation-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 3rem;
  padding: 1.6rem clamp(1.25rem, 6vw, 7rem);
  background: var(--slate);
}

.recommendation-band p {
  margin: 0;
}

.recommendation-band a {
  flex: 0 0 auto;
  font-weight: 750;
  text-underline-offset: 0.35rem;
}

.section-contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(440px, 1.12fr);
  gap: clamp(3rem, 8vw, 9rem);
  background: var(--cream);
  color: var(--ink);
}

.contact-intro h2 {
  font-size: clamp(2.3rem, 4.4vw, 4.25rem);
}

.contact-intro > p:not(.section-kicker) {
  max-width: 560px;
  margin: 1.6rem 0 2rem;
  color: rgba(18, 21, 28, 0.72);
}

.contact-list {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.35rem;
  font-style: normal;
}

.contact-list a {
  color: var(--navy);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3rem;
}

.contact-list span {
  margin-top: 0.65rem;
  color: rgba(18, 21, 28, 0.68);
}

.contact-page-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-underline-offset: 0.35rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 2rem;
}

.social-links a {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-underline-offset: 0.32rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 3.5vw, 3rem);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(33, 44, 66, 0.13);
}

.quote-form label:not(.consent-line) {
  display: grid;
  gap: 0.42rem;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(33, 44, 66, 0.25);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: normal;
}

.quote-form input,
.quote-form select {
  min-height: 3.15rem;
  padding: 0.65rem 0.75rem;
}

.quote-form textarea {
  min-height: 9rem;
  padding: 0.75rem;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--navy);
  outline: 2px solid rgba(55, 66, 89, 0.2);
  outline-offset: 1px;
}

.consent-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: start;
  color: rgba(18, 21, 28, 0.7);
  cursor: pointer;
  font-size: 0.82rem;
  line-height: 1.5;
}

.consent-line input {
  width: 1rem;
  min-height: 1rem;
  margin-top: 0.18rem;
  accent-color: var(--navy);
}

.consent-line a {
  color: var(--navy);
  font-weight: 750;
  text-underline-offset: 0.2rem;
}

.submit-button {
  width: 100%;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-botcheck {
  display: none;
}

.form-note,
.form-status {
  margin: -0.35rem 0 0;
  color: rgba(18, 21, 28, 0.58);
  font-size: 0.78rem;
  text-align: center;
}

.form-status:not(:empty) {
  color: var(--navy);
  font-weight: 750;
}

.form-status.is-success {
  color: #17613f;
}

.form-status.is-error {
  color: #9b2335;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem clamp(1.25rem, 6vw, 7rem);
  background: #121a2a;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.site-footer div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.site-footer strong {
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  max-width: 660px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  text-underline-offset: 0.28rem;
}

.legal-main {
  min-height: 100svh;
  padding: clamp(9rem, 15vh, 12rem) clamp(1.25rem, 6vw, 7rem) clamp(4rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 82% 8%, rgba(226, 219, 205, 0.16), transparent 25rem),
    linear-gradient(180deg, #182338 0, var(--navy) 24rem, var(--paper) 24rem);
  color: var(--ink);
}

.legal-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
}

.legal-heading .section-kicker {
  color: var(--cream);
}

.legal-heading h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.98;
  text-align: left;
}

.legal-heading p:last-child {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.legal-content {
  display: grid;
  gap: 1rem;
  width: min(900px, 100%);
  margin: 0 auto;
}

.legal-card {
  padding: clamp(1.5rem, 4vw, 2.7rem);
  border: 1px solid rgba(33, 44, 66, 0.13);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(33, 44, 66, 0.08);
}

.legal-card h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.legal-card h3 {
  margin: 1.7rem 0 0.5rem;
  color: var(--navy);
  font-size: 1rem;
}

.legal-card p,
.legal-card li,
.legal-card address {
  color: rgba(18, 21, 28, 0.77);
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card address {
  font-style: normal;
}

.legal-card a {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 0.22rem;
}

.legal-card ul {
  padding-left: 1.2rem;
}

.legal-note {
  padding-left: 1rem;
  border-left: 3px solid var(--cream);
}

.legal-updated {
  color: rgba(18, 21, 28, 0.56);
  font-size: 0.82rem;
}

.cookie-notice {
  position: fixed;
  z-index: 50;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(226, 219, 205, 0.38);
  background: rgba(18, 26, 42, 0.98);
  color: var(--white);
  box-shadow: 0 18px 60px rgba(6, 10, 18, 0.38);
}

.cookie-notice strong {
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cookie-notice p {
  margin: 0.2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.45;
}

.cookie-notice-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.85rem;
}

.cookie-notice a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  text-underline-offset: 0.22rem;
}

.cookie-notice button {
  min-height: 2.65rem;
  padding: 0.65rem 1rem;
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--navy);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-body {
  background: var(--paper);
}

.site-header-inner {
  background: linear-gradient(180deg, rgba(12, 17, 27, 0.9), rgba(12, 17, 27, 0.35));
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.contact-landing {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.7fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  min-height: calc(100svh - 7rem);
  padding: clamp(10rem, 17vh, 13rem) clamp(1.25rem, 6vw, 7rem) clamp(5rem, 9vw, 8rem);
  background:
    radial-gradient(circle at 72% 22%, rgba(226, 219, 205, 0.12), transparent 28%),
    linear-gradient(135deg, #151f32 0%, var(--navy) 52%, var(--slate) 100%);
  color: var(--white);
}

.contact-landing-copy .section-kicker {
  color: var(--cream);
}

.contact-landing-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  text-align: left;
}

.contact-landing-copy > p:not(.section-kicker) {
  max-width: 650px;
  margin: 1.6rem 0 2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.email-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
  max-width: 620px;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.email-card:hover,
.email-card:focus-visible {
  border-color: var(--cream);
  background: rgba(255, 255, 255, 0.12);
}

.email-card span {
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.email-card strong {
  font-size: clamp(1rem, 2.1vw, 1.35rem);
  overflow-wrap: anywhere;
}

.contact-quote-button {
  margin-top: 1rem;
}

.social-panel {
  padding: clamp(1.5rem, 3.5vw, 3rem);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(5, 9, 16, 0.28);
}

.social-panel .section-kicker {
  margin-top: 1.5rem;
}

.social-panel h2 {
  margin: 0 0 1.8rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
}

.contact-logo {
  width: 100%;
  aspect-ratio: 4.2 / 1;
  overflow: hidden;
  background: var(--white);
}

.contact-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.social-stack {
  display: grid;
  border-top: 1px solid rgba(33, 44, 66, 0.2);
}

.social-stack a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(33, 44, 66, 0.2);
  color: var(--navy);
  text-decoration: none;
}

.social-stack a:hover strong,
.social-stack a:focus-visible strong {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.social-stack span {
  font-weight: 800;
}

.social-stack strong {
  color: rgba(33, 44, 66, 0.66);
  font-size: 0.82rem;
}

.inner-body {
  background: var(--paper);
  color: var(--ink);
}

.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: min(72svh, 760px);
  padding: clamp(10rem, 19vh, 14rem) clamp(1.25rem, 6vw, 7rem) clamp(4rem, 8vw, 7rem);
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  isolation: isolate;
}

.page-hero-photo {
  background-image:
    linear-gradient(180deg, rgba(10, 14, 22, 0.22), rgba(18, 26, 42, 0.9)),
    url("assets/hero-desktop.png");
  background-position: center 28%;
  background-size: cover;
}

.page-hero-simple {
  min-height: min(62svh, 650px);
  background:
    radial-gradient(circle at 78% 25%, rgba(226, 219, 205, 0.16), transparent 26%),
    linear-gradient(135deg, #151f32, var(--navy) 55%, var(--slate));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
}

.page-hero .section-kicker,
.page-cta .section-kicker,
.watch-header .section-kicker {
  color: var(--cream);
}

.page-hero h1,
.watch-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  text-align: left;
}

.page-hero-content > p:last-child,
.watch-header > p:last-child {
  max-width: 720px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.page-section {
  padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 6vw, 7rem);
}

.page-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  background: var(--paper);
}

.rich-copy {
  max-width: 800px;
}

.rich-copy h2,
.related-section h2,
.page-fact-card h2,
.feature-video-card h2,
.watch-details h2 {
  margin: 0 0 1.25rem;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.03;
  text-wrap: balance;
}

.rich-copy h2:not(:first-of-type) {
  margin-top: 2.8rem;
}

.rich-copy p {
  color: rgba(18, 21, 28, 0.76);
  font-size: 1.04rem;
}

.rich-copy a {
  color: var(--navy);
  text-underline-offset: 0.25rem;
}

.page-fact-card {
  position: sticky;
  top: 1.5rem;
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 3.5vw, 3rem);
  background: var(--cream);
  box-shadow: 0 24px 70px rgba(33, 44, 66, 0.12);
}

.page-fact-card .section-kicker,
.page-fact-card h2,
.page-fact-card .check-list {
  margin: 0;
}

.fact-price {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.05;
}

.related-section {
  background: var(--cream);
}

.related-section > h2 {
  max-width: 850px;
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(33, 44, 66, 0.25);
}

.related-grid > a {
  display: grid;
  gap: 2.6rem;
  min-height: 220px;
  padding: 1.7rem clamp(1.25rem, 3vw, 2.5rem);
  color: var(--navy);
  text-decoration: none;
}

.related-grid > a + a {
  border-left: 1px solid rgba(33, 44, 66, 0.25);
}

.related-grid span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid strong {
  align-self: end;
  max-width: 440px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.related-grid > a:hover strong,
.related-grid > a:focus-visible strong {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem 4rem;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--navy);
  color: var(--white);
}

.page-cta h2 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.page-cta .primary-button {
  flex: 0 0 auto;
}

.video-index {
  display: grid;
  gap: 1px;
  background: rgba(33, 44, 66, 0.22);
  padding: 0;
}

.feature-video-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--paper);
}

.feature-video-card-reverse {
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--cream);
}

.feature-video-card-reverse .video-poster-link {
  grid-column: 2;
  grid-row: 1;
}

.feature-video-card h2 {
  margin-bottom: 1rem;
}

.feature-video-card p:not(.section-kicker) {
  color: rgba(18, 21, 28, 0.72);
}

.video-poster-link {
  position: relative;
  display: block;
  overflow: hidden;
  background: #07090e;
  text-decoration: none;
}

.video-poster-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: opacity 180ms ease, transform 240ms ease;
}

.video-poster-link span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.72rem 1rem;
  background: rgba(18, 26, 42, 0.9);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.video-poster-link:hover img,
.video-poster-link:focus-visible img {
  opacity: 0.82;
  transform: scale(1.015);
}

.watch-body {
  background: var(--navy);
}

.watch-main {
  padding-top: clamp(9rem, 16vh, 12rem);
  background: var(--navy);
  color: var(--white);
}

.watch-header {
  padding: 0 clamp(1.25rem, 6vw, 7rem) clamp(2.5rem, 5vw, 4rem);
}

.watch-header h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.8rem);
}

.watch-header .section-kicker a {
  text-underline-offset: 0.3rem;
}

.watch-player {
  padding: 0 clamp(1.25rem, 6vw, 7rem);
}

.watch-player video {
  width: 100%;
  max-height: 78svh;
  aspect-ratio: 16 / 9;
  background: #05070b;
}

.watch-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 5rem;
  align-items: end;
  margin-top: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 7vw, 6rem) clamp(1.25rem, 6vw, 7rem);
  background: var(--paper);
  color: var(--ink);
}

.watch-details > div {
  max-width: 780px;
}

.watch-details p:last-child {
  color: rgba(18, 21, 28, 0.72);
}

.watch-details a:not(.dark-button) {
  color: var(--navy);
  text-underline-offset: 0.25rem;
}

.review-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: var(--paper);
}

.review-stat {
  display: grid;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 4rem);
  background: var(--navy);
  color: var(--white);
}

.review-stat strong {
  color: var(--cream);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
}

.review-stat span {
  color: rgba(255, 255, 255, 0.74);
}

:focus-visible {
  outline: 3px solid var(--cream);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .site-header {
    gap: 1rem;
  }

  .main-nav {
    gap: 1rem;
  }

  .main-nav a {
    font-size: 0.7rem;
  }

  .header-cta {
    padding-inline: 0.85rem;
  }
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    margin-right: auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0.5rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 0.7rem 1rem;
    background: rgba(18, 26, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.28);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.75rem 0;
    font-size: 0.76rem;
  }

  .section-about,
  .section-pricing,
  .section-contact,
  .contact-landing,
  .page-copy-grid,
  .review-section,
  .feature-video-card,
  .feature-video-card-reverse,
  .watch-details {
    grid-template-columns: 1fr;
  }

  .contact-landing {
    padding-top: 10rem;
  }

  .about-portrait {
    width: min(100%, 540px);
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding-block: 1.6rem 2.2rem;
  }

  .service-card + .service-card {
    border-top: 1px solid rgba(33, 44, 66, 0.26);
    border-left: 0;
  }

  .service-card h3 {
    margin-top: 2.5rem;
  }

  .page-fact-card {
    position: static;
  }

  .feature-video-card-reverse .video-poster-link {
    grid-column: 1;
    grid-row: auto;
  }

  .page-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .watch-details {
    align-items: start;
  }

  .site-footer {
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 1rem;
  }

  .brand-line {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-media img {
    object-position: center 20%;
  }

  .hero-logo {
    top: auto;
    bottom: max(1.1rem, env(safe-area-inset-bottom));
    width: min(56vw, 240px);
    opacity: 0.72;
  }

  .hero-content {
    width: min(100% - 2rem, 560px);
    padding-bottom: calc(7.25rem + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-intro {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .primary-button {
    width: 100%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    justify-content: flex-start;
    padding: 1rem 1.25rem;
    text-align: left;
  }

  .proof-strip div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .proof-strip strong {
    min-width: 3.2rem;
    font-size: 1.65rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .section-heading .section-kicker {
    margin-bottom: 0;
  }

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

  .video-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }

  .video-caption > a {
    margin-top: 0.55rem;
  }

  .quote-box {
    grid-template-columns: 1fr;
  }

  .quote-box .extra-hour {
    grid-column: 1;
  }

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

  .quote-form {
    padding: 1.2rem;
  }

  .contact-landing-copy h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .social-stack a {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.15rem;
  }

  .page-hero {
    min-height: 72svh;
    padding-top: 9.5rem;
  }

  .page-hero-photo {
    background-position: 52% 20%;
  }

  .page-hero h1,
  .watch-header h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-grid > a {
    min-height: 180px;
  }

  .related-grid > a + a {
    border-top: 1px solid rgba(33, 44, 66, 0.25);
    border-left: 0;
  }

  .page-cta .primary-button,
  .watch-details .dark-button {
    width: 100%;
  }

  .feature-video-card {
    gap: 1.7rem;
  }

  .watch-main {
    padding-top: 8.5rem;
  }

  .watch-player {
    padding: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-main {
    padding-top: 8.5rem;
    background: linear-gradient(180deg, #182338 0, var(--navy) 22rem, var(--paper) 22rem);
  }

  .cookie-notice {
    align-items: stretch;
    flex-direction: column;
    gap: 0.85rem;
  }

  .cookie-notice-actions {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
