:root {
  --ink: #fff9ec;
  --muted: #d5e5dc;
  --night: #03191d;
  --deep: #052d32;
  --teal: #07565a;
  --green: #0a715f;
  --mint: #b8e4ce;
  --gold: #f4cb69;
  --line: rgba(255, 249, 236, 0.35);
  --glass: rgba(2, 20, 24, 0.78);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font:
    16px/1.6 Inter,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  background:
    radial-gradient(
      ellipse at 82% 8%,
      rgba(244, 203, 105, 0.2),
      transparent 27rem
    ),
    radial-gradient(
      ellipse at 10% 42%,
      rgba(10, 113, 95, 0.45),
      transparent 34rem
    ),
    linear-gradient(145deg, var(--night), var(--deep) 55%, #06283b);
}
.page {
  width: min(1100px, calc(100% - 36px));
  margin: auto;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative;
  z-index: 3;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0.035em;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  min-height: 58px;
  border-radius: 22px;
  background: var(--gold);
  color: #172c28;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.1;
  letter-spacing: 0.025em;
  white-space: nowrap;
  box-shadow: 0 8px 24px #0003;
}
.brand-mark:after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: -8px;
  width: 16px;
  height: 16px;
  background: var(--gold);
  transform: skewY(-35deg) rotate(20deg);
  border-radius: 2px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.93rem;
}
nav a:hover {
  color: var(--gold);
}
.menu {
  display: none;
  color: var(--ink);
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 1.1rem;
}
.button,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 19px;
  border-radius: 99px;
  background: var(--gold);
  color: #172c28;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid var(--gold);
  transition: 0.2s;
}
.button:hover,
.pill:hover {
  transform: translateY(-2px);
  background: #ffdf8a;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 66px;
}
.kicker {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 850;
}
h1 {
  font-size: clamp(3.2rem, 7vw, 6.2rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  margin: 16px 0 22px;
}
h1 em {
  font:
    400 1em/1 Georgia,
    serif;
  color: var(--mint);
}
.intro {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
}
.actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.plain {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
}
.portrait-wrap {
  position: relative;
  width: 100%;
  width: min(100%, 390px);
  max-width: 390px;
  justify-self: end;
  padding: 13px;
  aspect-ratio: 1 / 1;
}
.portrait-wrap:before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 203, 105, 0.75);
  border-radius: 50%;
  transform: none;
}
.portrait {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 50%;
  border: 2px solid rgba(255, 249, 236, 0.5);
  box-shadow: 0 22px 70px #0006;
}
.photo-note {
  position: absolute;
  bottom: 28px;
  left: -18px;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 9px 15px;
  font:
    italic 1rem Georgia,
    serif;
}
.dove {
  position: absolute;
  width: 62px;
  fill: var(--ink);
  filter: drop-shadow(0 5px 8px #0005);
}
.dove.a {
  top: 10px;
  right: -16px;
}
.dove.b {
  bottom: 13%;
  right: -27px;
  width: 43px;
  transform: scaleX(-1);
  opacity: 0.85;
}
section.content {
  padding: 30px 0 68px;
}
.heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 27px;
}
.heading h2,
.contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin: 8px 0;
}
.heading p,
.contact p {
  color: var(--muted);
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
}
.approach {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(
    115deg,
    rgba(2, 20, 24, 0.88),
    rgba(7, 86, 90, 0.7)
  );
  box-shadow: 0 18px 55px #0002;
}
.quote {
  font:
    clamp(1.4rem, 3vw, 2rem)/1.3 Georgia,
    serif;
  color: var(--mint);
}
.quote:before {
  content: "“";
  font-size: 3rem;
  color: var(--gold);
  vertical-align: -0.35em;
  margin-right: 4px;
}
.quote:after {
  content: "”";
  font-size: 3rem;
  color: var(--gold);
  vertical-align: -0.35em;
  margin-right: 4px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step {
  border-left: 1px solid var(--line);
  padding: 4px 0 4px 14px;
}
.step b {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.step span {
  color: var(--muted);
  font-size: 0.92rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.card {
  padding: 24px;
  min-height: 195px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
  box-shadow: 0 14px 40px #0002;
}
.symbol {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.video-box {
  padding: 14px;
  border: 1px solid rgba(244, 203, 105, 0.6);
  border-radius: 22px;
  background: rgba(0, 12, 16, 0.7);
  box-shadow: 0 20px 55px #0003;
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 13px;
  overflow: hidden;
  background: linear-gradient(135deg, #062e32, #0b5d58);
  display: grid;
  place-items: center;
}
.video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #03191d;
}
.placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
  background: linear-gradient(135deg, #03191dcc, #052d32cc);
}
.play {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: #18312c;
  margin-bottom: 12px;
  font-size: 1.25rem;
  box-shadow: 0 0 0 8px #f4cb6922;
}
.placeholder small {
  color: var(--muted);
  margin-top: 5px;
  max-width: 440px;
}
.contact {
  text-align: center;
  padding: 42px 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(2, 20, 24, 0.9),
    rgba(7, 86, 90, 0.65)
  );
  margin-bottom: 24px;
}
.contact p {
  margin: 0 auto 20px;
}
.email {
  color: var(--ink);
  font-size: clamp(1rem, 3vw, 1.2rem);
  text-underline-offset: 5px;
  overflow-wrap: anywhere;
}
footer {
  text-align: center;
  color: #d5e5dcaa;
  font-size: 0.82rem;
  padding: 0 0 28px;
}
.review-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--glass);
  text-align: center;
  color: var(--muted);
}
.experience-list {
  list-style: none;
  padding: 0;
  margin: 18px auto 0;
  max-width: 760px;
  display: grid;
  gap: 12px;
  text-align: left;
}
.experience-list li {
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(2, 20, 24, 0.48);
}
.experience-list strong {
  color: var(--gold);
}
@media (max-width: 760px) {
  .page {
    width: min(100% - 28px, 560px);
  }
  header {
    padding: 16px 0;
  }
  .menu {
    display: block;
  }
  nav {
    display: none;
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #052d32;
  }
  nav.open {
    display: flex;
  }
  nav a {
    padding: 4px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 42px 0 35px;
    gap: 25px;
  }
  .portrait-wrap {
    justify-self: center;
    width: min(85%, 390px);
  }
  .portrait {
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
  }
  .photo-note {
    left: -12px;
    bottom: 18px;
  }
  .approach {
    grid-template-columns: 1fr;
    padding: 24px 20px;
    gap: 22px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 13px;
  }
  .step {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 11px 0 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: auto;
  }
  section.content {
    padding-bottom: 48px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition-duration: 0.01ms !important;
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.about-panel {
  padding: 26px;
  border-radius: 18px;
  background: rgba(2, 20, 24, 0.5);
  border: 1px solid var(--line);
}
.calendar-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(2, 20, 24, 0.62);
}
.cal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.cal-head button,
.day,
.slot {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 10px;
  padding: 9px;
  cursor: pointer;
}
.week,
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  text-align: center;
}
.week span {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 6px 0;
}
.day {
  min-height: 40px;
}
.day:disabled {
  opacity: 0.22;
  cursor: default;
}
.day.selected,
.slot.selected {
  background: var(--gold);
  color: #142326;
  border-color: var(--gold);
  font-weight: 800;
}
.slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin: 12px 0;
}
.slot {
  padding: 11px;
}
.calendar-note {
  color: var(--muted);
  font-size: 0.9rem;
}
.request {
  width: 100%;
  margin-top: 10px;
}
.request:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
@media (max-width: 700px) {
  .pricing-grid,
  .about,
  .calendar-wrap {
    grid-template-columns: 1fr;
  }
}

