/* =========================================================
   ABSOLUTE INCLINATION COACHING & CONSULTING
   MODERN PREMIUM WEBSITE
========================================================= */

:root {
  --cream: #f7f1e8;
  --warm-white: #fffdf9;
  --peach: #e9b8a6;
  --peach-light: #f4d6c9;
  --terracotta: #b96752;
  --terracotta-dark: #874638;
  --plum: #4f3545;
  --plum-dark: #35222f;
  --sage: #a9b6a1;
  --sage-light: #d9e0d4;
  --gold: #c79b63;
  --charcoal: #282324;
  --muted: #706668;
  --line: rgba(79, 53, 69, 0.13);
  --white: #ffffff;

  --shadow-small:
    0 12px 30px rgba(53, 34, 47, 0.08);

  --shadow-medium:
    0 24px 65px rgba(53, 34, 47, 0.12);

  --shadow-large:
    0 40px 100px rgba(53, 34, 47, 0.18);

  --radius-small: 14px;
  --radius-medium: 24px;
  --radius-large: 40px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", Arial, sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

body.modalOpen {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
}

main {
  overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;

  min-height: 90px;
  padding: 0 5%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  background: rgba(247, 241, 232, 0.88);
  border-bottom: 1px solid rgba(79, 53, 69, 0.08);
  backdrop-filter: blur(20px);
}





.navMenu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navMenu a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: var(--plum-dark);
}

.navMenu a:not(.navBookBtn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--terracotta);
  transition: width 0.25s ease;
}

.navMenu a:not(.navBookBtn):hover::after {
  width: 100%;
}

.navBookBtn {
  min-height: 48px;
  padding: 0 23px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--plum);
  color: var(--white) !important;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.navBookBtn:hover {
  transform: translateY(-2px);
  background: var(--terracotta-dark);
  box-shadow: 0 14px 30px rgba(79, 53, 69, 0.2);
}

.menuBtn {
  display: none;

  width: 46px;
  height: 46px;

  border-radius: 50%;

  background: var(--plum);
  color: var(--white);

  font-size: 21px;
  cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 900px;
  padding: 160px 7% 100px;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;

  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(233, 184, 166, 0.62),
      transparent 34%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(169, 182, 161, 0.6),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      #f9eee6 0%,
      #f7f1e8 48%,
      #efe3d8 100%
    );
}

.heroDecor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.heroDecorOne {
  top: 140px;
  left: -100px;

  width: 250px;
  height: 250px;

  border: 1px solid rgba(79, 53, 69, 0.12);
}

.heroDecorTwo {
  right: 5%;
  bottom: 60px;

  width: 130px;
  height: 130px;

  border: 1px solid rgba(185, 103, 82, 0.25);
}

.heroContent {
  position: relative;
  z-index: 5;
  max-width: 760px;
}

.eyebrow,
.sectionEyebrow,
.bookingEyebrow,
.formEyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.eyebrow::before,
.sectionEyebrow::before,
.bookingEyebrow::before,
.formEyebrow::before {
  content: "";

  width: 36px;
  height: 1px;

  background: currentColor;
}

.hero h1 {
  max-width: 790px;
  margin-top: 24px;

  font-family: "Playfair Display", serif;
  font-size: clamp(64px, 7vw, 104px);
  line-height: 0.96;
  font-weight: 600;
  letter-spacing: -3px;
  color: var(--plum-dark);
}

.hero h1 em {
  display: block;
  margin-top: 12px;

  color: var(--terracotta);
  font-weight: 500;
}

.heroText {
  max-width: 680px;
  margin-top: 31px;

  font-size: 18px;
  color: var(--muted);
}

