:root {
  --paper: #f6f3eb;
  --ink: #1f2b2c;
  --muted: #66706d;
  --line: #d8d0c3;
  --teal: #16636b;
  --green: #70844f;
  --clay: #b5684d;
  --white: #fffaf2;
  --shadow: 0 18px 50px rgba(31, 43, 44, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Apple SD Gothic Neo", Arial, sans-serif;
  line-height: 1.72;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--teal); }
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: 72px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(246, 243, 235, 0.94);
  border-bottom: 1px solid rgba(216, 208, 195, 0.85);
  backdrop-filter: blur(16px);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--teal);
  color: white;
  font-weight: 800;
}
.brand strong, .brand small { display: block; line-height: 1.25; }
.brand small { color: var(--muted); font-size: 12px; }
.site-nav { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); color: #344241; font-size: 15px; font-weight: 800; }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 9px 12px;
  color: var(--ink);
  font-weight: 800;
}

.hero { position: relative; min-height: calc(100svh - 72px); overflow: hidden; }
.hero img { width: 100%; height: calc(100svh - 72px); min-height: 610px; object-fit: cover; object-position: center; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(19, 35, 34, 0.82), rgba(19, 35, 34, 0.28) 56%, rgba(19, 35, 34, 0.08));
}
.hero-content {
  position: absolute;
  left: clamp(20px, 7vw, 92px);
  bottom: clamp(54px, 11vh, 118px);
  width: min(760px, calc(100% - 40px));
  color: white;
}
.eyebrow, .section-kicker {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow { color: #ffd7bd; }
h1, h2, h3, p, li, summary, figcaption, .button, .article-card a, .story-grid a {
  word-break: keep-all;
  overflow-wrap: break-word;
}
h1 { margin: 0; font-size: clamp(42px, 7vw, 82px); line-height: 1.06; letter-spacing: 0; }
h2 { margin: 0; font-size: clamp(29px, 4.2vw, 50px); line-height: 1.16; letter-spacing: 0; }
h3 { margin: 8px 0 10px; font-size: 23px; line-height: 1.3; }
.hero-copy { max-width: 680px; margin: 22px 0 0; font-size: clamp(19px, 2.5vw, 28px); font-weight: 700; line-height: 1.42; }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
}
.button.primary { background: var(--teal); color: white; box-shadow: 0 12px 30px rgba(22, 99, 107, 0.25); }
.button.ghost { border-color: rgba(255, 255, 255, 0.65); color: white; background: rgba(255, 255, 255, 0.12); }
.button.secondary { border-color: var(--line); background: var(--white); }

.section-inner { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.intro-band, .case-band, .info-band, .page-hero { padding: clamp(46px, 7vw, 92px) 0; }
.intro-band { background: var(--white); }
.intro-grid, .info-grid, .contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}
.intro-grid p, .section-heading p, .contact p, .article-body p, .page-copy { color: var(--muted); font-size: 17px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; padding: clamp(42px, 6vw, 70px) 0; }
.metrics article { min-height: 190px; padding: 30px; background: var(--ink); color: white; }
.metrics strong { color: #f2c6ac; font-size: 15px; }
.metrics span { display: block; margin-top: 28px; font-size: 25px; font-weight: 900; }
.metrics p { color: rgba(255, 255, 255, 0.74); }

.section-inner > .section-heading, .section-heading { max-width: 760px; margin-bottom: 30px; }
.article-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: clamp(54px, 8vw, 104px); }
.article-card {
  min-height: 270px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.article-card span { color: var(--green); font-size: 13px; font-weight: 900; }
.article-card p { color: var(--muted); margin-bottom: 0; }
.info-band { background: var(--ink); color: white; }
.info-band .section-kicker { color: #f2c6ac; }
.topic-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.topic-list li { padding: 16px 18px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12); font-weight: 800; }
.faq-band {
  padding: clamp(46px, 7vw, 92px) 0;
}
.faq-list {
  display: grid;
  gap: 10px;
}
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(31, 43, 44, 0.06);
}
.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}
.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}
.faq-list.in-article details {
  box-shadow: none;
}
.faq-more {
  margin: 22px 0 0;
}
.contact { padding: clamp(54px, 8vw, 104px) 0; align-items: start; }
.contact-actions { justify-content: flex-end; margin-top: 0; }