/* Interactive learner feedback cards */
#reviews .review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
#reviews .review-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 30px 26px 24px;
  border: 1px solid rgba(244, 203, 105, 0.28);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(244, 203, 105, 0.13),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.075),
      rgba(255, 255, 255, 0.025)
    );
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}
#reviews .review-card::before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 18px;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  font-size: 5.2rem;
  line-height: 1;
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
}
#reviews .review-card:hover,
#reviews .review-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(244, 203, 105, 0.72);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}
#reviews .review-card:hover::before {
  transform: rotate(-7deg) scale(1.08);
  opacity: 0.42;
}
#reviews .review-card blockquote {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  font-family: Georgia, serif;
  font-size: 1.04rem;
  line-height: 1.72;
}
#reviews .review-by {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(244, 203, 105, 0.12);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.02em;
}
#reviews .review-by::before {
  content: "✦";
}
#reviews .review-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: rgba(255, 255, 255, 0.04);
}
#reviews .review-disclaimer {
  margin-top: 18px;
  opacity: 0.78;
}
@media (max-width: 900px) {
  #reviews .review-grid {
    grid-template-columns: 1fr;
  }
  #reviews .review-card {
    min-height: auto;
  }
}

/* Logo and portrait treatment based on Heather's supplied reference */
.brand {
  overflow: visible;
}
.logo-bubble {
  position: relative;
  display: grid;
  place-items: center;
  width: 190px;
  min-height: 104px;
  padding: 18px 24px 20px;
  color: var(--ink);
  background: var(--deep);
  border: 3px solid var(--mint);
  border-radius: 48% 52% 45% 50% / 52% 48% 52% 45%;
  box-shadow:
    8px 8px 0 rgba(10, 113, 95, 0.55),
    13px 12px 0 rgba(244, 203, 105, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
}
.logo-bubble::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -20px;
  width: 35px;
  height: 32px;
  background: var(--deep);
  border-left: 3px solid var(--mint);
  border-bottom: 3px solid var(--mint);
  transform: skew(-25deg) rotate(-18deg);
  border-radius: 0 0 0 10px;
}
.logo-bubble::after {
  content: "";
  position: absolute;
  right: -17px;
  bottom: -7px;
  width: 68px;
  height: 38px;
  border: 3px solid var(--mint);
  border-left: 0;
  border-radius: 0 50% 55% 0;
  opacity: 0.9;
}
.logo-text {
  position: relative;
  z-index: 2;
  font-size: 1.45rem;
  line-height: 0.98;
  font-weight: 760;
  letter-spacing: -0.035em;
  text-align: center;
}
.logo-text strong {
  font-size: 1.32em;
  color: var(--gold);
}
.logo-accent {
  position: absolute;
  right: 14px;
  top: -12px;
  width: 34px;
  height: 5px;
  border-radius: 99px;
  background: var(--gold);
  transform: rotate(-56deg);
  box-shadow:
    15px 15px 0 -1px var(--mint),
    18px 31px 0 -1px var(--gold);
}

