:root {
  --bg: #fff8eb;
  --surface: #fffdf7;
  --surface-strong: #ffffff;
  --ink: #27322f;
  --muted: #59695f;
  --line: #eadcc9;
  --green: #719783;
  --green-dark: #3f6a60;
  --coral: #e28a66;
  --gold: #e4b64f;
  --blue: #6f94af;
  --blue-soft: #eef8f5;
  --lavender: #9b89ad;
  --lavender-soft: #f8f0fa;
  --shadow: 0 18px 45px rgba(79, 104, 95, 0.11);
  --radius: 8px;
  --wrap: 1120px;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, #f3fbf7 48%, #fff5ec 100%);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

main > .hero,
main > .section {
  flex: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 5.5rem);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
}

h3 {
  font-size: 1.14rem;
}

.wrap {
  width: min(var(--wrap), calc(100% - 32px));
  margin: 0 auto;
}

.launch-banner {
  background: linear-gradient(90deg, var(--gold), var(--coral));
  color: var(--ink);
  border-bottom: 1px solid rgba(39, 50, 47, 0.12);
  cursor: pointer;
  transition: filter 0.2s ease;
}

.launch-banner:hover {
  filter: brightness(1.04);
}

.launch-banner:focus-visible {
  outline: 3px solid var(--green-dark);
  outline-offset: -3px;
}

.launch-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 0;
  text-align: center;
}

.launch-banner strong {
  font-weight: 950;
}

.launch-banner span {
  font-weight: 400;
}

