:root {
  --ink: #07154d;
  --ink-soft: #111f65;
  --purple: #5521b5;
  --purple-light: #7c37e8;
  --violet-pale: #f2eefb;
  --line: #d7d9eb;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(25, 19, 86, 0.16);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 9%, rgba(101, 45, 199, 0.12), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #fbfaff 52%, #ffffff 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 94px;
  padding: 14px clamp(20px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(7, 21, 77, 0.11);
  box-shadow: 0 8px 24px rgba(7, 21, 77, 0.06);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  width: clamp(190px, 20vw, 270px);
  height: 72px;
  background: url("../assets/logo-cropped.png") left center / contain no-repeat;
}

.brand > * {
  display: none;
}

.brand strong {
  display: block;
  font-size: clamp(1.45rem, 2.2vw, 2.35rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.brand strong span {
  color: var(--purple);
}

.brand small {
  display: block;
  margin-top: 6px;
  font-weight: 800;
  font-size: 0.72rem;
  line-height: 1.15;
}

.brand-mark {
  position: relative;
  flex: 0 0 auto;
  width: 60px;
  height: 66px;
  border: 3px solid var(--purple);
  border-right-color: transparent;
  border-radius: 50% 42% 48% 45%;
}

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

.visor {
  position: absolute;
  top: 16px;
  left: -6px;
  width: 60px;
  height: 20px;
  background: linear-gradient(90deg, var(--ink), var(--purple));
  border-radius: 9px 5px 5px 9px;
  box-shadow: 8px 3px 0 rgba(7, 21, 77, 0.16);
}

.small .visor {
  top: 12px;
  width: 44px;
  height: 15px;
}

.head-line {
  position: absolute;
  right: 7px;
  bottom: 5px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transform: rotate(24deg);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 52px);
  font-weight: 900;
  color: #071555;
}

.main-nav > a,
.dropdown-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.main-nav > a.active,
.dropdown-trigger.active,
.main-nav > a:hover,
.dropdown-trigger:hover {
  background: var(--violet-pale);
}

.main-nav > a.active::after,
.dropdown-trigger.active::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  border-radius: 99px;
  background: var(--purple);
}

.dropdown {
  position: relative;
}

.dropdown-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg) translateY(-3px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(340px, 86vw);
  padding: 12px;
  border: 1px solid rgba(85, 33, 181, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
  backdrop-filter: blur(16px);
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.dropdown-menu a:hover {
  background: var(--violet-pale);
  color: var(--purple);
}

.phone-pill,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), #42108f);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(85, 33, 181, 0.28);
}

.phone-pill::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 12px;
  border: 4px solid #fff;
  border-top: 0;
  border-left: 0;
  border-radius: 0 0 10px 0;
  transform: rotate(42deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: stretch;
  min-height: 380px;
  padding: clamp(32px, 5vw, 70px) clamp(20px, 4vw, 64px) 24px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.98) 33%, rgba(255, 255, 255, 0.64) 57%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--purple);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0;
  color: var(--ink);
}

h1 span,
.section-heading h2 span {
  color: var(--purple);
}

.hero-copy p:not(.eyebrow):not(.script) {
  max-width: 560px;
  font-size: clamp(1.04rem, 1.4vw, 1.32rem);
  line-height: 1.45;
}

.script {
  margin: 22px 0 0;
  color: var(--purple);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.hero-photo {
  position: relative;
  z-index: 0;
  min-height: 360px;
  margin: -70px -64px -24px -20px;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 20%;
  filter: saturate(1.06);
  transform: scale(1.05);
}

.about-hero .hero-photo img {
  object-position: center;
  transform: none;
}

.hero-text-only {
  grid-template-columns: 1fr;
  min-height: 330px;
}

.hero-text-only::before,
.hero-text-only .hero-photo {
  display: none;
}

.hero-text-only .hero-copy {
  max-width: 980px;
}

.hero-text-only .hero-copy p:not(.eyebrow):not(.script) {
  max-width: 760px;
}

.photo-glow {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.88), transparent);
}

.cards-grid,
.section-block,
.story-contact-grid,
.suggestions,
.news-section,
.local-grid,
.local-map {
  width: min(1500px, calc(100% - 48px));
  margin: 0 auto;
}

.summary-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  padding: 12px 0 26px;
}

.glass-card {
  min-height: 160px;
  padding: 24px 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(7, 21, 77, 0.06);
}

.glass-card h2 {
  margin-bottom: 10px;
  font-size: 1rem;
  text-transform: uppercase;
}