.portrait-wrap {
  width: min(100%, 430px);
  max-width: 430px;
  padding: 10px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(255, 249, 236, 0.04);
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.3);
}
.portrait-wrap::before {
  inset: 0;
  border: 2px solid rgba(255, 249, 236, 0.8);
  border-radius: 50%;
}
.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: -17px;
  border: 1px solid rgba(244, 203, 105, 0.65);
  border-radius: 50%;
  pointer-events: none;
}
.portrait {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 40%;
  border: 0;
}
.dove {
  opacity: 0.92;
}

@media (max-width: 760px) {
  .logo-bubble {
    width: 150px;
    min-height: 8px;
    padding: 14px 18px 16px;
  }
  .logo-text {
    font-size: 1.15rem;
  }
  .portrait-wrap {
    width: min(88vw, 390px);
  }
}

/* Compact My Experience cards matching the supplied reference */
#experience.experience-section {
  padding-top: 64px;
  padding-bottom: 70px;
  background:
    radial-gradient(
      circle at 8% 45%,
      rgba(143, 211, 178, 0.08),
      transparent 24%
    ),
    rgba(255, 255, 255, 0.015);
}
#experience .section-head {
  margin-bottom: 24px;
}
.experience-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.experience-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 126px;
  padding: 16px 16px;
  border: 1px solid rgba(143, 211, 178, 0.42);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}
