:root {
  --color-forest: #126c42;
  --color-forest-dark: #0d3e2c;
  --color-leaf: #20a66b;
  --color-mint: #e8f5ee;
  --color-sage: #f5f8f4;
  --color-ink: #13251c;
  --color-body: #43544a;
  --color-line: #d8e5dc;
  --color-white: #ffffff;
  --shadow-soft: 0 22px 60px rgba(18, 108, 66, 0.14);
  --radius: 8px;
  --container: 1500px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-body);
  background: var(--color-white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang TC", "PingFang SC", "Microsoft JhengHei", "Microsoft YaHei", "Noto Sans TC", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

a {
  color: var(--color-forest);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--color-forest-dark);
}

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.16;
  margin: 0 0 18px;
  font-weight: 750;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(40px, 7vw, 78px);
  max-width: 980px;
}

h2 {
  font-size: clamp(30px, 4.6vw, 52px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 18px;
}

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

.site-container.narrow {
  max-width: 960px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  height: auto;
  left: 16px;
  top: 16px;
  width: auto;
  z-index: 1000;
  background: var(--color-white);
  padding: 10px 14px;
  border: 2px solid var(--color-forest);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 229, 220, 0.9);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  width: min(310px, 42vw);
  flex: 0 0 auto;
}

.header-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex: 1;
}

.primary-nav,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.primary-nav a,
.language-switcher a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  color: var(--color-ink);
  border-radius: 999px;
  font-weight: 650;
}

.primary-nav a.is-active,
.primary-nav a:hover,
.language-switcher a.is-active,
.language-switcher a:hover {
  background: var(--color-mint);
  color: var(--color-forest-dark);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--color-forest);
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.15;
  cursor: pointer;
}

.button-primary,
.header-cta {
  background: var(--color-forest);
  color: var(--color-white);
}

.button-primary:hover,
.header-cta:hover,
.button-primary:focus-visible,
.header-cta:focus-visible {
  background: var(--color-forest-dark);
  color: var(--color-white);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.84);
  color: var(--color-forest-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  padding: 0;
}

.menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-forest-dark);
}

.site-hero {
  padding: 96px 0 70px;
  background:
    linear-gradient(135deg, rgba(232, 245, 238, 0.96), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at 80% 20%, rgba(32, 166, 107, 0.14), transparent 34%);
}

.hero-grid,
.split-grid,
.contact-grid,
.footer-grid,
.article-grid {
  display: grid;
  gap: clamp(28px, 5vw, 72px);
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  color: var(--color-forest);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-intro,
.lead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--color-body);
  max-width: 760px;
}

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

.hero-media,
.framed-media,
.article-featured {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--color-mint);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.content-band,
.split-section,
.amct-method-section,
.rednote-section,
.visual-story-section,
.appointment-section,
.contact-panel {
  padding: 92px 0;
}

.soft-green {
  background: var(--color-sage);
}

.section-heading {
  max-width: 850px;
  margin-bottom: 34px;
}

.js-reveal-ready .reveal-on-scroll,
.js-reveal-ready .service-card,
.js-reveal-ready .post-card,
.js-reveal-ready .split-copy,
.js-reveal-ready .framed-media,
.js-reveal-ready .original-photo-card,
.js-reveal-ready .rednote-spotlight-card {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.js-reveal-ready .is-visible,
.js-reveal-ready .service-card.is-visible,
.js-reveal-ready .post-card.is-visible,
.js-reveal-ready .split-copy.is-visible,
.js-reveal-ready .framed-media.is-visible,
.js-reveal-ready .original-photo-card.is-visible,
.js-reveal-ready .rednote-spotlight-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:nth-child(2),
.post-card:nth-child(2) {
  transition-delay: 90ms;
}

.service-card:nth-child(3),
.post-card:nth-child(3) {
  transition-delay: 180ms;
}

.service-card:nth-child(4) {
  transition-delay: 270ms;
}

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

.service-card,
.post-card,
.sidebar-block {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.service-card {
  padding: 28px;
}

.service-card h3 {
  min-height: 52px;
}

.keyword-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-list li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 15px;
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  color: var(--color-forest-dark);
  font-weight: 650;
}

.legal-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8f4 100%);
}