.page-hero { background: var(--white); border-bottom: 1px solid var(--line); }
.page-hero .section-inner { max-width: 940px; }
.page-hero h1 { color: var(--ink); font-size: clamp(38px, 5vw, 64px); }
.page-visual {
  width: min(1160px, calc(100% - 40px));
  margin: clamp(24px, 4vw, 42px) auto 0;
}
.page-visual figure {
  position: relative;
  display: grid;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.page-visual img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
  opacity: 0.76;
}
.page-visual figcaption {
  position: absolute;
  left: clamp(18px, 4vw, 42px);
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 36px);
  max-width: 680px;
  color: white;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.25;
}
.page-visual figcaption span {
  display: block;
  margin-bottom: 8px;
  color: #ffd7bd;
  font-size: 13px;
  text-transform: uppercase;
}
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 42px; align-items: start; padding: clamp(42px, 7vw, 88px) 0; }
.article-body, .policy-body {
  background: var(--white);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.article-body h2, .policy-body h2 { margin-top: 34px; font-size: clamp(25px, 3vw, 34px); }
.article-body h2:first-child, .policy-body h2:first-child { margin-top: 0; }
.article-body ul, .policy-body ul { padding-left: 22px; color: var(--muted); }
.article-meta {
  margin: 0 0 28px;
  padding: 14px 16px;
  background: #f4f0e7;
  border: 1px solid #ded6c8;
  color: #5c6862;
  font-size: 14px;
  line-height: 1.7;
}
.article-meta strong {
  color: var(--ink);
}
.notice {
  margin-top: 28px;
  padding: 18px;
  background: #eef4ef;
  border: 1px solid #cdddcf;
  color: #40504d;
  font-weight: 700;
}
.sidebar {
  position: sticky;
  top: 94px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 22px;
}
.sidebar h2 { font-size: 20px; }
.sidebar a { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-weight: 800; }
.list-page { padding: clamp(42px, 7vw, 88px) 0; }
.program-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(42px, 7vw, 88px) 0;
}
.program-card {
  display: grid;
  gap: 12px;
  min-height: 360px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.program-card span { color: var(--clay); font-size: 14px; font-weight: 900; }
.program-card h2 { font-size: clamp(26px, 3vw, 36px); }
.program-card p { margin: 0; color: var(--muted); }
.program-card ul { margin: 0; padding-left: 20px; color: var(--muted); }
.program-card strong {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  background: #eef4ef;
  color: #40504d;
  font-size: 14px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.site-footer p { margin: 0; }

/* Editorial magazine home */
.magazine-home {
  background:
    linear-gradient(180deg, #f8f5ee 0%, #fbfaf6 42%, #f2f5f0 100%);
}
.editorial-header {
  background: rgba(248, 245, 238, 0.96);
  backdrop-filter: blur(14px);
}
.today-strip {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 48px;
  padding: 0 clamp(16px, 4vw, 56px);
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  white-space: nowrap;
}
.today-strip {
  scrollbar-width: none;
}
.today-strip::-webkit-scrollbar {
  display: none;
}
.today-strip strong {
  margin-right: 12px;
  color: var(--clay);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.today-strip a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: #5d665f;
  border-left: 1px solid #ded8cb;
  font-size: 14px;
  font-weight: 800;
}
.main-visual-hero {
  position: relative;
  min-height: min(760px, calc(100svh - 120px));
  overflow: hidden;
  background: #172926;
  border-bottom: 1px solid var(--line);
}
.main-visual-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}
.main-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 32, 30, 0.88) 0%, rgba(18, 32, 30, 0.62) 42%, rgba(18, 32, 30, 0.18) 100%),
    linear-gradient(180deg, rgba(18, 32, 30, 0.12) 0%, rgba(18, 32, 30, 0.78) 100%);
}
.main-hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(78px, 12vh, 138px) 0 clamp(150px, 20vh, 220px);
  color: white;
}
.main-hero-content .section-kicker {
  color: #ffd7bd;
}
.main-hero-content h1 {
  max-width: 760px;
  color: white;
  font-size: clamp(42px, 6.5vw, 86px);
}
.main-hero-content p:not(.section-kicker) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.72;
}
.main-hero-content .button.secondary {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.92);
}
.main-hero-links {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1160px, calc(100% - 40px));
  transform: translateX(-50%);
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-bottom: 0;
  backdrop-filter: blur(14px);
}
.main-hero-links a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 14px;
  min-height: 104px;
  padding: 22px 24px;
  border-right: 1px solid #ddd5c9;
  color: #182927;
}
.main-hero-links a:last-child {
  border-right: 0;
}
.main-hero-links span {
  grid-row: span 2;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}
