*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --off: #f1f0ee;
  --off-strong: #e9e7e3;
  --muted: rgba(0, 0, 0, 0.48);
  --muted-strong: rgba(0, 0, 0, 0.66);
  --border: rgba(0, 0, 0, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --content-max: 1680px;
  --content-gutter: max(clamp(24px, 4vw, 48px), calc((100vw - var(--content-max)) / 2));
  --portrait-ratio: 4 / 5;
  --site-header-height: 98px;
  --visible-viewport-height: 100svh;
  --safe-viewport-height: calc(var(--visible-viewport-height) - var(--site-header-height));
  --safe-portrait-width: calc(var(--safe-viewport-height) * 0.8);
  color-scheme: light;
}

@supports (height: 100dvh) {
  :root {
    --visible-viewport-height: 100dvh;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: var(--sans);
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

picture {
  display: block;
  max-width: 100%;
  min-width: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 200;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.urgency-bar {
  background: var(--black);
  padding: 10px 20px;
  text-align: center;
}

.urgency-bar p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.urgency-bar strong {
  color: var(--white);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: var(--content-max);
  min-width: 0;
  margin-inline: auto;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(12px);
}

.nav-logo,
.nav-link,
.nav-cta {
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo {
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 20px;
  max-width: 100%;
  min-width: 0;
}

.nav-link {
  color: var(--muted-strong);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--black);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 22px;
  background: var(--black);
  border: 1px solid var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-cta:hover {
  background: transparent;
  color: var(--black);
}

.hero {
  display: grid;
  width: 100%;
  max-width: var(--content-max);
  min-width: 0;
  min-height: var(--safe-viewport-height);
  margin-inline: auto;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  background: var(--white);
}

.hero-media {
  position: relative;
  justify-self: center;
  align-self: center;
  width: min(100%, var(--safe-portrait-width));
  max-width: 100%;
  min-width: 0;
  max-height: var(--safe-viewport-height);
  aspect-ratio: var(--portrait-ratio);
  overflow: hidden;
  background: var(--black);
}

.hero-media picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-media img {
  object-fit: cover;
  object-position: center 10%;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.05);
  will-change: transform;
}

.hero-panel {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: clamp(34px, 4.5vw, 64px);
}

.hero-panel-inner {
  width: 100%;
  max-width: 590px;
  min-width: 0;
}

.eyebrow,
.section-label,
.urgency-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 20px;
}

.hero-h1 {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(50px, 5.1vw, 78px);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-lead {
  margin-bottom: 12px;
  padding-left: 18px;
  border-left: 3px solid currentColor;
  font-family: var(--serif);
  font-size: clamp(25px, 2.7vw, 38px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.14;
}

.hero-sub {
  max-width: 500px;
  margin-bottom: 22px;
  color: rgba(0, 0, 0, 0.64);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: 26px;
  list-style: none;
}

.hero-meta li {
  padding: 8px 12px;
  border: 1px solid var(--border);
  background: var(--off);
  color: rgba(0, 0, 0, 0.55);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.btn-primary,
.btn-white,
.btn-tier,
.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn-primary {
  padding: 0 34px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.btn-primary:hover {
  background: transparent;
  color: var(--black);
}

.image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.strip-img {
  justify-self: center;
  width: min(100%, var(--safe-portrait-width));
  aspect-ratio: var(--portrait-ratio);
  overflow: hidden;
  background: var(--off);
}

.hero-media picture,
.strip-img picture,
.why-image picture,
.service-card-image picture,
.testimonial-avatar picture,
.cta-image picture {
  width: 100%;
  height: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 0;
}

.strip-img img,
.why-image img,
.service-card-image img,
.testimonial-avatar img,
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip-img img {
  transition: transform 0.6s ease;
}

.strip-img:hover img {
  transform: scale(1.04);
}

.object-y-8 {
  object-position: center 8%;
}

.object-y-12 {
  object-position: center 12%;
}

.object-y-18 {
  object-position: center 18%;
}

.object-y-20 {
  object-position: center 20%;
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  padding: 100px var(--content-gutter);
}

.why-image {
  position: relative;
  justify-self: center;
  width: min(100%, var(--safe-portrait-width));
  aspect-ratio: var(--portrait-ratio);
  max-height: var(--safe-viewport-height);
  overflow: hidden;
  background: var(--off);
}

.why-image-label {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 70px 32px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
}

.why-image-label span {
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.section-label {
  margin-bottom: 14px;
}

.why-text h2,
.services-header h2,
.process h2,
.testimonials h2,
.urgency-left h2,
.cta-text h2 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.08;
}

.why-text h2 {
  margin-bottom: 30px;
  font-size: clamp(36px, 3.8vw, 56px);
}

em {
  font-style: italic;
}

.why-text p,
.services-header p,
.lifestyle-intro p,
.service-card-body p,
.step-desc,
.cta-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
}

.why-text p {
  margin-bottom: 18px;
  color: rgba(0, 0, 0, 0.65);
}

.why-text p:last-of-type {
  margin-bottom: 36px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 38px;
}

.use-case-item {
  padding: 28px 24px;
  border: 1px solid var(--border);
}

.uc-icon {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.uc-desc {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.services {
  background: var(--off);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
  padding: 80px var(--content-gutter) 0;
}

.services-header h2 {
  font-size: clamp(40px, 4.2vw, 64px);
}

.services-header p {
  max-width: 350px;
  color: var(--muted);
}

.service-block {
  padding: 0 var(--content-gutter) 64px;
}

.service-divider {
  display: block;
  padding: 32px 0 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 1px;
  border: 1px solid var(--border);
  background: var(--border);
}

.lifestyle-intro {
  padding: 52px 44px;
  background: var(--black);
}

.lifestyle-intro h3,
.service-card-body h3 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.05;
}

.lifestyle-intro h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(40px, 4vw, 50px);
}

.lifestyle-intro p {
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.58);
}

.lifestyle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

.lifestyle-tag {
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lifestyle-tag.highlight {
  border-color: var(--white);
  color: var(--white);
  font-weight: 500;
}

.btn-white {
  padding: 0 28px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.btn-white:hover {
  background: var(--white);
  color: var(--black);
}

.lifestyle-tiers {
  display: flex;
  flex-direction: column;
  background: var(--white);
}

.tier {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
}

.tier:last-child {
  border-bottom: 0;
}

.tier.featured {
  background: #f3f2ef;
}

.tier-name {
  margin-bottom: 4px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 300;
}

.tier-time {
  display: block;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.tier-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.tier-details li {
  padding: 4px 10px;
  background: var(--off);
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
}

.tier-right {
  flex-shrink: 0;
  text-align: right;
}

.tier-price {
  display: block;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 300;
}

.btn-tier {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--black);
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.btn-tier:hover {
  background: var(--black);
  color: var(--white);
}

.btn-tier-dark {
  background: var(--black);
  color: var(--white);
}

.btn-tier-dark:hover {
  background: transparent;
  color: var(--black);
}

.two-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.service-card-image {
  width: min(100%, var(--safe-portrait-width));
  margin-inline: auto;
  aspect-ratio: var(--portrait-ratio);
  max-height: var(--safe-viewport-height);
  overflow: hidden;
  background: var(--off-strong);
}

.service-card-image img {
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.03);
}

.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 36px 32px;
}

.service-card-body h3 {
  margin-bottom: 14px;
  font-size: clamp(34px, 3.4vw, 40px);
}

.service-card-body p {
  margin-bottom: 28px;
  color: rgba(0, 0, 0, 0.6);
}

.mini-tiers,
.headshot-tiers {
  display: grid;
  gap: 1px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  background: var(--border);
}

.service-card-body > .btn-tier {
  margin-top: auto;
  align-self: flex-start;
}

.mini-tiers {
  grid-template-columns: repeat(3, 1fr);
}

.headshot-tiers {
  grid-template-columns: repeat(2, 1fr);
}

.mini-tier {
  padding: 20px 18px;
  background: var(--white);
  transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.mini-tier:hover,
.mini-tier:focus-within {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.mini-tier-name,
.mini-tier-price,
.mini-tier-time {
  display: block;
}

.mini-tier-name {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mini-tier-price {
  margin-bottom: 6px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 300;
}

.mini-tier-time {
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
  transition: color 0.28s ease;
}

.mini-tier:hover .mini-tier-name,
.mini-tier:focus-within .mini-tier-name {
  color: rgba(255, 255, 255, 0.5);
}

.mini-tier:hover .mini-tier-price,
.mini-tier:focus-within .mini-tier-price {
  color: var(--white);
}

.mini-tier:hover .mini-tier-time,
.mini-tier:focus-within .mini-tier-time {
  color: rgba(255, 255, 255, 0.45);
}

.process {
  padding: 80px var(--content-gutter);
  background: var(--white);
}

.process h2,
.testimonials h2 {
  margin-bottom: 52px;
  font-size: clamp(36px, 3.8vw, 56px);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}

.step {
  padding: 48px 40px 48px 0;
  border-right: 1px solid var(--border);
}

.step:nth-child(2) {
  padding-left: 40px;
}

.step:last-child {
  padding-right: 0;
  padding-left: 40px;
  border-right: 0;
}

.step-num {
  display: block;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.07);
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
}

.step-title {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.step-desc {
  color: rgba(0, 0, 0, 0.55);
}

.testimonials {
  padding: 80px var(--content-gutter) 64px;
  background: var(--off);
}

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

.testimonial {
  padding: 44px 36px;
  border: 1px solid var(--border);
  background: var(--white);
}

.testimonial-avatar {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  overflow: hidden;
  border: 2px solid var(--border);
  border-radius: 50%;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 20px;
  color: #a8793d;
  font-size: 15px;
}

.testimonial-text {
  margin-bottom: 24px;
  color: rgba(0, 0, 0, 0.75);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
}

.testimonial-name {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urgency-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 52px var(--content-gutter);
  background: #100b05;
}

.urgency-label {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.32);
}

.urgency-left h2 {
  color: var(--white);
  font-size: clamp(30px, 3vw, 44px);
}

.urgency-stats {
  display: flex;
  gap: clamp(28px, 5vw, 48px);
}

.urgency-num {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 300;
  line-height: 1;
}

.urgency-desc {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 80px);
  padding: 100px var(--content-gutter);
  background: var(--black);
}

.cta-text .eyebrow {
  color: rgba(255, 255, 255, 0.3);
}

.cta-text h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 60px);
}

.cta-text p {
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.48);
}

.cta-text p strong {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 400;
}

.btn-light {
  padding: 0 34px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
}

.cta-image {
  justify-self: center;
  width: min(100%, var(--safe-portrait-width));
  aspect-ratio: var(--portrait-ratio);
  max-height: var(--safe-viewport-height);
  overflow: hidden;
  background: #171717;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px var(--content-gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: var(--black);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 36px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero-panel {
    padding: 40px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .mini-tiers {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 901px) {
  .two-service-grid .service-card-body h3 {
    min-height: 2.1em;
  }

  .why-text .btn-primary {
    transform: translateY(-18px);
  }
}

@media (min-width: 901px) and (max-height: 820px) {
  .hero-panel {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .hero-h1 {
    margin-bottom: 14px;
    font-size: clamp(46px, 4.6vw, 68px);
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: clamp(23px, 2.25vw, 32px);
  }

  .hero-sub {
    margin-bottom: 16px;
    line-height: 1.62;
  }

  .hero-meta {
    margin-bottom: 18px;
  }

  .hero-meta li {
    padding: 7px 10px;
  }
}

@media (max-width: 900px) {
  .site-nav {
    padding: 16px 20px;
  }

  .hero {
    position: relative;
    max-width: 100%;
    min-height: var(--safe-viewport-height);
    margin-inline: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    background: var(--black);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    max-height: none;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    justify-self: auto;
    align-self: auto;
  }

  .hero-media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.74));
  }

  .hero-media picture,
  .hero-media img {
    height: 100%;
    min-height: 100%;
  }

  .hero-media img {
    object-position: center top;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.08);
  }

  .hero-panel {
    position: relative;
    z-index: 1;
    align-items: flex-end;
    min-height: var(--safe-viewport-height);
    padding: 34px 24px;
    color: var(--white);
  }

  .hero-panel-inner {
    max-width: 620px;
  }

  .hero .eyebrow,
  .hero-sub,
  .hero-meta li {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-lead {
    border-color: var(--white);
  }

  .hero-meta li {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(0, 0, 0, 0.28);
  }

  .hero .btn-primary {
    border-color: var(--white);
    background: var(--white);
    color: var(--black);
  }

  .hero .btn-primary:hover {
    background: transparent;
    color: var(--white);
  }

  .image-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .why {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 64px;
  }

  .why-image {
    justify-self: center;
  }

  .why-text {
    padding: 64px 24px 0;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 64px;
  }

  .services-header p {
    max-width: 620px;
  }

  .lifestyle-grid,
  .two-service-grid,
  .process-steps,
  .testimonials-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .cta-band {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    background:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.82)),
      url("assets/cta-editorial-portrait-800.webp");
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.82)),
      -webkit-image-set(
        url("assets/cta-editorial-portrait-800.webp") 1x,
        url("assets/cta-editorial-portrait-1200.webp") 2x
      );
    background-image:
      linear-gradient(to bottom, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.82)),
      image-set(
        url("assets/cta-editorial-portrait-800.webp") 1x,
        url("assets/cta-editorial-portrait-1200.webp") 2x
      );
    background-position: center 12%;
    background-size: cover;
  }

  .cta-text {
    position: relative;
    z-index: 1;
    max-width: 620px;
  }

  .cta-text .eyebrow {
    color: rgba(255, 255, 255, 0.68);
  }

  .cta-text p {
    color: rgba(255, 255, 255, 0.76);
  }

  .cta-text p strong {
    color: rgba(255, 255, 255, 0.96);
  }

  .cta-image {
    display: none;
  }

  .process,
  .testimonials {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .process h2,
  .testimonials h2 {
    margin-bottom: 44px;
  }

  .step,
  .step:nth-child(2),
  .step:last-child {
    padding: 36px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .urgency-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .cta-band {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media (max-width: 620px) {
  .urgency-bar {
    padding: 8px 12px;
  }

  .urgency-bar p {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .site-nav {
    gap: 12px;
    padding: 12px 14px;
  }

  .nav-logo {
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .nav-actions {
    gap: 10px;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 10px;
    letter-spacing: 0.11em;
  }

  .hero-panel {
    padding: 28px 20px 30px;
  }

  .hero-h1 {
    margin-bottom: 14px;
    font-size: clamp(42px, 12.5vw, 54px);
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: clamp(22px, 6.4vw, 28px);
  }

  .hero-sub {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.62;
  }

  .hero-meta {
    margin-bottom: 20px;
  }

  .hero-meta li {
    padding: 7px 9px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .btn-primary,
  .btn-light {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    letter-spacing: 0.16em;
  }

  .image-strip {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .why-image-label {
    padding: 60px 22px 22px;
  }

  .lifestyle-intro,
  .service-card-body,
  .testimonial {
    padding: 34px 24px;
  }

  .tier {
    flex-direction: column;
    padding: 28px 24px;
  }

  .tier-right {
    width: 100%;
    text-align: left;
  }

  .btn-tier {
    white-space: normal;
  }

  .headshot-tiers {
    grid-template-columns: 1fr;
  }

  .urgency-stats {
    width: 100%;
    justify-content: space-between;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 620px) and (max-height: 720px) {
  .hero-panel {
    padding: 18px 18px 20px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero-h1 {
    margin-bottom: 10px;
    font-size: 44px;
  }

  .hero-lead {
    margin-bottom: 8px;
    font-size: 23px;
  }

  .hero-sub {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-meta {
    display: none;
  }
}

@media (max-width: 900px) and (max-height: 520px) {
  .hero-panel {
    padding: 14px 20px;
  }

  .hero .eyebrow,
  .hero-sub,
  .hero-meta {
    display: none;
  }

  .hero-h1 {
    margin-bottom: 8px;
    font-size: 38px;
  }

  .hero-lead {
    margin-bottom: 10px;
    font-size: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-media img,
  .strip-img img,
  .service-card-image img {
    transform: none !important;
    will-change: auto;
  }
}