.experience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 203, 105, 0.72);
  background: rgba(255, 255, 255, 0.055);
}
.experience-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--deep);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.exp-mint {
  background: var(--mint);
}
.exp-gold {
  background: var(--gold);
}
.exp-pencil {
  font-size: 2.1rem;
}
.experience-card h3 {
  margin: 0 0 7px;
  font-size: 0.96rem;
  line-height: 1.12;
  color: var(--ink);
}
.experience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.42;
}

/* Circular portrait: photograph fills the circle, with no black background */
.portrait-wrap {
  overflow: visible;
  background: transparent !important;
}
.portrait {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: 50% 42% !important;
  background: transparent !important;
}

@media (max-width: 1000px) {
  .experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .experience-cards {
    grid-template-columns: 1fr;
  }
  .experience-card {
    min-height: 112px;
  }
}

/* Final corrective layer */
#experience .experience-heading {
  max-width: 760px;
  margin: 0 0 28px;
}
#experience .experience-heading .eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
#experience .experience-heading h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
#experience .experience-intro {
  margin: 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}
#experience .experience-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}
#experience .experience-card {
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 14px !important;
  min-width: 0;
  min-height: 124px;
  padding: 16px !important;
  border: 1px solid rgba(143, 211, 178, 0.42) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.035) !important;
}
#experience .experience-card h3,
#experience .experience-card p {
  overflow-wrap: anywhere;
}

.portrait-wrap {
  position: relative !important;
  display: block !important;
  width: min(100%, 430px) !important;
  max-width: 430px !important;
  aspect-ratio: 1 / 1 !important;
  padding: 10px !important;
  overflow: visible !important;
  border-radius: 50% !important;
  background: transparent !important;
}
.portrait-wrap .portrait {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: 1 / 1 !important;
  object-fit: cover !important;
  object-position: 50% 42% !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  visibility: visible !important;
}
.portrait-wrap .dove {
  z-index: 3 !important;
}

@media (max-width: 1000px) {
  #experience .experience-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 620px) {
  #experience .experience-cards {
    grid-template-columns: 1fr !important;
  }
}

/* Centered Experience panel with rounded background */
#experience.experience-section {
  width: min(1100px, calc(100% - 36px)) !important;
  margin: 34px auto 70px !important;
  padding: 58px 34px 42px !important;
  border-radius: 32px !important;
  overflow: hidden !important;
  background:
    radial-gradient(
      circle at 8% 45%,
      rgba(143, 211, 178, 0.08),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.025) !important;
  border: 1px solid rgba(255, 255, 255, 0.055);
}

#experience > .wrap {
  width: 100% !important;
  max-width: 1040px !important;
  margin: 0 auto !important;
}

#experience .experience-heading {
  max-width: 760px !important;
  margin: 0 auto 34px !important;
  text-align: center !important;
}

#experience .experience-heading .eyebrow {
  text-align: center !important;
}

#experience .experience-heading h2 {
  text-align: center !important;
  max-width: 760px;
  margin-left: auto !important;
  margin-right: auto !important;
}

#experience .experience-intro {
  max-width: 720px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

@media (max-width: 620px) {
  #experience.experience-section {
    width: min(100% - 24px, 560px) !important;
    padding: 42px 18px 28px !important;
    border-radius: 24px !important;
  }
}