.launch-banner-count {
  border: 1px solid rgba(39, 50, 47, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  padding: 3px 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand-mark {
  width: 64px;
  height: 58px;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: transparent;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-name {
  letter-spacing: 0;
}

.brand-line {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: nowrap;
}

.nav a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  color: var(--muted);
  padding: 9px 11px;
  font-weight: 800;
}

.nav a:hover {
  background: var(--lavender-soft);
  color: var(--ink);
}

.nav a[aria-current="page"] {
  background: var(--blue-soft);
  color: var(--ink);
}

.nav a.nav-trial-button {
  margin-left: 10px;
  background: var(--green);
  color: white;
}

.nav a.nav-trial-button:hover {
  background: var(--green-dark);
  color: white;
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(39, 50, 47, 0.72),
      rgba(111, 148, 175, 0.24),
      rgba(226, 138, 102, 0.14)
    ),
    url("./assets/online-tutoring-session-palette.png")
      center / cover;
  color: white;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe0d0;
}

.subhead {
  max-width: 62ch;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  padding: 11px 16px;
  font-weight: 850;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

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

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-light {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.section {
  padding: 78px 0;
  background: linear-gradient(180deg, var(--bg), var(--lavender-soft));
}

.intro-grid,
.rates-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

.rates-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  justify-content: center;
}

.contact-grid {
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
}

.intro-section .intro-grid {
  align-items: center;
}

.intro-section .about-grid {
  grid-template-columns: minmax(280px, 360px) minmax(0, 620px);
  justify-content: center;
  align-items: start;
  column-gap: 72px;
  row-gap: 24px;
}

.about-heading {
  grid-column: 1 / -1;
}

.about-heading .eyebrow {
  color: var(--green-dark);
}

.about-media {
  align-self: center;
}

.intro-copy {
  display: grid;
  gap: 16px;
}

.intro-copy h3 {
  margin: 14px 0 0;
  color: var(--green-dark);
}

.about-title {
  overflow-wrap: normal;
  white-space: nowrap;
}

.about-photo {
  width: min(100%, 360px);
  aspect-ratio: 1 / 1;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center;
}

.about-quick-facts {
  width: min(100%, 360px);
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.about-quick-facts span {
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--green-dark);
  padding: 10px 12px;
  font-weight: 850;
}

.intro-copy p,
.rates-grid p,
.contact-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.rates-grid h2 + p {
  margin-top: 14px;
}

.contact-grid h2 + p {
  margin-top: 18px;
}

.contact-grid h2 + .booking-calendar {
  margin-top: 28px;
}

.rates-grid h2 + .booking-calendar {
  margin-top: 52px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.service-grid,
.resource-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card,
.resource-card,
.testimonial-card,
.story-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(79, 104, 95, 0.09);
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 220px;
  padding: 22px;
  border-top: 5px solid var(--green);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

.service-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.abc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.abc-icon span:nth-child(1) {
  transform: rotate(-12deg) translateY(1px);
}

.abc-icon span:nth-child(2) {
  transform: rotate(5deg) translateY(-2px);
}

.abc-icon span:nth-child(3) {
  transform: rotate(13deg) translateY(1px);
}

.service-card:nth-child(2n) {
  border-top-color: var(--coral);
}

.service-card:nth-child(2n) .service-icon {
  background: #fff0e9;
  color: var(--coral);
}

.service-card:nth-child(3n) {
  border-top-color: var(--lavender);
}

.service-card:nth-child(3n) .service-icon {
  background: var(--lavender-soft);
  color: var(--lavender);
}

.service-card:nth-child(4n) {
  border-top-color: var(--gold);
}

.service-card:nth-child(4n) .service-icon {
  background: #fff6dc;
  color: #9a6f12;
}

.service-card p,
.resource-card p,
.testimonial-card p,
.story-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.subject-resource-group {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.subject-resource-group > h3 {
  color: var(--green-dark);
  font-size: 1.35rem;
}

.section-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.faq-list {
  max-width: 100%;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
  padding: 0;
}

.faq-item summary {
  position: relative;
  list-style: none;
  padding: 20px 54px 20px 22px;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--green-dark);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(102, 127, 114, 0.22);
  outline-offset: 3px;
}

.faq-item p {
  margin: 0;
  padding: 0 54px 24px 22px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.resource-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.resource-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
  margin: 0 0 16px;
  border-radius: 10px;
  background: white;
}

.resource-logo-im-crop {
  width: 56px;
  padding: 5px;
  box-sizing: border-box;
  object-fit: cover;
  object-position: left center;
  background: var(--green-dark);
}

.resource-card span {
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-top: 14px;
}

.resource-card a {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.steps-list span,
.label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.steps-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.rates-cta {
  margin-top: 24px;
}

.rates-section {
  display: flex;
  align-items: center;
}

.rate-panel {
  overflow-x: visible;
}

.pricing-table {
  width: min(100%, 760px);
  margin: 0 auto;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 0 10px 30px rgba(79, 104, 95, 0.09);
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table th {
  background: var(--green);
  color: white;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.pricing-table td {
  color: var(--muted);
  font-weight: 750;
  overflow-wrap: anywhere;
  vertical-align: top;
}

.pricing-table td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.pricing-table .pricing-symbol {
  padding-right: 0;
  padding-left: 0;
  text-align: center;
  font-weight: 900;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
  width: 35%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
  width: 21%;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3) {
  width: 4%;
}

.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4) {
  width: 19%;
}

.pricing-table th:nth-child(5),
.pricing-table td:nth-child(5) {
  width: 4%;
}

.pricing-table th:nth-child(6),
.pricing-table td:nth-child(6) {
  width: 17%;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.plan-date {
  display: block;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 400;
}

.pricing-details {
  width: min(100%, 760px);
  margin: 36px auto 0;
}

.pricing-details h3 {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-details ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-details li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.pricing-details li::before {
  position: absolute;
  top: 0.58em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.pricing-details strong {
  color: var(--ink);
}

.pricing-details span {
  display: inline;
}

.testimonial-card,
.story-card {
  padding: 20px;
}

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

.testimonial-card-wide {
  grid-column: span 2;
}

.testimonial-card p {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 400;
}

.testimonial-rating {
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.testimonial-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-card .testimonial-rating span {
  display: inline;
  margin-top: 0;
  color: var(--gold);
  font-size: inherit;
}

.testimonial-submit {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.testimonial-submit .section-head {
  margin-bottom: 0;
}

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

.rating-options {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.rating-options legend {
  color: var(--ink);
  font-weight: 850;
}

.star-options {
  display: flex;
  gap: 4px;
  align-items: center;
}

.star-options label {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.star-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.star-options span {
  color: #cfc4b4;
  font-size: 2.2rem;
  font-weight: 850;
  line-height: 1;
}

.star-options:has(label:nth-child(1):hover) label:nth-child(-n + 1) span,
.star-options:has(label:nth-child(2):hover) label:nth-child(-n + 2) span,
.star-options:has(label:nth-child(3):hover) label:nth-child(-n + 3) span,
.star-options:has(label:nth-child(4):hover) label:nth-child(-n + 4) span,
.star-options:has(label:nth-child(5):hover) label:nth-child(-n + 5) span {
  color: var(--gold);
}

.star-options label:has(input:focus-visible) {
  outline: 3px solid rgba(228, 182, 79, 0.28);
  outline-offset: 2px;
}

.star-options:has(label:nth-child(1) input:checked) label:nth-child(-n + 1) span,
.star-options:has(label:nth-child(2) input:checked) label:nth-child(-n + 2) span,
.star-options:has(label:nth-child(3) input:checked) label:nth-child(-n + 3) span,
.star-options:has(label:nth-child(4) input:checked) label:nth-child(-n + 4) span,
.star-options:has(label:nth-child(5) input:checked) label:nth-child(-n + 5) span {
  color: var(--gold);
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-weight: 400;
  color: var(--green-dark);
}

.contact-details span {
  color: var(--muted);
  font-weight: 700;
}

.contact-link-box {
  display: block;
  border: 1px solid rgba(113, 151, 131, 0.24);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: linear-gradient(135deg, white, var(--blue-soft));
  padding: 13px 14px;
  box-shadow: 0 8px 20px rgba(79, 104, 95, 0.08);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link-box:hover {
  box-shadow: 0 12px 26px rgba(79, 104, 95, 0.13);
  transform: translateY(-1px);
}

.contact-details + .booking-calendar {
  margin-top: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 60px;
  padding: 22px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.name-group {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.name-group legend {
  color: var(--ink);
  font-weight: 900;
}

.time-preferences,
.booking-calendar {
  display: grid;
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.time-preferences legend,
.contact-form h3,
.booking-calendar h3 {
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 850;
}

.time-preferences p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.booking-calendar p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 400;
}

.booking-calendar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 16px;
}

.booking-calendar .btn {
  justify-self: start;
}

.booking-calendar button,
.booking-calendar [role="button"] {
  min-height: 46px;
  border-radius: var(--radius) !important;
  background: var(--green) !important;
  padding: 11px 16px !important;
  color: white !important;
  font-family: inherit !important;
  font-weight: 850 !important;
}

.booking-calendar button:hover,
.booking-calendar [role="button"]:hover {
  background: var(--green-dark) !important;
}

.calendar-options {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(64px, auto));
  gap: 8px;
}

.calendar-options label {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 8px;
  text-align: center;
  cursor: pointer;
}

.calendar-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.calendar-options span {
  font-size: 0.9rem;
  line-height: 1.2;
}

.calendar-options label:has(input:checked) {
  border-color: var(--green);
  background: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(102, 127, 114, 0.16);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  padding: 9px 10px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(102, 127, 114, 0.16);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--green-dark);
  font-weight: 850;
}

.form-status:empty {
  display: none;
}

.site-footer {
  background: linear-gradient(90deg, var(--green-dark), var(--blue));
  color: white;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
}

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

.footer-links a {
  color: var(--blue-soft);
}

@media (max-width: 1000px) {
  .service-grid,
  .resource-grid,
  .steps-list {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 860px) {
  .rates-grid {
    gap: 40px;
  }

  .rates-grid h2 + .booking-calendar {
    margin-top: 32px;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 560px;
  }

  .intro-grid,
  .rates-grid,
  .contact-grid,
  .rate-panel,
  .testimonial-submit,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card-wide {
    grid-column: span 1;
  }

  .intro-section .about-grid {
    grid-template-columns: 1fr;
    justify-content: stretch;
    column-gap: 0;
  }

  .contact-grid {
    gap: 34px;
  }

  .contact-form {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(var(--wrap), calc(100% - 28px));
  }

  .site-header {
    position: static;
  }

  .header-inner {
    gap: 10px;
    min-height: 0;
    padding: 10px 0 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 52px;
    height: 48px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-line {
    display: none;
  }

  .nav {
    width: 100%;
    display: grid;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    justify-content: flex-start;
    gap: 6px;
    overflow-x: auto;
    padding: 2px 0 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .launch-banner-inner {
    align-items: center;
    flex-direction: column;
    gap: 2px;
  }

  .nav a {
    min-height: 36px;
    border: 1px solid rgba(234, 220, 201, 0.9);
    background: rgba(255, 255, 255, 0.62);
    padding: 7px 10px;
    font-size: 0.88rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 430px;
    align-items: flex-end;
    background-position: 62% center;
  }

  .hero-inner {
    padding: 72px 0 44px;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-title {
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .subhead {
    margin-top: 14px;
    font-size: 1rem;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 44px;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .service-grid,
  .resource-grid,
  .steps-list,
  .form-row,
  .star-options,
  .calendar-options {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    min-width: 620px;
    font-size: 0.84rem;
  }

  .rate-panel {
    overflow-x: auto;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 9px 6px;
  }

  .calendar-options {
    grid-auto-flow: row;
    grid-template-rows: none;
  }

  .steps-list li,
  .service-card,
  .resource-card {
    min-height: auto;
  }

  .service-card,
  .resource-card,
  .testimonial-card,
  .story-card,
  .contact-form {
    padding: 18px;
  }

  .faq-item summary {
    padding: 16px 48px 16px 18px;
    font-size: 1.08rem;
  }

  .faq-item p {
    padding: 0 18px 18px;
    font-size: 0.98rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