.legal-content {
  max-width: 1080px;
}

.legal-intro {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--color-line);
}

.legal-alert {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(18, 108, 66, 0.18);
  border-radius: var(--radius);
  background: rgba(232, 245, 238, 0.72);
  color: var(--color-forest-dark);
  font-weight: 700;
}

.legal-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--color-line);
}

.legal-block h3 {
  margin-bottom: 14px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.legal-list li::marker {
  color: var(--color-forest);
  font-weight: 850;
}

.split-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.split-section.reverse .split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.framed-media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center;
}

.framed-media.preserve-photo {
  background: var(--color-sage);
}

.framed-media.preserve-photo img {
  aspect-ratio: auto;
  object-fit: contain;
}

.split-copy {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
}

.visual-story-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f8f4 100%);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(28px, 5vw, 70px);
}

.visual-story-copy {
  min-width: 0;
}

.visual-story-feature {
  margin: 30px 0 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

.visual-story-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

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

.original-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: 0 18px 45px rgba(18, 108, 66, 0.08);
}

.original-photo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--color-sage);
}

.amct-method-section {
  background:
    linear-gradient(135deg, rgba(13, 62, 44, 0.96) 0%, rgba(18, 108, 66, 0.92) 48%, rgba(245, 248, 244, 0.98) 48%, #fff 100%);
}

.amct-method-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.04fr) minmax(0, 0.96fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.amct-media img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.amct-method-copy {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(216, 229, 220, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow-soft);
}

.amct-step-list {
  list-style: none;
  counter-reset: amct-step;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 18px;
}

.amct-step-list li {
  counter-increment: amct-step;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 10px 14px 10px 56px;
  border-radius: var(--radius);
  background: var(--color-sage);
  color: var(--color-forest-dark);
  font-weight: 750;
}

.amct-step-list li::before {
  content: counter(amct-step);
  position: absolute;
  left: 14px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 850;
}

.method-note {
  margin-bottom: 0;
  color: var(--color-body);
  font-size: 14px;
}

.rednote-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #f5f8f4 0%, #ffffff 54%, #e8f5ee 100%);
}

.rednote-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
}

.rednote-copy {
  min-width: 0;
  max-width: 650px;
}

.rednote-showcase {
  position: relative;
  min-width: 0;
}

.rednote-copy h2,
.rednote-copy .lead {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.rednote-proof {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 10px;
  margin: 12px 0 28px;
  padding: 14px 18px;
  border: 1px solid rgba(216, 229, 220, 0.95);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-forest-dark);
  box-shadow: 0 18px 50px rgba(18, 108, 66, 0.1);
}

.rednote-proof strong {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 0.92;
  color: #c73946;
}

.rednote-proof span {
  padding-bottom: 3px;
  font-weight: 800;
}

.rednote-phone {
  position: relative;
  height: 680px;
  max-width: 720px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(18, 108, 66, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(13, 62, 44, 0.96), rgba(18, 108, 66, 0.92)),
    var(--color-forest-dark);
  box-shadow: 0 28px 85px rgba(13, 62, 44, 0.24);
}

.rednote-spotlights {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  margin-bottom: 18px;
}

.rednote-spotlight-card {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  align-items: stretch;
  min-height: 240px;
  overflow: hidden;
  border: 1px solid rgba(199, 57, 70, 0.18);
  border-radius: var(--radius);
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 22px 60px rgba(199, 57, 70, 0.12);
}

.rednote-spotlight-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: center;
}

.rednote-spotlight-copy {
  display: grid;
  align-content: center;
  gap: 10px;
  padding: clamp(18px, 2.6vw, 28px);
}

.rednote-text-tile {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  min-height: 240px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(199, 57, 70, 0.12), rgba(18, 108, 66, 0.12)),
    #fff7f8;
  color: #b52d39;
  text-align: center;
}

.rednote-text-tile strong {
  color: #c73946;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.95;
}

