/* Design base: Vicky Ross landing — typography + layout rhythm */

:root {
  --color_bg: #faf8f5;
  --color_bg_muted: #efede9;
  --color_surface: #ffffff;
  --color_text: #2a2724;
  --color_text_soft: #5c5854;
  --color_accent: #6b6358;
  --color_btn: #3d3834;
  --color_btn_text: #faf8f5;
  --hero_overlay: rgba(28, 26, 24, 0.3);
  --hero_fallback: #8a847c;
  --font_stack: "Work Sans", system-ui, sans-serif;
  --space_section: clamp(4rem, 10vw, 7rem);
  --space_gap: clamp(1.25rem, 3vw, 2rem);
  --content_max_width: 1320px;
  --content_gutter: clamp(1.25rem, 5vw, 2rem);
  --photo_radius: 1.75rem;
}

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

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 1rem;
}

.content_shell {
  width: 100%;
  max-width: var(--content_max_width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--content_gutter);
  padding-right: var(--content_gutter);
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font_stack);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color_text);
  background: var(--color_bg);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: var(--photo_radius);
}

h1,
h2,
h3 {
  font-family: var(--font_stack);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

p {
  margin: 0 0 var(--space_gap);
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--color_accent);
  outline-offset: 3px;
}

.site_header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 0.75rem;
}

.header_bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
}

.site_nav {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.site_nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site_nav_list a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color_btn_text);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.site_nav_list a:hover {
  opacity: 0.88;
}

.site_nav_list a:focus-visible {
  outline-color: var(--color_btn_text);
  outline-offset: 3px;
}

.site_logo {
  flex-shrink: 0;
  font-family: var(--font_stack);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color_btn_text);
  text-decoration: none;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.site_logo:focus-visible {
  outline-color: var(--color_btn_text);
  outline-offset: 4px;
}

.nav_toggle {
  display: none;
  box-sizing: border-box;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0.35rem;
  border: none;
  border-radius: 0.25rem;
  background: transparent;
  color: var(--color_btn_text);
  cursor: pointer;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.nav_toggle:focus-visible {
  outline: 2px solid var(--color_btn_text);
  outline-offset: 3px;
}

.nav_toggle_bar {
  display: block;
  width: 1.375rem;
  height: 2px;
  margin: 0 auto;
  border-radius: 1px;
  background: currentColor;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav_toggle .nav_toggle_bar + .nav_toggle_bar {
  margin-top: 5px;
}

.header_bar:has(.site_nav_open) .nav_toggle_bar:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.header_bar:has(.site_nav_open) .nav_toggle_bar:nth-child(3) {
  opacity: 0;
}

.header_bar:has(.site_nav_open) .nav_toggle_bar:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 48rem) {
  .header_bar {
    position: relative;
    z-index: 25;
    flex-wrap: nowrap;
  }

  .site_logo,
  .nav_toggle {
    position: relative;
    z-index: 30;
  }

  .nav_toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: auto;
  }

  .site_nav {
    position: fixed;
    inset: 0;
    z-index: 15;
    flex: none;
    align-items: flex-start;
    justify-content: flex-end;
    margin: 0;
    padding-top: calc(1.25rem + 2.5rem + 0.75rem + 0.5rem);
    padding-right: var(--content_gutter);
    padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
    padding-left: var(--content_gutter);
    background: rgba(10, 10, 12, 0.55);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .site_nav.site_nav_open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site_nav_list {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 1.25rem;
    width: max-content;
    max-width: 100%;
    max-height: calc(100dvh - 6rem - env(safe-area-inset-bottom, 0px));
    padding-right: 1rem;
    overflow-x: hidden;
    overflow-y: auto;
    text-align: right;
    scrollbar-width: thin;
  }

  .site_nav_list a {
    font-size: 0.8125rem;
    padding: 0.35rem 0;
    padding-left: 0.5rem;
  }
}

.hero_section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding-top: clamp(6rem, 18vw, 10rem);
  padding-bottom: clamp(2.5rem, 8vw, 4rem);
  padding-left: 0;
  padding-right: 0;
  background-color: var(--hero_fallback);
  background-image: url("/images/hero-2.jpg");
  background-size: cover;
  background-position: right center;
}

