:root {
  --soft-gold: #c8a66e;
  --sage-green: #7d8f77;
  --dusty-blue: #5f7285;
  --light-beige: #efe8da;
  --warm-gray: #bdb7ad;
  --cream: #f7f3ea;
  --deep-green: #0d4b3f;
  --ink: #17201f;
  --muted: #68716d;
  --card: #fffdf8;
  --line: rgba(23, 32, 31, 0.11);
  --shadow: 0 22px 55px rgba(62, 69, 66, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Montserrat", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.62;
  background:
    radial-gradient(circle at 11% 8%, rgba(200, 166, 110, 0.18), transparent 27%),
    radial-gradient(circle at 89% 10%, rgba(95, 114, 133, 0.14), transparent 28%),
    linear-gradient(180deg, var(--cream), var(--light-beige));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(13, 75, 63, 0.08) 24px 25px),
    radial-gradient(circle, rgba(200, 166, 110, 0.34) 1.2px, transparent 1.8px) 0 0 / 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

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

h1,
h2,
h3,
p,
a,
span,
strong,
dd,
dt,
label,
summary {
  overflow-wrap: anywhere;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  max-width: 100%;
  padding: 16px clamp(14px, 4vw, 48px) 8px;
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(255, 253, 248, 0.84);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.header-shell > * {
  min-width: 0;
}

.brand img {
  width: 168px;
  height: 52px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  gap: 8px;
  justify-content: center;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.site-nav a {
  flex: 0 0 auto;
  min-width: 0;
  max-width: 100%;
  padding: 9px 12px;
  border-radius: 999px;
  color: #4f5d59;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a:hover,
.site-nav a.active {
  background: rgba(125, 143, 119, 0.18);
  color: var(--deep-green);
}

.header-cta,
.primary-button,
.mobile-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--deep-green);
  color: #fff;
  font: inherit;
  font-weight: 850;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(13, 75, 63, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.secondary-tone {
  background: var(--dusty-blue);
  box-shadow: 0 12px 26px rgba(95, 114, 133, 0.18);
}

.main-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px clamp(14px, 4vw, 48px) 0;
}

.pattern-card,
.content-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(255, 253, 248, 0.88);
  border-radius: 30px;
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--shadow);
}

.pattern-card::before,
.content-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(200, 166, 110, 0.24), transparent) 50% 0 / 70% 5px no-repeat,
    repeating-linear-gradient(105deg, transparent 0 28px, rgba(125, 143, 119, 0.08) 29px 30px);
}

.match-hero {
  padding: clamp(24px, 5vw, 58px);
}

.hero-center {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.capsule-label {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: 0 0 16px;
  padding: 0 18px;
  border: 1px solid rgba(125, 143, 119, 0.28);
  border-radius: 999px;
  color: var(--deep-green);
  background: rgba(239, 232, 218, 0.46);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--deep-green);
  font-size: clamp(2rem, 3.8vw, 3.55rem);
  line-height: 1.1;
  letter-spacing: 0;
}

#hero-title span {
  display: block;
}

.split-title {
  text-align: center;
}

.split-title span {
  display: block;
}

h2 {
  margin-bottom: 12px;
  color: var(--deep-green);
  font-size: clamp(1.75rem, 3.2vw, 3rem);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.25;
}

.step-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.step-row span {
  display: grid;
  gap: 2px;
  min-height: 74px;
  align-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
  font-weight: 750;
}

.step-row b {
  color: var(--deep-green);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.match-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
}

.form-title {
  text-align: center;
}

.form-title h2 {
  margin-bottom: 0;
}

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

.wide {
  grid-column: 1 / -1;
}

label,
.time-field legend {
  color: var(--ink);
  font-weight: 850;
}

label {
  display: grid;
  gap: 7px;
}

select,
input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(23, 32, 31, 0.16);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
}

select:focus,
input:focus,
a:focus-visible,
button:focus-visible,
.time-option:focus-within {
  outline: 3px solid rgba(200, 166, 110, 0.38);
  outline-offset: 2px;
}

.time-field {
  margin: 0;
  padding: 0;
  border: 0;
}

.time-field legend {
  margin-bottom: 10px;
}

