:root {
  --navy: #0b2450;
  --navy-2: #132f64;
  --blue: #4774c8;
  --blue-soft: #eaf1ff;
  --gold: #d3aa2c;
  --gold-deep: #a77b08;
  --gold-soft: #f8edc7;
  --cream: #fbf8f0;
  --paper: #fffdf8;
  --ink: #14213d;
  --muted: #5d6880;
  --line: #d9dfeb;
  --white: #ffffff;
  --green: #2f6f5e;
  --shadow: 0 20px 60px rgba(11, 36, 80, 0.12);
  --shadow-small: 0 10px 24px rgba(11, 36, 80, 0.09);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: "Trebuchet MS", "Aptos Display", "Segoe UI", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  margin-bottom: 1.4rem;
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

::selection {
  color: var(--navy);
  background: var(--gold-soft);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 110px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-paper {
  background: var(--paper);
}

.section-blue {
  background: var(--blue-soft);
}

.section-navy {
  color: white;
  background: var(--navy);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: white;
}

.section-gold {
  background: var(--gold-soft);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  color: var(--gold-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 99px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.section-navy .lead,
.section-navy .muted {
  color: rgba(255, 255, 255, 0.78);
}

.muted {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-small);
}

.button-primary {
  color: white;
  background: var(--navy);
}

.button-gold {
  color: var(--navy);
  background: var(--gold);
}

.button-white {
  color: var(--navy);
  background: white;
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: var(--navy);
}

.button-small {
  min-height: 40px;
  padding: 9px 15px;
  font-size: 0.92rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 36, 80, 0.08);
  background: rgba(251, 248, 240, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 196px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a:not(.button) {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.button):hover,
.site-nav a[aria-current="page"]:not(.button) {
  background: white;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 21px;
  height: 2px;
  margin: auto;
  content: "";
  background: var(--navy);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -7px;
}

.menu-toggle span::after {
  position: absolute;
  top: 7px;
}

.menu-open .menu-toggle span {
  background: transparent;
}

.menu-open .menu-toggle span::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-toggle span::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 110px;
}

.hero::before {
  position: absolute;
  top: -180px;
  right: -220px;
  width: 620px;
  height: 620px;
  content: "";
  background: var(--gold-soft);
  border-radius: 46% 54% 63% 37% / 42% 48% 52% 58%;
  transform: rotate(12deg);
}

.hero::after {
  position: absolute;
  bottom: 22px;
  left: -80px;
  width: 260px;
  height: 95px;
  content: "";
  border: 5px solid var(--blue);
  border-color: var(--blue) transparent transparent transparent;
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.45;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 70px;
}

.hero h1 {
  max-width: 780px;
}

.hero h1 .highlight {
  position: relative;
  display: inline-block;
  color: var(--blue);
}

.hero h1 .highlight::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 11px;
  content: "";
  background: url("data:image/svg+xml,%3Csvg width='400' height='16' viewBox='0 0 400 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 10c68-8 132 6 197-1 64-7 131-4 197 2' fill='none' stroke='%23d3aa2c' stroke-width='6' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  z-index: -1;
}

.hero-copy {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.2rem;
  padding: 8px 13px;
  color: var(--navy);
  background: white;
  border: 1px solid rgba(11, 36, 80, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-kicker::before {
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.hero-orbit {
  position: absolute;
  top: 44px;
  right: 22px;
  width: 390px;
  height: 390px;
  border: 2px dashed rgba(11, 36, 80, 0.22);
  border-radius: 50%;
}

.hero-logo-card {
  position: absolute;
  top: 86px;
  right: 62px;
  display: grid;
  width: 310px;
  height: 310px;
  place-items: center;
  padding: 35px;
  background: white;
  border: 2px solid var(--navy);
  border-radius: 44% 56% 45% 55% / 52% 42% 58% 48%;
  box-shadow: var(--shadow);
  transform: rotate(4deg);
}

.hero-logo-card img {
  width: 220px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  max-width: 205px;
  padding: 18px 20px;
  background: var(--gold);
  border: 2px solid var(--navy);
  box-shadow: 6px 7px 0 var(--navy);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  transform: rotate(-5deg);
}

.hero-note.top {
  top: 18px;
  left: 0;
}

.hero-note.bottom {
  right: 8px;
  bottom: 28px;
  color: white;
  background: var(--blue);
  transform: rotate(3deg);
}

.hero-dots {
  position: absolute;
  bottom: 48px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 10px;
  transform: rotate(-8deg);
}

.hero-dots span {
  width: 10px;
  height: 10px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.28;
}

.trust-strip {
  padding: 22px 0;
  color: white;
  background: var(--navy);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 7px 12px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 750;
}

.trust-item span {
  color: var(--gold);
  font-size: 1.1rem;
}

.intro-grid,
.split-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 70px;
}

.intro-card {
  position: relative;
  padding: 42px;
  background: var(--blue-soft);
  border-radius: var(--radius-xl);
}

.intro-card::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 90px;
  height: 90px;
  content: "";
  background: var(--gold);
  border-radius: 28px;
  z-index: -1;
}

.check-list,
.clean-list,
.icon-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.icon-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
}

.check-list li::before {
  position: absolute;
  top: 0.25em;
  left: 0;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  content: "✓";
  color: white;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.icon-list li::before {
  position: absolute;
  top: 0.62em;
  left: 3px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 24px;
}

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

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

.service-card,
.value-card,
.price-card,
.info-card,
.testimonial,
.step-card,
.contact-card {
  position: relative;
  background: white;
  border: 1px solid rgba(11, 36, 80, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-small);
}

.service-card {
  min-height: 100%;
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px) rotate(-0.4deg);
  box-shadow: var(--shadow);
}

.service-card:nth-child(2n):hover {
  transform: translateY(-6px) rotate(0.4deg);
}

.icon-badge {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--navy);
  background: var(--gold-soft);
  border: 2px solid var(--navy);
  border-radius: 18px 18px 18px 6px;
  font-size: 1.5rem;
  font-weight: 900;
}

.icon-badge.blue {
  color: white;
  background: var(--blue);
}

.icon-badge.gold {
  background: var(--gold);
}

.card-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--navy);
  background: var(--blue-soft);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.card-link:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 45px;
}