.heroActions {
  margin-top: 38px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.primaryBtn {
  min-height: 58px;
  padding: 0 29px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: var(--plum);
  color: var(--white);

  font-size: 14px;
  font-weight: 800;

  box-shadow: 0 18px 45px rgba(79, 53, 69, 0.22);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.primaryBtn:hover {
  transform: translateY(-4px);
  background: var(--terracotta-dark);
  box-shadow: 0 24px 55px rgba(79, 53, 69, 0.28);
}

.textBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
  font-weight: 800;
  color: var(--plum-dark);
}

.textBtn span {
  transition: transform 0.25s ease;
}

.textBtn:hover span {
  transform: translateX(6px);
}

.heroTrust {
  max-width: 760px;
  margin-top: 64px;
  padding-top: 30px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;

  border-top: 1px solid var(--line);
}

.heroTrust div {
  display: flex;
  flex-direction: column;
}

.heroTrust strong {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--plum-dark);
}

.heroTrust span {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}


/* =========================================================
   HERO VISUAL
========================================================= */

.heroVisual {
  position: relative;

  min-height: 610px;

  display: grid;
  place-items: center;
}

.visualShape {
  position: relative;

  width: min(100%, 540px);
  aspect-ratio: 0.88;

  display: grid;
  place-items: center;

  border-radius: 50% 50% 45% 45% / 42% 42% 58% 58%;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.78),
      rgba(233, 184, 166, 0.72)
    );

  box-shadow: var(--shadow-large);

  overflow: hidden;
}

.visualShape::before {
  content: "";

  position: absolute;
  inset: 35px;

  border: 1px solid rgba(79, 53, 69, 0.14);
  border-radius: inherit;
}

.visualShape::after {
  content: "";

  position: absolute;
  width: 320px;
  height: 320px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(169, 182, 161, 0.55),
      transparent 68%
    );

  bottom: -80px;
  right: -60px;
}

.visualQuote {
  position: relative;
  z-index: 3;

  width: min(82%, 400px);
  padding: 52px 42px;

  border-radius: 30px;

  background: rgba(255, 253, 249, 0.9);
  backdrop-filter: blur(18px);

  box-shadow: var(--shadow-medium);
}

.quoteMark {
  display: block;

  height: 55px;

  font-family: Georgia, serif;
  font-size: 100px;
  line-height: 0.8;
  color: var(--peach);
}

.visualQuote p {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.06;
  color: var(--plum-dark);
}

.visualQuote small {
  display: block;
  margin-top: 22px;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.floatingCard {
  position: absolute;
  z-index: 5;

  min-width: 210px;
  padding: 17px 20px;

  display: flex;
  align-items: center;
  gap: 13px;

  border-radius: 18px;

  background: rgba(255, 253, 249, 0.92);

  box-shadow: var(--shadow-small);
  backdrop-filter: blur(14px);
}

.floatingCard span {
  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--plum);
  color: var(--white);

  font-size: 10px;
  font-weight: 800;
}

.floatingCard p {
  font-size: 13px;
  font-weight: 700;
  color: var(--plum-dark);
}

.floatingCardOne {
  top: 11%;
  left: -30px;
}

.floatingCardTwo {
  right: -20px;
  bottom: 13%;
}


/* =========================================================
   INTRODUCTION
========================================================= */

.introduction {
  position: relative;

  padding: 135px 7%;

  display: grid;
  grid-template-columns: 90px 1.1fr 0.9fr;
  gap: 65px;

  background: var(--warm-white);
}

.sectionNumber {
  padding-top: 10px;

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--terracotta);
}

.introductionHeading h2,
.approachHeader h2,
.servicesIntro h2,
.bookingIntro h2,
.statementCard h2 {
  margin-top: 18px;

  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6vw, 76px);
  line-height: 1.03;
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--plum-dark);
}

.introductionCopy {
  padding-top: 44px;
}

.introductionCopy p {
  margin-bottom: 20px;

  font-size: 17px;
  color: var(--muted);
}

.inlineLink {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  margin-top: 12px;

  font-weight: 800;
  color: var(--terracotta-dark);
}

.inlineLink span {
  transition: transform 0.25s ease;
}

.inlineLink:hover span {
  transform: translate(4px, -4px);
}


/* =========================================================
   STATEMENT SECTION
========================================================= */

.statementSection {
  padding: 30px 7% 130px;
  background: var(--warm-white);
}