.time-grid {
  display: grid;
  grid-template-columns: 86px repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.day-label {
  display: flex;
  align-items: center;
  color: var(--deep-green);
  font-weight: 900;
}

.time-option {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.time-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.time-option input:checked + span {
  border-radius: 11px;
  background: var(--sage-green);
  color: #fff;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.form-error {
  margin: -6px 0 0;
  color: #9f2222;
  font-size: 0.92rem;
  font-weight: 850;
  text-align: center;
}

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

.content-card {
  padding: clamp(26px, 5vw, 56px);
}

.content-card > * {
  position: relative;
  z-index: 1;
}

.content-kicker {
  color: var(--soft-gold);
  font-weight: 900;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.28rem);
  font-weight: 700;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
}

.summer-layout {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  justify-items: center;
}

.summer-layout > div:first-child {
  width: 100%;
  max-width: 930px;
}

.summer-layout .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.summer-layout .summer-facts,
.summer-layout .offer-box {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.info-grid,
.location-grid,
.faq-list,
.simple-grid {
  display: grid;
  gap: 14px;
}

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

.info-box,
.location-card,
.faq-list details,
.offer-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(62, 69, 66, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.info-box,
.location-card,
.offer-box {
  padding: 22px;
}

.info-box strong,
.location-card strong,
.offer-box strong {
  display: block;
  color: var(--deep-green);
  font-size: 1.15rem;
}

.info-box span,
.location-card span,
.offer-box span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 700;
}

.location-card {
  display: flex;
  flex-direction: column;
}

.location-card .map-link {
  align-self: flex-start;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 0 16px;
  border: 1px solid rgba(13, 75, 63, 0.18);
  border-radius: 999px;
  color: var(--deep-green);
  background: rgba(239, 232, 218, 0.62);
  font-weight: 850;
}

.map-link:hover {
  background: rgba(125, 143, 119, 0.18);
}

.summer-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.summer-facts article {
  min-height: 104px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(62, 69, 66, 0.06);
}

.summer-facts span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.summer-facts strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.summer-facts small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.45;
}

.poster-card {
  position: relative;
  justify-self: end;
  width: min(100%, 380px);
  overflow: hidden;
  border: 1px solid rgba(200, 166, 110, 0.4);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(62, 69, 66, 0.12);
}

.summer-layout .poster-card {
  justify-self: center;
  width: min(100%, clamp(420px, 42vw, 640px));
}

.poster-card > img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.poster-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fbf7ee;
  cursor: zoom-in;
}

.poster-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.poster-slide img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
}

.poster-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.poster-nav,
.lightbox-nav,
.lightbox-close {
  appearance: none;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.poster-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--deep-green);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 8px 18px rgba(23, 32, 31, 0.18);
  transform: translateY(-50%);
}

.poster-prev {
  left: 10px;
}

.poster-next {
  right: 10px;
}

.poster-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, #fff, rgba(239, 232, 218, 0.48));
}

.poster-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 75, 63, 0.22);
  cursor: pointer;
}

.poster-dot.is-active {
  width: 24px;
  background: var(--deep-green);
}

.poster-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(7, 24, 21, 0.88);
  backdrop-filter: blur(10px);
}

.poster-lightbox.is-open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.poster-lightbox img {
  max-width: min(92vw, 760px);
  max-height: 88vh;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  color: var(--deep-green);
  background: #fffdf8;
  font-size: 1.45rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--deep-green);
  background: #fffdf8;
  font-size: 1.6rem;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: clamp(14px, 4vw, 46px);
}

.lightbox-next {
  right: clamp(14px, 4vw, 46px);
}

.offer-box {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(200, 166, 110, 0.18), rgba(125, 143, 119, 0.13));
}

.highlight-offer {
  border-color: rgba(176, 40, 40, 0.24);
  background: linear-gradient(135deg, rgba(176, 40, 40, 0.1), rgba(200, 166, 110, 0.24));
}

.highlight-offer strong {
  color: #9f2222;
}

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

.course-system-figure {
  margin: 26px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(200, 166, 110, 0.38);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(62, 69, 66, 0.09);
}

.course-system-figure img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.course-system-figure figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.program-panel {
  margin-top: 24px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(200, 166, 110, 0.36);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(239, 232, 218, 0.7)),
    repeating-linear-gradient(105deg, transparent 0 26px, rgba(125, 143, 119, 0.08) 27px 28px);
  box-shadow: 0 16px 34px rgba(62, 69, 66, 0.08);
}