/* Requested CTA, portrait, dove and contact-logo refinements */
.portrait-wrap .portrait {
  width: 92% !important;
  height: 92% !important;
  margin: 4% !important;
  object-fit: cover !important;
  object-position: 50% 40% !important;
  border: 2px solid rgba(255, 249, 236, 0.55) !important;
}
.dove.c {
  top: 43% !important;
  left: -42px !important;
  right: auto !important;
  width: 48px !important;
  transform: scaleX(-1) rotate(-8deg);
  opacity: 0.88 !important;
}
#contact .contact-logo {
  display: flex;
  justify-content: center;
  margin: 10px auto 28px;
  padding-bottom: 12px;
}
#contact .contact-logo .logo-bubble {
  width: 210px;
  min-height: 112px;
}
#contact .contact-logo .logo-text {
  font-size: 1.55rem;
}
#contact .contact-logo .logo-text strong {
  font-size: 1.34em;
}
@media (max-width: 620px) {
  .dove.c {
    left: -18px !important;
    width: 38px !important;
  }
  #contact .contact-logo .logo-bubble {
    width: 175px;
    min-height: 96px;
  }
}

/* Final portrait + 3-dove placement */
.portrait-wrap .portrait {
  width: 92% !important;
  height: 92% !important;
  margin: 4% !important;
  border: 1px solid rgba(255, 249, 236, 0.55) !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: 50% 40% !important;
}

.portrait-wrap .dove.a {
  top: 2% !important;
  right: -54px !important;
  width: 56px !important;
}

.portrait-wrap .dove.b {
  bottom: 10% !important;
  right: -58px !important;
  width: 44px !important;
}

.portrait-wrap .dove.c {
  top: 45% !important;
  left: -64px !important;
  right: auto !important;
  width: 44px !important;
  transform: scaleX(-1) rotate(-8deg) !important;
}

@media (max-width: 620px) {
  .portrait-wrap .dove.a {
    right: -30px !important;
    width: 44px !important;
  }
  .portrait-wrap .dove.b {
    right: -32px !important;
    width: 36px !important;
  }
  .portrait-wrap .dove.c {
    left: -34px !important;
    width: 36px !important;
  }
}

/* Email styling: keep it clean, without underline */
.email,
.email:link,
.email:visited,
.email:hover,
.email:focus,
#contact a[href^="mailto:"] {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

/* Final portrait refinement: slightly slimmer photo, frame unchanged */
.portrait-wrap .portrait {
  transform: scaleX(0.94) !important;
  transform-origin: center center !important;
}

/* Keep all three doves clear of the portrait rings */
.portrait-wrap .dove.a {
  right: -54px !important;
}
.portrait-wrap .dove.b {
  right: -58px !important;
}
.portrait-wrap .dove.c {
  left: -64px !important;
}

/* Keep email address clean and un-underlined */
.email,
.email:link,
.email:visited,
.email:hover,
.email:focus,
#contact a[href^="mailto:"] {
  text-decoration: none !important;
  border-bottom: 0 !important;
}
/* Calendar time picker modal */
.choose-time {
  width: 100%;
  margin-top: 18px;
}
.time-modal[hidden] {
  display: none;
}
.time-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
}
.time-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 22, 0.78);
  backdrop-filter: blur(5px);
}
.time-modal-card {
  position: relative;
  z-index: 1;
  width: min(620px, 94vw);
  max-height: min(720px, 88vh);
  overflow: auto;
  padding: 34px;
  border: 1px solid rgba(143, 211, 178, 0.5);
  border-radius: 26px;
  background: var(--deep);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}
.time-modal-card h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
}
.time-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--ink);
  font-size: 1.7rem;
  cursor: pointer;
}
.time-modal-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.time-modal-slots .slot {
  min-height: 48px;
}
@media (max-width: 560px) {
  .time-modal-card {
    padding: 28px 18px 22px;
    border-radius: 20px;
  }
  .time-modal-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Interactive "Talk to Heather" logo in Your Next Step */
#contact .interactive-contact-logo {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin: 10px auto 28px;
  padding: 0 18px 12px;
  text-decoration: none !important;
  border: 0 !important;
  cursor: pointer;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 0.24s ease;
  -webkit-tap-highlight-color: transparent;
}