.statementCard {
  min-height: 520px;
  padding: 85px 8%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border-radius: var(--radius-large);

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(233, 184, 166, 0.22),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--plum-dark),
      var(--plum)
    );

  color: var(--white);
  box-shadow: var(--shadow-large);
}

.statementLabel {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--peach-light);
}

.statementCard h2 {
  max-width: 1050px;
  color: var(--white);
}

.statementCard > p:last-child {
  max-width: 720px;
  margin-top: 28px;

  font-size: 18px;
  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   APPROACH SECTION
========================================================= */

.approachSection {
  padding: 130px 7%;
  background: var(--cream);
}

.approachHeader {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.approachHeader > p {
  padding-bottom: 10px;
  font-size: 17px;
  color: var(--muted);
}

.approachGrid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.approachCard {
  position: relative;

  min-height: 420px;
  padding: 35px;

  display: flex;
  flex-direction: column;

  border: 1px solid var(--line);
  border-radius: 28px;

  background: rgba(255, 253, 249, 0.72);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.approachCard:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: var(--shadow-medium);
}

.featuredApproach {
  background: var(--peach-light);
  transform: translateY(28px);
}

.featuredApproach:hover {
  transform: translateY(18px);
}

.approachNumber {
  position: absolute;
  top: 28px;
  right: 30px;

  font-size: 11px;
  font-weight: 800;
  color: var(--terracotta-dark);
}

.approachIcon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  margin-top: 70px;

  border-radius: 50%;

  background: var(--plum);
  color: var(--white);

  font-size: 26px;
}

.approachCard h3 {
  margin-top: 30px;

  font-family: "Playfair Display", serif;
  font-size: 37px;
  color: var(--plum-dark);
}

.approachCard p {
  margin-top: 17px;
  color: var(--muted);
}


/* =========================================================
   SERVICES SECTION
========================================================= */

.servicesSection {
  padding: 155px 7% 130px;
  background: var(--warm-white);
}

.servicesIntro {
  max-width: 850px;
}

.servicesIntro > p:last-child {
  max-width: 620px;
  margin-top: 25px;

  font-size: 17px;
  color: var(--muted);
}

.serviceList {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.serviceRow {
  min-height: 190px;
  padding: 34px 0;

  display: grid;
  grid-template-columns: 70px 1fr 1.15fr 120px;
  align-items: center;
  gap: 35px;

  border-bottom: 1px solid var(--line);

  transition:
    padding 0.25s ease,
    background 0.25s ease;
}

.serviceRow:hover {
  padding-left: 25px;
  padding-right: 25px;

  background: rgba(244, 214, 201, 0.28);
}

.serviceIndex {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--terracotta);
}

.serviceName span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terracotta-dark);
}

.serviceName h3 {
  margin-top: 9px;

  font-family: "Playfair Display", serif;
  font-size: 34px;
  line-height: 1.05;
  color: var(--plum-dark);
}

.serviceDescription p {
  font-size: 15px;
  color: var(--muted);
}

.serviceBookBtn {
  min-height: 50px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: 999px;

  background: transparent;
  border: 1px solid var(--plum);

  color: var(--plum);
  font-size: 13px;
  font-weight: 800;

  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.serviceBookBtn:hover {
  transform: translateY(-3px);
  background: var(--plum);
  color: var(--white);
}


/* =========================================================
   BOOKING SECTION
========================================================= */

.bookingSection {
  padding: 130px 7%;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(233, 184, 166, 0.5),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #eee2d8,
      #f7f1e8
    );
}

.bookingIntro {
  max-width: 850px;
}

.bookingIntro > p:last-child {
  max-width: 650px;
  margin-top: 25px;

  font-size: 17px;
  color: var(--muted);
}

.bookingCategories {
  margin-top: 65px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bookingCategory {
  min-height: 380px;
  padding: 28px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;

  border-radius: 30px;

  background: var(--peach-light);
  color: var(--plum-dark);

  cursor: pointer;

  box-shadow: var(--shadow-small);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.bookingCategory:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-large);
}

.categoryDark {
  background: var(--plum);
  color: var(--white);
}

.categorySage {
  background: var(--sage-light);
}