.main-hero-links strong {
  align-self: end;
  font-size: 20px;
  line-height: 1.25;
}
.main-hero-links small {
  color: #67736d;
  font-size: 14px;
}
.magazine-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(20px, 4vw, 46px);
  padding-top: clamp(34px, 5vw, 70px);
  padding-bottom: clamp(48px, 7vw, 94px);
}
.lead-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: end;
}
.lead-media {
  position: relative;
  display: block;
  min-height: clamp(360px, 48vw, 610px);
  overflow: hidden;
  border: 1px solid #d8d0c1;
  background: var(--ink);
}
.lead-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 31, 30, 0.02), rgba(18, 31, 30, 0.22));
  pointer-events: none;
}
.lead-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}
.lead-copy {
  padding-bottom: clamp(10px, 2vw, 28px);
}
.lead-copy h1 {
  max-width: 660px;
  margin: 0;
  color: #182927;
  font-size: clamp(42px, 5.7vw, 82px);
  line-height: 1.03;
}
.lead-copy p:not(.section-kicker) {
  max-width: 620px;
  color: #59655f;
  font-size: 18px;
  line-height: 1.8;
}
.editor-picks {
  align-self: end;
  padding: 28px 0 4px;
  border-top: 2px solid #1b2d2a;
}
.editor-picks > a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px 16px;
  padding: 20px 0;
  border-bottom: 1px solid #d8d0c1;
  color: var(--ink);
}
.editor-picks span {
  grid-row: span 2;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
}
.editor-picks strong {
  font-size: 20px;
  line-height: 1.34;
}
.editor-picks small {
  color: #69736d;
  font-size: 14px;
  line-height: 1.55;
}
.editorial-section {
  padding-bottom: clamp(52px, 8vw, 104px);
}
.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-top: clamp(8px, 2vw, 20px);
  border-top: 1px solid #d9d2c6;
}
.section-title-row h2 {
  max-width: 780px;
  margin: 0;
  color: #182927;
  font-size: clamp(30px, 4vw, 52px);
}
.section-title-row > a {
  flex: 0 0 auto;
  color: var(--clay);
  font-weight: 900;
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #d8d0c1;
  border-left: 1px solid #d8d0c1;
}
.insight-grid article {
  min-height: 300px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid #d8d0c1;
  border-bottom: 1px solid #d8d0c1;
  background: rgba(255, 253, 248, 0.78);
}
.insight-grid span,
.story-grid span {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.insight-grid h3,
.story-grid h3 {
  margin-top: 18px;
  color: #172926;
  font-size: clamp(24px, 3vw, 34px);
}
.insight-grid p,
.story-grid p,
.category-hub p,
.booking-check p,
.faq-strip p {
  color: #627069;
}
.booking-check {
  margin-bottom: clamp(54px, 8vw, 104px);
  padding: clamp(46px, 7vw, 88px) 0;
  background: #1b2d2a;
  color: white;
}
.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 66px);
  align-items: start;
}
.booking-check .section-kicker {
  color: #f2c6ac;
}
.booking-check h2 {
  color: white;
  font-size: clamp(30px, 4vw, 52px);
}
.booking-check p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}
.check-cards {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.check-cards a {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #243936;
  color: white;
}
.check-cards strong {
  font-size: 22px;
}
.check-cards span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  border-top: 1px solid #d8d0c1;
  border-left: 1px solid #d8d0c1;
}
.story-grid article {
  min-height: 330px;
  padding: 24px;
  border-right: 1px solid #d8d0c1;
  border-bottom: 1px solid #d8d0c1;
  background: #fffdf8;
}
.story-grid a {
  color: inherit;
}
.category-hub {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 66px);
  padding-top: clamp(46px, 7vw, 86px);
  padding-bottom: clamp(52px, 8vw, 104px);
  border-top: 1px solid #d8d0c1;
}
.category-hub h2 {
  color: #172926;
  font-size: clamp(30px, 4vw, 52px);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hub-grid article {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid #d8d0c1;
}
.hub-grid h3 {
  margin-top: 0;
  font-size: 23px;
}
.hub-grid a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid #e5ded2;
  color: #58645d;
  font-weight: 800;
}
.faq-strip {
  padding-top: clamp(42px, 7vw, 86px);
  padding-bottom: clamp(64px, 9vw, 116px);
  border-top: 1px solid #d8d0c1;
}
.faq-strip h2 {
  max-width: 780px;
  color: #172926;
  font-size: clamp(30px, 4vw, 52px);
}
.faq-strip details {
  border-top: 1px solid #d8d0c1;
  background: transparent;
}
.faq-strip details:last-child {
  border-bottom: 1px solid #d8d0c1;
}
.faq-strip summary {
  cursor: pointer;
  padding: 22px 0;
  color: #172926;
  font-size: 20px;
  font-weight: 900;
}
.faq-strip details p {
  max-width: 840px;
  margin-top: -6px;
  padding-bottom: 22px;
}
.editorial-footer {
  background: #fffdf8;
}