.rednote-text-tile span {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color-forest-dark);
  font-size: 16px;
}

.rednote-spotlight-card span {
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ffe8eb;
  color: #b52d39;
  font-size: 12px;
  font-weight: 850;
}

.rednote-spotlight-card strong {
  color: var(--color-ink);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.22;
}

.rednote-spotlight-card small {
  color: var(--color-forest-dark);
  font-weight: 850;
}

.rednote-spotlight-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.65;
}

.rednote-phone-header {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 4px 14px;
  color: var(--color-white);
  font-weight: 850;
}

.rednote-phone-header small {
  color: #ffb5bd;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.rednote-rails {
  height: calc(100% - 52px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.rednote-rail {
  display: grid;
  gap: 16px;
  align-content: start;
  animation: rednoteWaterfall 30s linear infinite;
}

.rednote-rail:nth-child(2) {
  animation-duration: 36s;
  animation-direction: reverse;
}

.rednote-card {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--color-ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.rednote-card:hover,
.rednote-card:focus-visible {
  color: var(--color-forest-dark);
  transform: translateY(-2px);
}

.rednote-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  background: var(--color-mint);
}

.rednote-card span {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: #ffe8eb;
  color: #b52d39;
  font-size: 12px;
  font-weight: 850;
}

.rednote-card strong {
  min-height: 48px;
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-ink);
  font-size: 16px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rednote-card small {
  color: var(--color-body);
  font-weight: 750;
}

@keyframes rednoteWaterfall {
  to {
    transform: translateY(-50%);
  }
}

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

.post-card {
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.post-card-copy {
  padding: 24px;
}

.post-date {
  color: var(--color-forest);
  font-weight: 750;
  margin-bottom: 8px;
}

.contact-panel {
  background: var(--color-forest-dark);
  color: rgba(255, 255, 255, 0.84);
}

.contact-panel h2,
.contact-panel .eyebrow {
  color: var(--color-white);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: start;
}

.legal-note {
  max-width: 860px;
}

.contact-methods {
  display: grid;
  gap: 12px;
}

.contact-methods a,
.contact-methods > .contact-channel,
.contact-methods > .contact-route {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.contact-methods span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.appointment-section {
  background: var(--color-sage);
}

.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.appointment-copy {
  max-width: 720px;
}

.appointment-location {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
}

.appointment-location span {
  color: var(--color-forest);
  font-size: 13px;
  font-weight: 800;
}

.appointment-location a {
  color: var(--color-ink);
  font-weight: 750;
}

.appointment-location p {
  margin: 6px 0 0;
}

.map-steps {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--color-body);
}

.map-steps li::marker {
  color: var(--color-forest);
  font-weight: 850;
}

.map-preview {
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  border: 1px solid rgba(18, 108, 66, 0.16);
  border-radius: var(--radius);
  background: #eef7f1;
}

.map-preview iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-methods .map-preview {
  min-height: 240px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-methods .map-preview iframe {
  height: 280px;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 11px 13px;
  color: var(--color-ink);
  background: var(--color-white);
  font: inherit;
}

.booking-form textarea {
  resize: vertical;
}

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

.site-footer {
  padding: 64px 0 26px;
  background: #f0f6f2;
}

.footer-grid {
  grid-template-columns: minmax(320px, 1.2fr) minmax(180px, 0.6fr) minmax(240px, 0.8fr);
}

.footer-logo {
  width: 240px;
  margin-bottom: 18px;
}

.footer-nav,
.footer-contact {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-contact span {
  color: var(--color-forest-dark);
  font-weight: 750;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.footer-legal-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  justify-content: center;
}

.footer-legal-inline a {
  color: var(--color-forest-dark);
  font-weight: 800;
}

.article-hero {
  padding: 86px 0 46px;
  background: var(--color-sage);
}

.article-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  padding: 56px 0 92px;
}

.article-main {
  min-width: 0;
}

.article-featured {
  margin-bottom: 34px;
}

.article-featured img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.entry-content {
  color: var(--color-body);
  font-size: 18px;
}

.entry-content p,
.entry-content ul,
.entry-content ol {
  max-width: 820px;
}

.entry-content img {
  border-radius: var(--radius);
}

.article-sidebar {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 18px;
}

.sidebar-block {
  padding: 22px;
}

.sidebar-block.accent {
  background: var(--color-mint);
}

.sidebar-post {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--color-line);
  color: var(--color-ink);
  font-weight: 700;
}

.not-found {
  min-height: 56vh;
}

@media (max-width: 1120px) {
  .header-nav-wrap {
    gap: 12px;
  }

  .primary-nav a,
  .language-switcher a {
    padding-inline: 10px;
  }

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

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-nav-wrap {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-line);
    padding: 16px;
    box-shadow: var(--shadow-soft);
  }

  .header-nav-wrap.is-open {
    display: grid;
    gap: 14px;
  }

  .primary-nav {
    display: grid;
    gap: 4px;
  }

  .language-switcher {
    justify-content: flex-start;
  }

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

  .hero-grid,
  .split-grid,
  .split-section.reverse .split-grid,
  .amct-method-grid,
  .rednote-grid,
  .visual-story-grid,
  .appointment-grid,
  .contact-grid,
  .footer-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .site-hero {
    padding-top: 58px;
  }

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

  .amct-method-section {
    background:
      linear-gradient(180deg, #0d3e2c 0%, #126c42 36%, #f5f8f4 36%, #ffffff 100%);
  }

  .article-sidebar {
    position: static;
  }

  .rednote-phone {
    height: 620px;
    max-width: none;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  .site-container {
    width: min(100% - 24px, var(--container));
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero-intro,
  .lead {
    font-size: 17px;
  }

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

  .brand-link {
    width: min(230px, 58vw);
  }

  .site-hero,
  .content-band,
  .split-section,
  .amct-method-section,
  .rednote-section,
  .visual-story-section,
  .appointment-section,
  .contact-panel {
    padding-block: 58px;
  }

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

  .service-card h3 {
    min-height: 0;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

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

  .appointment-location,
  .contact-methods strong,
  .footer-contact a,
  .footer-contact span {
    overflow-wrap: anywhere;
  }

  .map-steps {
    padding-left: 18px;
  }

  .map-preview {
    min-height: 200px;
  }

  .map-preview iframe,
  .contact-methods .map-preview iframe {
    height: 220px;
  }

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

  .visual-story-feature {
    margin-top: 22px;
  }

  .rednote-spotlights {
    grid-template-columns: 1fr;
  }

  .rednote-spotlight-card {
    grid-template-columns: 120px minmax(0, 1fr);
    min-height: 168px;
  }

  .rednote-spotlight-card img {
    min-height: 168px;
  }

  .rednote-text-tile {
    min-height: 168px;
    padding: 14px;
  }

  .rednote-text-tile strong {
    font-size: 38px;
  }

  .rednote-text-tile span {
    font-size: 13px;
  }

  .rednote-spotlight-copy {
    padding: 16px;
  }

  .rednote-spotlight-card strong {
    font-size: 18px;
  }

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

  .rednote-phone {
    height: auto;
    padding: 14px;
  }

  .rednote-phone-header {
    height: auto;
    padding-bottom: 12px;
  }

  .rednote-rails {
    height: auto;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    mask-image: none;
    scroll-snap-type: x mandatory;
  }

  .rednote-rail {
    min-width: max-content;
    display: flex;
    gap: 12px;
    animation: none;
  }

  .rednote-card {
    width: 210px;
    scroll-snap-align: start;
  }

  .rednote-card[aria-hidden="true"] {
    display: 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;
  }

  .js-reveal-ready .reveal-on-scroll,
  .js-reveal-ready .service-card,
  .js-reveal-ready .post-card,
  .js-reveal-ready .split-copy,
  .js-reveal-ready .framed-media,
  .js-reveal-ready .original-photo-card,
  .js-reveal-ready .rednote-spotlight-card {
    opacity: 1;
    transform: none;
  }

  .rednote-rail {
    animation: none;
    transform: none;
  }
}