.categoryTop {
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.categoryNumber {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
}

.categoryArrow {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border: 1px solid currentColor;
  border-radius: 50%;

  font-size: 18px;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.bookingCategory:hover .categoryArrow {
  transform: rotate(45deg);
  background: var(--warm-white);
  color: var(--plum-dark);
}

.categoryIcon {
  width: 76px;
  height: 76px;

  display: grid;
  place-items: center;

  margin-top: 75px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.45);

  font-size: 30px;
}

.bookingCategory strong {
  margin-top: 30px;

  font-family: "Playfair Display", serif;
  font-size: 33px;
  line-height: 1.05;
}

.bookingCategory small {
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.74;
}


/* =========================================================
   BOOKING MODAL
========================================================= */

.bookingModal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 25px;
}

.bookingModal.show {
  display: flex;
}

.bookingModalOverlay {
  position: absolute;
  inset: 0;

  background: rgba(35, 24, 31, 0.78);
  backdrop-filter: blur(12px);
}

.bookingModalBox {
  position: relative;
  z-index: 2;

  width: min(100%, 760px);
  min-height: 600px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;

  padding: 40px 44px;

  border-radius: 34px;

  background: var(--warm-white);
  box-shadow: var(--shadow-large);

  animation: modalRise 0.35s ease;
}

@keyframes modalRise {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modalCloseBtn {
  position: absolute;
  top: 22px;
  right: 22px;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: var(--cream);
  color: var(--plum-dark);

  font-size: 24px;
  cursor: pointer;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.modalCloseBtn:hover {
  transform: rotate(90deg);
  background: var(--plum);
  color: var(--white);
}

.modalTop {
  padding-right: 55px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.modalBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.modalBrand > span {
  width: 39px;
  height: 39px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--plum);
  color: var(--white);

  font-family: "Playfair Display", serif;
  font-size: 13px;
  font-weight: 700;
}

.modalBrand p {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--plum-dark);
}

.modalStepText {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}

.modalProgress {
  width: 100%;
  height: 5px;

  margin-top: 28px;

  border-radius: 999px;
  background: #e9dfd7;
  overflow: hidden;
}

.modalProgressBar {
  width: 12.5%;
  height: 100%;

  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--terracotta),
    var(--peach)
  );

  transition: width 0.35s ease;
}

#appointmentForm {
  margin-top: 50px;
}

.formStep {
  display: none;
  animation: stepFade 0.3s ease;
}

.formStep.active {
  display: block;
}