@media (max-width: 900px) {
  .site-header { align-items: flex-start; min-height: 66px; padding: 10px 18px; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(246, 243, 235, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  h1 { font-size: clamp(34px, 9vw, 54px); line-height: 1.08; }
  h2 { font-size: clamp(27px, 7vw, 40px); }
  h3 { font-size: 21px; }
  .hero, .hero img { min-height: 620px; }
  .hero-content { bottom: 54px; }
  .hero-copy { font-size: 19px; }
  .section-inner { width: min(100% - 32px, 1160px); }
  .intro-band, .case-band, .info-band, .page-hero { padding: 44px 0; }
  .page-visual { width: min(100% - 32px, 1160px); margin-top: 28px; }
  .page-visual figure, .page-visual img { min-height: 260px; }
  .intro-grid, .info-grid, .contact, .content-layout, .program-layout { grid-template-columns: 1fr; }
  .metrics, .article-grid { grid-template-columns: 1fr; }
  .metrics { gap: 10px; padding: 34px 0; }
  .metrics article { min-height: 0; padding: 22px; }
  .metrics span { margin-top: 16px; font-size: 23px; }
  .article-grid { gap: 12px; margin-bottom: 54px; }
  .article-card { min-height: 0; padding: 20px; }
  .today-strip { padding: 0 18px; }
  .main-visual-hero {
    min-height: 760px;
  }
  .main-visual-hero > img {
    object-position: 58% center;
  }
  .main-hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 32, 30, 0.86) 0%, rgba(18, 32, 30, 0.58) 58%, rgba(18, 32, 30, 0.22) 100%),
      linear-gradient(180deg, rgba(18, 32, 30, 0.08) 0%, rgba(18, 32, 30, 0.86) 100%);
  }
  .main-hero-content {
    width: min(100% - 32px, 1160px);
    padding: 56px 0 292px;
  }
  .main-hero-content h1 {
    font-size: clamp(34px, 8vw, 58px);
  }
  .main-hero-content p:not(.section-kicker) {
    font-size: 17px;
  }
  .main-hero-links {
    grid-template-columns: 1fr;
    width: min(100% - 32px, 1160px);
  }
  .main-hero-links a {
    min-height: 0;
    padding: 17px 18px;
    border-right: 0;
    border-bottom: 1px solid #ddd5c9;
  }
  .main-hero-links a:last-child {
    border-bottom: 0;
  }
  .magazine-hero,
  .lead-story,
  .check-layout,
  .category-hub {
    grid-template-columns: 1fr;
  }
  .magazine-hero {
    gap: 26px;
    padding-top: 28px;
    padding-bottom: 58px;
  }
  .lead-media { min-height: 360px; }
  .lead-copy h1 { font-size: clamp(34px, 8vw, 56px); }
  .lead-copy p:not(.section-kicker) { font-size: 17px; }
  .editor-picks { padding-top: 22px; }
  .section-title-row {
    display: block;
  }
  .section-title-row > a {
    display: inline-flex;
    margin-top: 14px;
  }
  .insight-grid,
  .story-grid,
  .hub-grid {
    grid-template-columns: 1fr;
  }
  .insight-grid article,
  .story-grid article {
    min-height: 0;
  }
  .story-grid article,
  .story-grid article:nth-child(4n + 1) {
    border-left: 1px solid #d8d0c1;
  }
  .booking-check {
    margin-bottom: 58px;
    padding: 46px 0;
  }
  .category-hub {
    padding-top: 46px;
    padding-bottom: 58px;
  }
  .faq-strip {
    padding-top: 44px;
    padding-bottom: 66px;
  }
  .program-layout { gap: 12px; padding: 34px 0 52px; }
  .program-card { min-height: 0; padding: 22px; }
  .content-layout { gap: 22px; padding: 34px 0 52px; }
  .article-body, .policy-body { padding: 22px; }
  .article-body h2, .policy-body h2 { margin-top: 28px; font-size: 25px; }
  .contact-actions { justify-content: flex-start; }
  .sidebar { position: static; }
  .site-footer { display: block; padding: 24px 18px; }
  .site-footer p + p { margin-top: 8px; }
}
@media (max-width: 560px) {
  body { line-height: 1.68; }
  .site-header { gap: 10px; }
  .brand { gap: 10px; }
  .brand strong { max-width: 168px; font-size: 14px; }
  .brand small { font-size: 11px; }
  .nav-toggle { min-height: 40px; padding: 8px 11px; }
  .site-nav { padding: 8px 18px 14px; }
  .site-nav a { padding: 11px 0; }
  .hero, .hero img { min-height: 560px; height: 560px; }
  .hero img { object-position: 60% center; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(19, 35, 34, 0.28), rgba(19, 35, 34, 0.82));
  }
  .hero-content { left: 16px; right: 16px; bottom: 34px; width: auto; }
  .eyebrow, .section-kicker { margin-bottom: 10px; font-size: 12px; }
  h1 { font-size: 32px; line-height: 1.1; }
  h2 { font-size: 26px; line-height: 1.18; }
  h3 { font-size: 20px; }
  .hero-copy { margin-top: 16px; font-size: 17px; line-height: 1.45; }
  .hero-actions, .contact-actions { gap: 10px; margin-top: 22px; }
  .button { width: 100%; }
  .section-inner { width: calc(100% - 28px); }
  .intro-grid p, .section-heading p, .contact p, .article-body p, .page-copy { font-size: 16px; }
  .page-hero { padding: 38px 0; }
  .page-hero h1 { font-size: 31px; }
  .page-visual { width: calc(100% - 28px); margin-top: 18px; }
  .page-visual figure, .page-visual img { min-height: 220px; }
  .page-visual figcaption { font-size: 20px; }
  .page-visual figcaption span { font-size: 12px; }
  .topic-list li { padding: 14px 15px; }
  .today-strip {
    min-height: 44px;
    padding: 0 14px;
  }
  .today-strip strong { margin-right: 8px; }
  .today-strip a {
    min-height: 30px;
    padding: 0 10px;
    font-size: 13px;
  }
  .main-visual-hero {
    min-height: 720px;
  }
  .main-hero-content {
    width: calc(100% - 28px);
    padding: 42px 0 286px;
  }
  .main-hero-content h1 {
    font-size: 34px;
    line-height: 1.12;
  }
  .main-hero-content p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.64;
  }
  .main-hero-links {
    width: calc(100% - 28px);
  }
  .main-hero-links a {
    grid-template-columns: 30px 1fr;
    gap: 2px 12px;
    padding: 15px 16px;
  }
  .main-hero-links strong {
    font-size: 18px;
  }
  .main-hero-links small {
    font-size: 13px;
  }
  .lead-media { min-height: 300px; }
  .lead-copy h1 { font-size: 33px; }
  .lead-copy p:not(.section-kicker) {
    font-size: 16px;
    line-height: 1.68;
  }
  .editor-picks > a {
    grid-template-columns: 34px 1fr;
    padding: 17px 0;
  }
  .editor-picks strong,
  .faq-strip summary {
    font-size: 18px;
  }
  .section-title-row h2,
  .booking-check h2,
  .category-hub h2,
  .faq-strip h2 {
    font-size: 27px;
    line-height: 1.22;
  }
  .insight-grid article,
  .story-grid article,
  .hub-grid article,
  .check-cards a {
    padding: 20px;
  }
  .insight-grid h3,
  .story-grid h3 {
    margin-top: 12px;
    font-size: 23px;
  }
  .check-cards strong { font-size: 20px; }
  .notice { padding: 15px; margin-top: 22px; }
  .sidebar { padding: 18px; }
}