/* Narrow viewports: anchor past the right edge so the crop slides left and the figure reads further right */
@media (max-width: 48rem) {
  .hero_section {
    background-position: calc(100% + 10vw) center;
  }
}

@media (max-width: 30rem) {
  .hero_section {
    background-position: calc(100% + 18vw) center;
  }
}

@media (min-width: 64rem) {
  .hero_section {
    padding-bottom: clamp(5rem, 16vw, 8rem);
  }
}

.hero_section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero_overlay);
  z-index: 0;
}

.hero_shell {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 42rem;
  margin-left: 0;
  margin-right: auto;
  color: var(--color_btn_text);
}

.hero_kicker {
  font-family: var(--font_stack);
  font-size: clamp(2.35rem, 6.5vw, 3.75rem);
  font-weight: 500;
  margin: 0 0 var(--space_gap);
  max-width: 20ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero_copy {
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  max-width: 26rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  opacity: 0.97;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

.section {
  padding-top: var(--space_section);
  padding-bottom: var(--space_section);
}

.section_alt {
  background: var(--color_bg_muted);
}

/* Session section: beach portrait bg; subject on image right, text sits in lighter left area */
.section_session_bg {
  position: relative;
  overflow: hidden;
  background-color: #d8cfc4;
  background-image: url("/images/session-bg.jpg");
  background-size: cover;
  background-position: left center;
}

.section_session_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(253, 249, 244, 0.88) 0%,
    rgba(252, 246, 240, 0.45) 38%,
    rgba(248, 242, 236, 0.12) 62%,
    transparent 82%
  );
}

.section_session_inner {
  position: relative;
  z-index: 1;
}

/* Retreat section: wide beach sunset; subjects on image right, text on lighter left */
.section_retreat_bg {
  position: relative;
  overflow: hidden;
  background-color: #c9b69a;
  background-image: url("/images/retreat-bg.jpg");
  background-size: cover;
  background-position: left center;
}

.section_retreat_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(253, 249, 244, 0.9) 0%,
    rgba(252, 246, 238, 0.55) 36%,
    rgba(248, 240, 228, 0.18) 58%,
    transparent 78%
  );
}

.section_retreat_inner {
  position: relative;
  z-index: 1;
}

/* Fourth section (free guide): whisper pink, matches hero + premium creams */
.section_soft_rose {
  background: linear-gradient(
    180deg,
    #fdf8f7 0%,
    #faf3f2 45%,
    #f7efee 100%
  );
}

#free_guide .content_shell {
  text-align: center;
}

#free_guide .section_lead {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

#free_guide .email_form {
  margin-left: auto;
  margin-right: auto;
}

/* Third section (problem): metrics texture + warm veil so it matches muted hero */
.section_premium_bg {
  position: relative;
  overflow: hidden;
  background-color: #faf7f3;
  background-image: url("/images/metrics-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Light lift only — keeps folds readable under the veil */
.section_premium_bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 105% 100% at 14% 46%, rgba(255, 255, 255, 0.22), transparent 52%),
    radial-gradient(ellipse 90% 85% at 88% 54%, rgba(250, 244, 238, 0.14), transparent 48%);
}

/* Soft “filter”: dusty cream / sand wash (hero-adjacent tones), mutes the JPEG */
.section_premium_bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 125% 100% at 6% 88%, rgba(252, 236, 220, 0.18), transparent 58%),
    linear-gradient(
      192deg,
      rgba(253, 250, 246, 0.78) 0%,
      rgba(248, 242, 236, 0.72) 35%,
      rgba(244, 238, 232, 0.74) 70%,
      rgba(240, 234, 228, 0.76) 100%
    );
}

.section_premium_noise {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section_premium_bg .content_shell {
  position: relative;
  z-index: 4;
}

.section_title {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin: 0 0 var(--space_gap);
}

.section_lead {
  font-size: 1.125rem;
  color: var(--color_text_soft);
  margin-bottom: var(--space_gap);
}

.section_note {
  margin-top: var(--space_gap);
  margin-bottom: 0;
  color: var(--color_text_soft);
  font-size: 1rem;
}

.about_grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  align-items: center;
}

@media (min-width: 52rem) {
  .about_grid {
    grid-template-columns: 1fr 1.1fr;
  }
}

.about_photo {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--photo_radius);
}

.list_plain {
  margin: 0;
  padding-left: 1.15rem;
}