.glass-card p,
.glass-card li {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.line-icon {
  display: block;
  position: relative;
  width: 54px;
  height: 54px;
  margin-bottom: 10px;
  color: var(--purple);
}

.line-icon::before,
.line-icon::after {
  content: "";
  position: absolute;
  border: 4px solid currentColor;
}

.target::before {
  inset: 8px;
  border-radius: 50%;
}

.target::after {
  inset: 21px;
  border-radius: 50%;
  box-shadow: 0 -24px 0 -9px currentColor, 0 24px 0 -9px currentColor, -24px 0 0 -9px currentColor, 24px 0 0 -9px currentColor;
}

.eye::before {
  inset: 12px 2px;
  border-radius: 50% 8px;
  transform: rotate(45deg);
}

.eye::after {
  inset: 20px;
  border-radius: 50%;
}

.heart::before {
  inset: 9px 8px 6px;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
  border-radius: 0 0 8px 0;
}

.people::before {
  width: 18px;
  height: 18px;
  left: 6px;
  top: 8px;
  border-radius: 50%;
  box-shadow: 24px 0 0 -2px #fff, 24px 0 0 0 currentColor;
}

.people::after {
  left: 1px;
  right: 1px;
  bottom: 6px;
  height: 19px;
  border-radius: 18px 18px 7px 7px;
}

.vr::before {
  inset: 13px 4px;
  border-radius: 15px;
}

.vr::after {
  left: 16px;
  right: 16px;
  top: 24px;
  height: 4px;
  border: 0;
  background: currentColor;
  box-shadow: -10px 0 0 currentColor, 10px 0 0 currentColor;
}

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: inset 0 0 0 3px var(--purple);
}

.section-block {
  padding: 24px 0 8px;
}

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

.section-heading h2,
.history-card h2,
.suggestions h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.5rem);
  line-height: 1;
}

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

.service-card {
  min-height: 130px;
  padding: 24px;
  border: 1px solid rgba(85, 33, 181, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 238, 251, 0.92)),
    radial-gradient(circle at 88% 14%, rgba(124, 55, 232, 0.22), transparent 8rem);
  box-shadow: 0 14px 36px rgba(7, 21, 77, 0.08);
  transition: 0.22s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card span {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--purple);
}

.service-card small {
  font-size: 0.96rem;
  line-height: 1.5;
}

.story-contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.55fr);
  gap: 22px;
  padding: 26px 0;
}

.map-card {
  padding: 26px;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 24% 80%, rgba(124, 55, 232, 0.9), transparent 12rem),
    linear-gradient(135deg, #07154d, #33107e 65%, #5521b5);
  box-shadow: var(--shadow);
}

.map-card h2 {
  font-size: 1.35rem;
  text-transform: uppercase;
}

.map-wrap {
  overflow: hidden;
  height: 260px;
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92) hue-rotate(18deg);
}

.contact-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 3px;
  padding-left: 42px;
  position: relative;
}

.contact-list li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 27px;
  height: 27px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.contact-list span {
  opacity: 0.8;
}

.history-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(7, 21, 77, 0.08);
}

.history-copy {
  padding: 30px;
  max-width: 980px;
}

.history-copy p {
  line-height: 1.58;
}

blockquote {
  margin: 26px 0 0;
  padding: 24px 28px;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), #7a2bd4);
  box-shadow: 0 18px 34px rgba(85, 33, 181, 0.24);
}

blockquote span {
  display: block;
  margin-top: 10px;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  text-align: right;
  font-size: 1.6rem;
}

.about-manifesto {
  padding-top: 6px;
}

.manifesto-card {
  max-width: 1040px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 10%, rgba(85, 33, 181, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 38px rgba(7, 21, 77, 0.08);
}

.manifesto-card p {
  max-width: 900px;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.65;
}

.manifesto-card strong {
  color: var(--ink);
}

.manifesto-card .motto-line {
  color: var(--purple);
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.manifesto-card blockquote {
  max-width: 620px;
}

.history-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 18px;
}

.history-gallery {
  margin-top: 22px;
  max-width: 540px;
}

.history-gallery figure,
.media-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.history-gallery img,
.media-gallery img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
}

.history-gallery img {
  aspect-ratio: 4 / 3;
  max-height: 170px;
  object-fit: contain;
  background: #fff;
}

.media-gallery {
  width: min(940px, calc(100% - 48px));
  margin: 20px auto 8px;
}

.media-gallery.single-photo {
  grid-template-columns: 1fr;
}

.media-gallery.two-items {
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
}