#contact .interactive-contact-logo:hover {
  transform: scale(1.07);
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.22));
}

#contact .interactive-contact-logo:active {
  transform: scale(1.03);
}

#contact .interactive-contact-logo:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 8px;
  border-radius: 24px;
}

#contact .interactive-contact-logo .logo-bubble {
  transition: transform 0.24s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#contact .interactive-contact-logo:hover .logo-bubble {
  transform: rotate(1deg);
}

@media (prefers-reduced-motion: reduce) {
  #contact .interactive-contact-logo,
  #contact .interactive-contact-logo .logo-bubble {
    transition: none;
  }
}

.video-shell .intro-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 0;
}
@media (max-width: 700px) {
  .video-shell .intro-video {
    min-height: 240px;
  }
}

/* Clean Talk to Heather logos — requested for header and contact logo */
.logo-accent {
  display: none !important;
}
.logo-bubble::after {
  display: none !important;
}

/* Keep Heather's full portrait video visible instead of cropping it. */
.video-shell .intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  background: var(--deep);
}

.intro-video-wrap {
  width: 100%;
}
.video-skip-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px 10px 4px;
}
.video-skip-controls button {
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.video-skip-controls button:hover {
  background: var(--gold);
  color: var(--deep);
}

/* Final wide video treatment */
.video-shell {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--gold);
  border-radius: 24px;
  background: var(--deep);
  overflow: hidden;
}
.intro-video-wrap {
  width: 100%;
}
.video-shell .intro-video {
  display: block;
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16/9;
  object-fit: cover !important;
  object-position: center !important;
  border: 0;
  border-radius: 14px;
  background: #000;
}
.video-skip-controls {
  display: none !important;
}
@media (max-width: 700px) {
  .video-shell {
    padding: 6px;
    border-radius: 18px;
  }
  .video-shell .intro-video {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
  }
}

/* FINAL CLEAN VIDEO LAYOUT — original portrait video, no blurred duplicate */
.video-box {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid rgba(244, 203, 105, 0.75);
  border-radius: 24px;
  background: #063b3a;
  overflow: hidden;
}
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  overflow: hidden;
  background: #063b3a;
}
.video-frame .intro-video-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #063b3a;
}
.video-frame video.intro-video {
  display: block;
  width: auto !important;
  height: 100% !important;
  max-width: 100% !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  border: 0;
  border-radius: 0;
  background: #063b3a;
}
.video-skip-controls {
  display: none !important;
}
@media (max-width: 700px) {
  .video-box {
    padding: 6px;
    border-radius: 18px;
  }
  .video-frame {
    aspect-ratio: auto;
    min-height: 0;
  }
  .video-frame .intro-video-wrap {
    height: auto;
  }
  .video-frame video.intro-video {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }
}

/* Experience layout: heading outside the rounded panel, matching Learner Feedback */
#experience.experience-section {
  width: min(1100px, calc(100% - 36px)) !important;
  margin: 34px auto 70px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

#experience > .wrap {
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

#experience .experience-heading {
  max-width: 760px !important;
  margin: 0 auto 32px !important;
  padding: 0 18px !important;
  text-align: center !important;
}

#experience .experience-cards {
  padding: 28px !important;
  border: 1px solid rgba(255, 255, 255, 0.055) !important;
  border-radius: 32px !important;
  background:
    radial-gradient(
      circle at 8% 45%,
      rgba(143, 211, 178, 0.08),
      transparent 28%
    ),
    rgba(255, 255, 255, 0.025) !important;
}

@media (max-width: 620px) {
  #experience.experience-section {
    width: min(100% - 24px, 560px) !important;
    padding: 0 !important;
  }

  #experience .experience-heading {
    padding: 0 6px !important;
    margin-bottom: 24px !important;
  }

  #experience .experience-cards {
    padding: 18px !important;
    border-radius: 24px !important;
  }
}