.list_plain li {
  margin-bottom: 0.35rem;
}

.email_form {
  display: grid;
  gap: 1rem;
  margin-top: clamp(1.5rem, 4vw, 2rem);
  max-width: 26rem;
}

.email_form label {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color_text_soft);
}

.email_form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font_stack);
  font-size: 1rem;
  border: 1px solid #c9c4bd;
  border-radius: 9999px;
  background: var(--color_surface);
}

.email_form input[type="email"]:focus-visible {
  outline: 2px solid var(--color_accent);
  outline-offset: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--font_stack);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.btn_primary {
  background: var(--color_btn);
  color: var(--color_btn_text);
}

.btn_primary:hover {
  background: #2a2622;
}

.btn_secondary {
  background: transparent;
  color: var(--color_btn);
  border: 2px solid var(--color_btn);
}

.btn_secondary:hover {
  background: var(--color_btn);
  color: var(--color_btn_text);
}

.btn_stub {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}

.hero_section .btn_primary {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.hero_section .btn_primary:focus-visible {
  outline-color: var(--color_btn_text);
}

.cta_row {
  margin-top: clamp(1.5rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.stub_note {
  font-size: 0.875rem;
  color: var(--color_text_soft);
  letter-spacing: 0.03em;
}

.final_cta_block {
  text-align: center;
}

.final_cta_block .section_title {
  margin-bottom: 0.75rem;
}

.final_cta_block p {
  color: var(--color_text_soft);
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}

.site_footer {
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  font-size: 0.8125rem;
  color: var(--color_text_soft);
  border-top: 1px solid #e0dcd6;
}

.footer_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

@media (min-width: 52rem) {
  .footer_bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    row-gap: 0.5rem;
    column-gap: 2rem;
  }
}

.footer_brand {
  flex: 1 1 10rem;
  max-width: 36rem;
}

.footer_copy {
  margin: 0 0 0.65rem;
  color: var(--color_text);
  font-weight: 600;
}

.footer_disclaimer {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color_text_soft);
}

.footer_legal {
  flex-shrink: 0;
}

.footer_legal_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer_legal_list a {
  color: var(--color_text_soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

.footer_legal_list a:hover {
  color: var(--color_text);
}

.footer_legal_list a:focus-visible {
  outline-offset: 3px;
}

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

.session_booking_modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.session_booking_modal:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.session_booking_shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: clamp(1rem, 4vw, 2rem);
  box-sizing: border-box;
}

.session_booking_backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: rgba(42, 39, 36, 0.48);
  text-decoration: none;
}

.session_booking_card {
  position: relative;
  z-index: 1;
  width: min(26rem, 100%);
  max-height: min(90vh, 44rem);
  overflow-y: auto;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  background: #f5f3f0;
  border-radius: var(--photo_radius);
  box-shadow: 0 20px 50px rgba(42, 39, 36, 0.18);
  color: var(--color_text);
}

.session_booking_close {
  position: absolute;
  top: 0.65rem;
  right: 0.85rem;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 400;
  color: var(--color_text_soft);
  text-decoration: none;
  padding: 0.25rem 0.45rem;
}

.session_booking_close:hover {
  color: var(--color_text);
}

.session_booking_title {
  margin: 0 2rem 0.75rem 0;
  font-family: var(--font_stack);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.session_booking_lead {
  margin: 0 0 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color_text_soft);
}

.session_booking_form {
  display: grid;
  gap: 1rem;
}

.session_booking_field_wrap label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color_text_soft);
}

.session_booking_field {
  box-sizing: border-box;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font_stack);
  font-size: 1rem;
  color: var(--color_text);
  border: 1px solid #c9c4bd;
  border-radius: 9999px;
  background: var(--color_surface);
}

.session_booking_field::placeholder {
  color: #a39e98;
}

.session_booking_field:focus-visible {
  outline: 2px solid var(--color_accent);
  outline-offset: 2px;
}

.session_booking_submit {
  width: 100%;
  margin-top: 0.25rem;
}

.session_booking_note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  text-align: center;
  color: var(--color_text_soft);
}

@media (prefers-reduced-motion: reduce) {
  .session_booking_modal {
    transition: none;
  }

  .site_nav {
    transition: none;
  }

  .nav_toggle_bar {
    transition: none;
  }
}