.media-gallery.single-photo img {
  object-fit: contain;
  background: #fff;
}

.media-gallery figcaption {
  padding: 14px 18px 18px;
  color: var(--ink-soft);
  font-weight: 800;
  line-height: 1.4;
}

.video-section {
  width: min(900px, calc(100% - 48px));
  margin: 20px auto 8px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #040815;
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  max-height: 520px;
  background: #040815;
}

.news-section {
  padding: 10px 0 30px;
}

.news-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 24px;
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(85, 33, 181, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.news-feature h3 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}

.news-feature p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.news-feature strong {
  color: var(--ink);
}

.news-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-self: start;
}

.news-media-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 21, 77, 0.08);
}

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

.news-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #fff, rgba(242, 238, 255, 0.86));
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.news-grid span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--purple);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.news-grid h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.news-grid p {
  color: var(--ink-soft);
  line-height: 1.48;
}

.news-grid a {
  color: var(--purple);
  font-weight: 900;
}

.suggestions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.18), transparent 16rem),
    linear-gradient(135deg, #07154d, #5521b5);
  box-shadow: var(--shadow);
}

.suggestions .eyebrow,
.suggestions p {
  color: #fff;
}

.suggestions p {
  max-width: 820px;
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 40px clamp(20px, 4vw, 64px);
  color: #fff;
  background: #07154d;
}

.site-footer h3 {
  margin-bottom: 12px;
  color: #fff;
}

.site-footer a,
.site-footer span,
.site-footer p {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand strong {
  display: block;
  font-size: 1.5rem;
}

.service-page .hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding-bottom: 18px;
}

.service-page .hero::before,
.service-page .hero-photo {
  display: none;
}

.service-page .hero-copy {
  max-width: 980px;
  padding: 18px 0;
}

.service-page .hero-copy p:not(.eyebrow):not(.script) {
  max-width: 760px;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: 34px auto 50px;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  width: min(1500px, calc(100% - 48px));
  margin: 18px auto 24px;
}

.course-showcase {
  width: min(1560px, calc(100% - 48px));
}

.service-showcase .service-poster-section,
.service-showcase .service-info-card {
  width: 100%;
  margin: 0;
}

.service-showcase .service-info-card {
  min-height: 100%;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.course-showcase .service-poster-card img {
  max-height: 900px;
}

.service-info-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: 0 auto 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(85, 33, 181, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.service-info-card h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.service-info-card p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: inset 0 0 0 5px #fff;
}

.birthday-prices {
  max-width: 640px;
}

.birthday-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.photo-text-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  width: min(1220px, calc(100% - 48px));
  margin: 20px auto 8px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 12%, rgba(85, 33, 181, 0.1), transparent 15rem),
    rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.photo-text-card figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.photo-text-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
}

.photo-text-card p {
  color: var(--ink-soft);
  line-height: 1.55;
}

.detail-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 34px rgba(7, 21, 77, 0.06);
}

.detail-panel h2 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.detail-panel li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.service-poster-section {
  width: min(1180px, 100%);
  margin: 18px auto 8px;
}

.service-poster-card {
  display: flex;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.service-poster-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 1080px;
  object-fit: contain;
  background: #fff;
}

.service-poster-card.poster-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
}

.service-poster-card.poster-pair img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(7, 21, 77, 0.08);
}

.quick-reserve {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 16%, rgba(255, 255, 255, 0.18), transparent 14rem),
    linear-gradient(135deg, #07154d, #5521b5);
}

.quick-reserve h2 {
  margin-bottom: 4px;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
}

.quick-reserve p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
}

.quick-reserve .primary-cta {
  flex: 0 0 auto;
  background: #fff;
  color: var(--purple);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  padding: 34px 0 24px;
}

.schedule-panel {
  grid-column: 1 / -1;
}

.schedule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.schedule-poster {
  overflow: hidden;
  width: min(900px, 100%);
  margin: 18px auto 22px;
  border: 1px solid rgba(85, 33, 181, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.schedule-poster img {
  width: 100%;
  height: auto;
}

.schedule-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(85, 33, 181, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--violet-pale));
}

.schedule-list strong {
  color: var(--ink);
}

.schedule-list span {
  color: var(--purple);
  font-weight: 900;
  text-align: right;
}

.note {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-weight: 700;
}

.game-catalog {
  background:
    radial-gradient(circle at 90% 12%, rgba(85, 33, 181, 0.08), transparent 14rem),
    rgba(255, 255, 255, 0.86);
}

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