@keyframes stepFade {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.formStep h2,
.formSuccess h2 {
  max-width: 610px;
  margin-top: 14px;

  font-family: "Playfair Display", serif;
  font-size: clamp(39px, 6vw, 58px);
  line-height: 1.04;
  color: var(--plum-dark);
}

.formDescription {
  max-width: 580px;
  margin-top: 18px;
  color: var(--muted);
}

.selectedServiceCard {
  margin-top: 35px;
  padding: 22px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(185, 103, 82, 0.22);
  border-radius: 18px;

  background: var(--peach-light);
}

.selectedServiceCard span {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  color: var(--plum-dark);
}

.selectedServiceCard small {
  margin-top: 4px;
  color: var(--muted);
}

.formStep > label {
  display: block;
  max-width: 620px;
  margin-top: 17px;

  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.08;
  color: var(--plum-dark);
}

.formStep > input,
.formStep > select,
.formStep > textarea {
  width: 100%;
  margin-top: 35px;

  border: 1px solid rgba(79, 53, 69, 0.16);
  border-radius: 16px;

  background: #ffffff;
  color: var(--charcoal);

  outline: none;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.formStep > input,
.formStep > select {
  height: 61px;
  padding: 0 18px;
}

.formStep > textarea {
  min-height: 175px;
  padding: 18px;
  resize: vertical;
}

.formStep > input:focus,
.formStep > select:focus,
.formStep > textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 5px rgba(185, 103, 82, 0.1);
}

.answerOptions {
  margin-top: 32px;

  display: grid;
  gap: 14px;
}

.answerOption {
  position: relative;
  cursor: pointer;
}

.answerOption input {
  position: absolute;
  opacity: 0;
}

.answerOption span {
  min-height: 85px;
  padding: 18px 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  border: 1px solid rgba(79, 53, 69, 0.15);
  border-radius: 17px;

  background: #ffffff;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.answerOption:hover span {
  transform: translateX(6px);
  border-color: var(--terracotta);
}

.answerOption input:checked + span {
  border-color: var(--terracotta);
  background: var(--peach-light);
  box-shadow: 0 0 0 3px rgba(185, 103, 82, 0.11);
}

.answerOption strong {
  font-size: 15px;
  color: var(--plum-dark);
}

.answerOption small {
  margin-top: 5px;
  color: var(--muted);
}

.modalButtonRow {
  margin-top: 42px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.modalSingleButton {
  justify-content: flex-end;
}

.backBtn,
.continueBtn,
.submitBtn,
.finishBtn {
  min-height: 54px;
  padding: 0 26px;

  border-radius: 999px;

  font-size: 13px;
  font-weight: 800;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.backBtn {
  background: transparent;
  border: 1px solid var(--plum);
  color: var(--plum);
}

.backBtn:hover {
  background: var(--plum);
  color: var(--white);
}

.continueBtn,
.submitBtn,
.finishBtn {
  background: var(--plum);
  color: var(--white);

  box-shadow: 0 13px 30px rgba(79, 53, 69, 0.2);
}

.continueBtn:hover,
.submitBtn:hover,
.finishBtn:hover {
  transform: translateY(-3px);
  background: var(--terracotta-dark);
  box-shadow: 0 18px 40px rgba(79, 53, 69, 0.25);
}


/* =========================================================
   SUCCESS SCREEN
========================================================= */

.formSuccess {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.formSuccess.show {
  display: block;
}

.successIcon {
  width: 82px;
  height: 82px;

  margin: 0 auto 25px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--sage-light);
  color: #4e684d;

  font-size: 35px;
  font-weight: 800;
}

.formSuccess .formEyebrow {
  justify-content: center;
}

.formSuccess h2 {
  margin-left: auto;
  margin-right: auto;
}

.formSuccess p:not(.formEyebrow) {
  max-width: 590px;
  margin: 22px auto 0;
  color: var(--muted);
}

.finishBtn {
  margin-top: 32px;
}


/* =========================================================
   FOOTER
========================================================= */

.siteFooter {
  padding: 80px 7% 35px;

  background: var(--plum-dark);
  color: var(--white);
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footerBrandMark {
  background: var(--peach);
  color: var(--plum-dark);
}

.footerBrand div {
  display: flex;
  flex-direction: column;
}

.footerBrand strong {
  font-family: "Playfair Display", serif;
  font-size: 22px;
}

.footerBrand small {
  margin-top: 3px;

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: var(--peach-light);
}

.siteFooter > p {
  max-width: 700px;
  margin-top: 28px;

  color: rgba(255, 255, 255, 0.68);
}

.footerBottom {
  margin-top: 60px;
  padding-top: 25px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.13);

  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.footerBottom a {
  color: var(--peach-light);
  font-weight: 800;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .heroContent {
    max-width: 900px;
  }

  .heroVisual {
    min-height: 600px;
  }

  .floatingCardOne {
    left: 3%;
  }

  .floatingCardTwo {
    right: 3%;
  }

  .introduction {
    grid-template-columns: 55px 1fr;
  }

  .introductionCopy {
    grid-column: 2;
    padding-top: 0;
  }

  .approachGrid {
    grid-template-columns: 1fr;
  }

  .featuredApproach {
    transform: none;
  }

  .featuredApproach:hover {
    transform: translateY(-10px);
  }

  .approachCard {
    min-height: 330px;
  }

  .serviceRow {
    grid-template-columns: 55px 1fr 1fr;
  }

  .serviceBookBtn {
    grid-column: 2 / 4;
    width: fit-content;
  }

  .bookingCategories {
    grid-template-columns: 1fr;
  }

  .bookingCategory {
    min-height: 330px;
  }
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

@media (max-width: 820px) {

  .siteHeader {
    min-height: 78px;
    padding: 0 20px;
  }



  .menuBtn {
    display: grid;
    place-items: center;
  }

  .navMenu {
    position: absolute;
    top: 78px;
    left: 15px;
    right: 15px;

    padding: 22px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;

    border-radius: 20px;

    background: var(--warm-white);
    box-shadow: var(--shadow-large);
  }

  .navMenu.active {
    display: flex;
  }

  .navMenu a {
    padding: 13px 12px;
    border-radius: 10px;
  }

  .navMenu a:hover {
    background: var(--cream);
  }

  .navBookBtn {
    margin-top: 5px;
  }

  .approachHeader {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .serviceRow {
    grid-template-columns: 45px 1fr;
    gap: 20px;
  }

  .serviceDescription,
  .serviceBookBtn {
    grid-column: 2;
  }

  .serviceRow:hover {
    padding-left: 0;
    padding-right: 0;
  }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 620px) {

  .hero {
    min-height: auto;
    padding: 125px 20px 75px;
  }

  .hero h1 {
    font-size: 54px;
    letter-spacing: -2px;
  }

  .heroText {
    font-size: 16px;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
  }

  .primaryBtn {
    width: 100%;
  }

  .textBtn {
    justify-content: center;
  }

  .heroTrust {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .heroVisual {
    min-height: 500px;
  }

  .visualShape {
    width: 100%;
  }

  .visualQuote {
    padding: 40px 25px;
  }

  .visualQuote p {
    font-size: 37px;
  }

  .floatingCard {
    min-width: 175px;
    padding: 13px;
  }

  .floatingCardOne {
    top: 5%;
    left: -5px;
  }

  .floatingCardTwo {
    right: -5px;
    bottom: 5%;
  }

  .introduction,
  .approachSection,
  .servicesSection,
  .bookingSection {
    padding-left: 20px;
    padding-right: 20px;
  }

  .introduction {
    padding-top: 90px;
    padding-bottom: 90px;

    grid-template-columns: 1fr;
    gap: 25px;
  }

  .sectionNumber {
    display: none;
  }

  .introductionCopy {
    grid-column: auto;
  }

  .introductionHeading h2,
  .approachHeader h2,
  .servicesIntro h2,
  .bookingIntro h2,
  .statementCard h2 {
    font-size: 44px;
  }

  .statementSection {
    padding: 0 15px 90px;
  }

  .statementCard {
    min-height: 520px;
    padding: 55px 25px;
    border-radius: 28px;
  }

  .approachSection {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .approachGrid {
    margin-top: 45px;
  }

  .approachCard {
    padding: 28px;
  }

  .servicesSection {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .serviceList {
    margin-top: 45px;
  }

  .serviceRow {
    padding: 32px 0;

    grid-template-columns: 1fr;
  }

  .serviceIndex,
  .serviceDescription,
  .serviceBookBtn {
    grid-column: auto;
  }

  .serviceBookBtn {
    width: 100%;
  }

  .bookingSection {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .bookingCategories {
    margin-top: 45px;
  }

  .bookingCategory {
    min-height: 340px;
    padding: 24px;
  }

  .bookingCategory strong {
    font-size: 30px;
  }

  .bookingModal {
    padding: 10px;
  }

  .bookingModalBox {
    min-height: calc(100vh - 20px);
    max-height: calc(100vh - 20px);

    padding: 28px 20px;

    border-radius: 24px;
  }

  .modalCloseBtn {
    top: 14px;
    right: 14px;
  }

  .modalTop {
    padding-right: 42px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  #appointmentForm {
    margin-top: 40px;
  }

  .formStep h2,
  .formSuccess h2 {
    font-size: 39px;
  }

  .formStep > label {
    font-size: 35px;
  }

  .modalButtonRow {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .backBtn,
  .continueBtn,
  .submitBtn,
  .finishBtn {
    width: 100%;
  }

  .modalSingleButton {
    flex-direction: column;
  }

  .siteFooter {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footerBottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Fix Date & Time Fields */

.twoFieldRow{
    display:flex;
    gap:20px;
    margin:30px 0;
    align-items:flex-start;
}

.fieldBox{
    flex:1;
    display:flex;
    flex-direction:column;
}

.fieldBox input,
.fieldBox select{
    width:100%;
    height:58px;
    padding:0 18px;
    font-size:16px;
    border:1px solid #dccfc7;
    border-radius:14px;
    background:#fff;
    color:#3b2c35;
    outline:none;
    appearance:none;
    -webkit-appearance:none;
}

.fieldBox input:focus,
.fieldBox select:focus{
    border-color:#b36f57;
    box-shadow:0 0 0 4px rgba(179,111,87,.15);
}

.smallFieldLabel{
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
    color:#7b5d56;
}

@media (max-width:700px){

    .twoFieldRow{
        flex-direction:column;
        gap:16px;
    }

}
/* FIX CONTACT INFORMATION FIELDS */

.contactFields {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.contactFields input {
  width: 100% !important;
  height: 58px !important;
  padding: 0 17px !important;
  border: 1px solid rgba(79, 53, 69, 0.16) !important;
  border-radius: 14px !important;
  background: #ffffff !important;
  color: #282324 !important;
  font-size: 15px !important;
  outline: none !important;
  display: block !important;
}

.contactFields input::placeholder {
  color: #8b7d80;
}

.contactFields input:focus {
  border-color: #b96752 !important;
  box-shadow: 0 0 0 4px rgba(185, 103, 82, 0.12) !important;
}

.contactChoiceTitle {
  margin-top: 26px;
  margin-bottom: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #4f3545;
}

/* KEEP CONTACT CHOICES CLEAN */

.contactOptions {
  margin-top: 0;
  display: grid;
  gap: 12px;
}

.contactOptions .answerOption span {
  width: 100%;
  min-height: 72px;
  padding: 15px 18px;
}

/* MOBILE */

@media (max-width:620px){
  .contactFields input{
    height:54px !important;
  }
}

/* =========================================
   HEADER LOGO
========================================= */

.brand{
    display:flex;
    align-items:center;
    justify-content:flex-start;

    width:280px;      /* Increase if logo is wider */
    height:80px;

    flex-shrink:0;
}

.brandLogo{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:left center;
    display:block;
}

/* MOBILE */

@media (max-width:768px){

    .brand{
        width:190px;
        height:60px;
    }

}
/* Modal Brand */

.modalBrand{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:20px;
}

.modalBrandLogo{
    width:90px;
    height:90px;
    object-fit:contain;
    flex-shrink:0;
}

.modalBrand p{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#4f3545;
}

@media (max-width:768px){

    .modalBrandLogo{
        width:70px;
        height:70px;
    }

    .modalBrand p{
        font-size:18px;
    }

}
/* FIX MOBILE BUTTON CLICKS */

.heroDecor,
.visualShape::before,
.visualShape::after,
.heroOverlay {
  pointer-events: none !important;
}

.openBookingBtn,
.serviceBookBtn,
.bookingCategory,
.primaryBtn,
.navBookBtn,
.continueBtn,
.backBtn,
.submitBtn,
.confirmationOkBtn,
.menuBtn {
  position: relative;
  z-index: 20;
  pointer-events: auto !important;
  touch-action: manipulation;
  cursor: pointer;
}

.bookingModalBox {
  position: relative;
  z-index: 10001;
  pointer-events: auto;
}

.bookingModalOverlay {
  z-index: 10000;
}

@media (max-width: 820px) {
  .navMenu {
    z-index: 5000;
  }

  .navMenu.active {
    display: flex;
    pointer-events: auto;
  }

  button,
  a {
    touch-action: manipulation;
  }
}
.familyCard{
    background-image:url("images/family-consultation.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.discoveryCard{
    background-image:url("images/discovery-call.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
.coachingCard{
    background-image:url("images/individual-coaching.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}
/* All Booking Cards White Text */

.bookingCategory strong,
.bookingCategory small,
.bookingCategory .categoryIcon,
.bookingCategory .categoryNumber,
.bookingCategory .categoryArrow{
    color:#ffffff !important;
}