.program-eyebrow {
  display: inline-flex;
  margin: 0 0 10px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #9f6a05;
  background: rgba(200, 166, 110, 0.2);
  font-size: 0.82rem;
  font-weight: 900;
}

.program-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.4rem);
}

.program-panel > p {
  max-width: 900px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.85;
}

.program-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.program-points article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.program-points strong,
.program-points span {
  display: block;
}

.program-points strong {
  color: var(--deep-green);
  font-size: 1.02rem;
}

.program-points span {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.program-panel + .simple-grid {
  margin-top: 16px;
}

.section-heading {
  margin-top: 34px;
}

.section-heading .capsule-label {
  margin-bottom: 10px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

.return-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.faq-list details {
  overflow: hidden;
}

.faq-list details[open] {
  border-color: rgba(125, 143, 119, 0.38);
  box-shadow: 0 16px 34px rgba(62, 69, 66, 0.1);
}

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 19px 22px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--sage-green);
  font-size: 1.45rem;
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 22px auto 0;
  padding: 30px clamp(18px, 4vw, 42px) 84px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(200, 166, 110, 0.18), transparent 34%),
    linear-gradient(135deg, #07392f, var(--deep-green));
  color: rgba(255, 255, 255, 0.86);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(105deg, transparent 0 30px, rgba(200, 166, 110, 0.08) 31px 32px),
    linear-gradient(90deg, rgba(200, 166, 110, 0.22), transparent 36%, transparent);
}

.footer-brand,
.footer-social {
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  width: 118px;
  max-width: 32vw;
  margin: 0;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.site-footer p {
  margin-bottom: 6px;
}

.footer-name {
  margin-bottom: 8px;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 850;
}

.footer-name span,
.footer-version span {
  display: block;
}

.footer-name span {
  white-space: nowrap;
}

.footer-version {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 850;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.social-row {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin: 8px 0 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.small-print {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
}

.mobile-whatsapp {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 25;
  display: none;
}

@media (max-width: 1100px) {
  .header-shell,
  .two-column {
    grid-template-columns: 1fr;
  }

  .header-cta {
    justify-self: stretch;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    overflow: visible;
  }

  .site-nav a {
    flex: 1 1 auto;
    text-align: center;
  }

  .poster-card {
    justify-self: center;
  }

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

@media (max-width: 680px) {
  .site-header {
    padding: 8px 8px 4px;
  }

  .header-shell {
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .brand img {
    width: 132px;
    height: 42px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .main-shell {
    padding: 12px 8px 0;
  }

  .match-hero,
  .content-card {
    padding: 22px 14px;
    border-radius: 22px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .step-row,
  .form-grid,
  .info-grid,
  .location-grid,
  .program-points,
  .summer-facts,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 6px 8px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .match-form {
    padding: 18px 12px;
    border-radius: 18px;
  }

  .time-grid {
    grid-template-columns: 56px repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .time-option span {
    min-height: 40px;
    font-size: 0.78rem;
  }

  .day-label {
    font-size: 0.82rem;
  }

  .primary-button {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }

  .poster-card {
    justify-self: stretch;
    width: 100%;
  }

  .poster-nav {
    width: 34px;
    height: 34px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .site-footer {
    margin-left: 8px;
    margin-right: 8px;
    padding-bottom: 36px;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: flex-start;
  }

  .footer-logo {
    width: 86px;
  }

  .footer-label {
    text-align: left;
  }

  .social-row {
    justify-content: flex-start;
  }

  .mobile-whatsapp {
    display: none;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: 118px;
  }

  .site-nav a {
    padding: 6px;
    font-size: 0.76rem;
  }
}

@media (hover: hover) {
  .header-cta:hover,
  .primary-button:hover,
  .mobile-whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 32px rgba(13, 75, 63, 0.22);
  }

  .info-box:hover,
  .location-card:hover,
  .faq-list details:hover,
  .offer-box:hover {
    border-color: rgba(125, 143, 119, 0.34);
    box-shadow: 0 16px 34px rgba(62, 69, 66, 0.1);
  }

  .poster-nav:hover,
  .lightbox-nav:hover,
  .lightbox-close:hover {
    background: #fff;
  }

  .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .poster-slide {
    transition: none;
  }
}