.section-heading > div {
  max-width: 780px;
}

.section-heading h2 {
  margin-bottom: 0.8rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.why-sticky {
  position: sticky;
  top: 125px;
  align-self: start;
}

.reason-list {
  display: grid;
  gap: 16px;
}

.reason {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.reason-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border-radius: 50%;
  font-family: "Trebuchet MS", sans-serif;
  font-weight: 900;
}

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

.testimonial {
  padding: 34px;
}

.testimonial::before {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.testimonial p {
  font-size: 1.05rem;
}

.testimonial footer {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.price-preview {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.price-mini {
  padding: 34px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-xl);
}

.price-mini.gold {
  color: var(--navy);
  background: var(--gold);
}

.price-amount {
  margin: 0.4rem 0 0.6rem;
  font-family: "Trebuchet MS", sans-serif;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.price-amount small {
  font-size: 0.35em;
  letter-spacing: 0;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 74px 0;
  color: white;
  background: var(--navy);
}

.cta-band::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 420px;
  height: 420px;
  content: "";
  border: 70px solid var(--gold);
  border-radius: 50%;
  opacity: 0.14;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-grid h2 {
  max-width: 760px;
  margin-bottom: 0.7rem;
  color: white;
}

.cta-grid p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 90px;
  background: var(--paper);
}

.page-hero::after {
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 300px;
  height: 300px;
  content: "";
  background: var(--gold-soft);
  border-radius: 50% 43% 56% 44%;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 0.55fr;
  gap: 70px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.page-stamp {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 30px;
  color: var(--navy);
  background: var(--gold);
  border: 3px solid var(--navy);
  border-radius: 52% 48% 44% 56% / 46% 54% 46% 54%;
  box-shadow: 12px 14px 0 var(--navy);
  text-align: center;
  transform: rotate(3deg);
}

.page-stamp strong {
  display: block;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-detail-list {
  display: grid;
  gap: 28px;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-small);
}

.service-side {
  position: relative;
  min-height: 280px;
  padding: 34px;
  color: white;
  background: var(--navy);
}

.service-detail:nth-child(2n) .service-side {
  color: var(--navy);
  background: var(--gold);
}

.service-index {
  display: block;
  margin-bottom: 70px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.28;
}

.service-side h3 {
  color: inherit;
  font-size: 2rem;
}

.service-main {
  padding: 40px;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 28px;
}

.curriculum-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.curriculum-links a {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--blue-soft);
  border: 1px solid rgba(11, 36, 80, 0.14);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.curriculum-links a:hover {
  background: var(--gold-soft);
}

.workshop-panel {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  padding: 48px;
  color: white;
  background: var(--navy);
  border-radius: var(--radius-xl);
}

.workshop-panel h2,
.workshop-panel h3 {
  color: white;
}

.workshop-panel .check-list li::before {
  color: var(--navy);
  background: var(--gold);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.price-card {
  overflow: hidden;
  padding: 36px;
}

.price-card.featured {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.price-card.featured h3,
.price-card.featured h4 {
  color: white;
}

.price-card.featured .muted {
  color: rgba(255, 255, 255, 0.72);
}

.price-card .price-amount {
  color: var(--navy);
  font-size: 3.8rem;
}

.price-card.featured .price-amount {
  color: var(--gold);
}

.package-table {
  overflow: hidden;
  margin-top: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
}

.package-row {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  padding: 24px 30px;
  border-bottom: 1px solid var(--line);
}

.package-row:last-child {
  border-bottom: 0;
}

.package-row strong {
  color: var(--navy);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.22rem;
}

.package-price {
  color: var(--navy);
  font-size: 1.7rem;
  font-weight: 900;
}

.package-per {
  min-width: 116px;
  color: var(--muted);
  text-align: right;
}

.included-box {
  padding: 38px;
  background: var(--gold-soft);
  border-radius: var(--radius-xl);
}

.about-portrait {
  position: relative;
  min-height: 460px;
}

.about-shape {
  position: absolute;
  inset: 25px 30px 0 0;
  background: var(--blue);
  border-radius: 47% 53% 63% 37% / 42% 38% 62% 58%;
  transform: rotate(-3deg);
}

.about-logo {
  position: absolute;
  top: 60px;
  right: 0;
  display: grid;
  width: 330px;
  height: 330px;
  place-items: center;
  padding: 48px;
  background: white;
  border: 3px solid var(--navy);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.about-logo img {
  width: 235px;
}

.about-note {
  position: absolute;
  bottom: 10px;
  left: 0;
  max-width: 260px;
  padding: 22px;
  background: var(--gold);
  border: 2px solid var(--navy);
  box-shadow: 7px 8px 0 var(--navy);
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.35;
  transform: rotate(2deg);
}

.value-card {
  padding: 28px;
}

.value-card h3 {
  font-size: 1.35rem;
}

.founder-story {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.founder-sticky {
  position: sticky;
  top: 125px;
  align-self: start;
}

.quote-panel {
  padding: 34px;
  color: white;
  background: var(--blue);
  border-radius: 40px 18px 40px 18px;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  line-height: 1.4;
  transform: rotate(-1.4deg);
}

.story-copy h3 {
  margin-top: 2.4rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card {
  padding: 28px;
}

.step-number {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 20px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  border: 2px solid var(--navy);
  border-radius: 50%;
  font-weight: 900;
}

.form-frame {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.form-frame iframe {
  display: block;
  width: 100%;
  min-height: 1240px;
  border: 0;
}

.booking-layout,
.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 40px;
}

.booking-aside,
.contact-aside {
  position: sticky;
  top: 120px;
}

.info-card {
  padding: 30px;
}

.info-card + .info-card {
  margin-top: 18px;
}

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

.location-card {
  padding: 32px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.contact-form {
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid #cbd4e2;
  border-radius: 13px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(71, 116, 200, 0.14);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card {
  padding: 28px;
}

.contact-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

summary {
  position: relative;
  padding: 20px 56px 20px 22px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  font-size: 1.5rem;
  transform: translateY(-50%);
}

details[open] summary::after {
  content: "−";
}

details > div {
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  padding: 72px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #071a3d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 44px;
}

.footer-logo {
  width: 220px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.site-footer h3 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

.footer-bottom p {
  margin: 0;
}

.notice {
  padding: 16px 18px;
  color: var(--navy);
  background: var(--gold-soft);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.center {
  text-align: center;
}

.center .lead {
  margin-inline: auto;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-nav {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    padding: 28px 20px 50px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .site-nav a:not(.button) {
    padding: 14px 16px;
    font-size: 1.1rem;
  }

  .site-nav .button {
    margin-top: 10px;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .cards-4,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .founder-story,
  .booking-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-sticky,
  .founder-sticky,
  .booking-aside,
  .contact-aside {
    position: static;
  }

  .service-detail {
    grid-template-columns: 0.46fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 80px 0;
  }

  .section-sm {
    padding: 58px 0;
  }

  .brand img {
    width: 170px;
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
  }

  .hero {
    padding: 64px 0 80px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-visual {
    min-height: 440px;
    transform: scale(0.92);
    transform-origin: top center;
  }

  .hero-orbit {
    right: 50%;
    width: 320px;
    height: 320px;
    transform: translateX(50%);
  }

  .hero-logo-card {
    top: 80px;
    right: 50%;
    width: 260px;
    height: 260px;
    transform: translateX(50%) rotate(4deg);
  }

  .hero-logo-card img {
    width: 180px;
  }

  .hero-note.top {
    left: 12px;
  }

  .hero-note.bottom {
    right: 4px;
    bottom: 6px;
  }

  .trust-grid,
  .cards-3,
  .intro-grid,
  .split-grid,
  .testimonial-grid,
  .price-preview,
  .pricing-grid,
  .workshop-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-side {
    min-height: 0;
  }

  .service-index {
    margin-bottom: 36px;
  }

  .service-columns,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-main,
  .workshop-panel,
  .contact-form {
    padding: 28px;
  }

  .field.full {
    grid-column: auto;
  }

  .package-row {
    grid-template-columns: 1fr auto;
    gap: 10px 20px;
  }

  .package-per {
    grid-column: 1 / -1;
    min-width: 0;
    text-align: left;
  }

  .about-portrait {
    min-height: 390px;
  }

  .about-logo {
    right: 10px;
    width: 280px;
    height: 280px;
  }

  .about-note {
    max-width: 230px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

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

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 420px;
    transform: scale(0.84);
  }

  .hero-note {
    max-width: 178px;
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .cards-4,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div {
    grid-column: auto !important;
  }

  .reason {
    grid-template-columns: 1fr;
  }

  .page-stamp {
    min-height: 170px;
  }

  .about-logo {
    width: 230px;
    height: 230px;
    padding: 35px;
  }

  .about-shape {
    inset: 40px 20px 30px 10px;
  }

  .about-note {
    max-width: 205px;
    padding: 17px;
  }
}


.form-status {
  min-height: 1.5em;
  margin: 0.75rem 0 0;
  font-weight: 700;
}

.form-status.is-error {
  color: #9f1d24;
}