.price-row div {
  padding: 18px;
  border: 1px solid rgba(85, 33, 181, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, var(--violet-pale));
}

.price-row strong {
  display: block;
  color: var(--purple);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  line-height: 1;
}

.price-row span {
  color: var(--ink);
  font-weight: 900;
}

.game-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(85, 33, 181, 0.16);
  box-shadow: 0 8px 18px rgba(7, 21, 77, 0.06);
}

.reservation-card {
  padding: 34px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 255, 255, 0.18), transparent 15rem),
    linear-gradient(135deg, #07154d, #5521b5);
  box-shadow: var(--shadow);
}

.reservation-card .eyebrow,
.reservation-card p {
  color: #fff;
}

.reservation-card h2 {
  font-size: clamp(1.8rem, 2.8vw, 3.1rem);
}

.reservation-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-weight: 900;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  font: inherit;
}

.booking-form textarea {
  min-height: 96px;
  resize: vertical;
}

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

.booking-form .reservation-actions {
  margin: 4px 0 0;
}

.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.1);
}

.secondary-cta.dark {
  border-color: rgba(85, 33, 181, 0.2);
  color: var(--purple);
  background: var(--violet-pale);
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
}

.local-map {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 44px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.06);
}

.local-map h2 {
  font-size: clamp(1.8rem, 2.8vw, 3.1rem);
}

.local-map .map-wrap {
  height: 330px;
  margin: 0;
}

.wall-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  width: min(1220px, calc(100% - 48px));
  margin: 20px auto 52px;
}

.wall-form-card,
.wall-board {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(7, 21, 77, 0.08);
}

.wall-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

.wall-form input,
.wall-form select,
.wall-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.wall-form textarea {
  resize: vertical;
}

.review-wall {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.review-card {
  padding: 18px;
  border: 1px solid rgba(85, 33, 181, 0.14);
  border-radius: 16px;
  background: linear-gradient(135deg, #fff, var(--violet-pale));
}

.review-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-card span {
  color: var(--purple);
  font-weight: 800;
}

.review-stars {
  margin: 8px 0;
  color: var(--purple);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

@media (max-width: 1160px) {
  .site-header {
    min-height: 82px;
  }

  .phone-pill {
    display: none;
  }

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

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

  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-feature {
    grid-template-columns: 1fr;
  }

  .story-contact-grid,
  .history-card,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .local-grid,
  .local-map,
  .wall-section {
    grid-template-columns: 1fr;
  }

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

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

  .service-poster-card.poster-pair {
    grid-template-columns: 1fr;
  }

  .photo-text-card {
    grid-template-columns: 1fr;
  }

  .birthday-cta {
    justify-content: flex-start;
  }

  .schedule-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px 0;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a,
  .dropdown-trigger {
    justify-content: space-between;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 8px;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .hero::before {
    background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.88) 46%, rgba(255, 255, 255, 0.25) 100%);
  }

  .hero-photo {
    min-height: 260px;
    margin: 18px -20px -24px;
    border-radius: 24px 24px 0 0;
  }

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

  .section-heading,
  .suggestions,
  .quick-reserve {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

@media (max-width: 560px) {
  .brand strong {
    font-size: 1.35rem;
  }

  .brand {
    width: 188px;
    height: 64px;
  }

  .brand small {
    font-size: 0.62rem;
  }

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

  .visor {
    top: 13px;
    width: 48px;
    height: 17px;
  }

  .cards-grid,
  .section-block,
  .story-contact-grid,
  .suggestions,
  .service-detail,
  .service-showcase,
  .service-info-card,
  .photo-text-card,
  .local-grid,
  .local-map,
  .service-poster-section,
  .news-section,
  .wall-section,
  .media-gallery,
  .video-section {
    width: min(100% - 28px, 1500px);
  }

  .history-gallery {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .service-poster-card img {
    max-height: 72vh;
  }

  .media-gallery img {
    max-height: 320px;
  }

  .video-card video {
    max-height: 360px;
  }

  .glass-card,
  .map-card,
  .history-copy,
  .detail-panel,
  .suggestions {
    padding: 22px;
  }

  .wall-form-card,
  .wall-board {
    padding: 22px;
  }

  .schedule-list div {
    align-items: flex-start;
    flex-direction: column;
  }

  .schedule-list span {
    text-align: left;
  }

  .news-grid,
  .news-media-grid,
  .price-row {
    grid-template-columns: 1fr;
  }

  .news-media-grid img {
    height: auto;
    max-height: 420px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.2rem);
  }
}
