:root {
  --bg: #fffaf1;
  --paper: #ffffff;
  --paper-soft: #fbf5ea;
  --green: #6f9228;
  --green-strong: #365c2a;
  --green-deep: #1f3526;
  --mint: #dfead2;
  --gold: #c79c52;
  --rose: #b86f55;
  --ink: #243126;
  --muted: #68736b;
  --line: #e5dccd;
  --shadow: 0 22px 60px rgba(34, 48, 37, 0.14);
  --shadow-strong: 0 34px 90px rgba(28, 42, 31, 0.24);
  --radius: 8px;
  --header-height: 69px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at top left, rgba(223, 234, 210, 0.7), transparent 34rem),
    var(--bg);
  color: var(--ink);
  font-family: "Pretendard", "Noto Sans KR", "Malgun Gothic", Arial, sans-serif;
  line-height: 1.68;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 250, 241, 0.98);
  border-bottom: 1px solid rgba(111, 146, 40, 0.18);
  box-shadow: 0 10px 30px rgba(34, 48, 37, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--green-strong);
  font-size: clamp(18px, 2.4vw, 23px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(55, 87, 39, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #435045;
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--green);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green-strong);
  padding: 8px 14px;
  font: inherit;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(94vh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.hero-bg {
  position: absolute;
  inset: -5%;
  background-image: url("assets/images/main-hero.jpg");
  background-position: 54% center;
  background-size: cover;
  transform: scale(1.06) translate3d(34px, 0, 0);
  animation: heroImageDrift 15s ease-in-out infinite alternate;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 32, 23, 0.84) 0%, rgba(20, 32, 23, 0.58) 46%, rgba(20, 32, 23, 0.18) 100%),
    linear-gradient(0deg, rgba(20, 32, 23, 0.78), transparent 42%);
}

.hero-accent {
  position: absolute;
  right: -14vw;
  bottom: -18vw;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 238, 152, 0.2), transparent 66%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0 118px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: center;
  color: #fffdf7;
}

.hero-copy {
  max-width: 760px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 900;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #d7ee98;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 78px);
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2.2vw, 24px);
  color: rgba(255, 253, 247, 0.92);
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy > p:not(.eyebrow),
.hero-chips,
.hero-actions,
.hero-panel {
  animation: heroFadeUp 0.9s ease forwards;
}

.hero-copy h1 {
  animation-delay: 0.12s;
}

.hero-copy > p:not(.eyebrow) {
  animation-delay: 0.24s;
}

.hero-actions {
  animation-delay: 0.48s;
}

.hero-panel {
  animation-delay: 0.6s;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  animation-delay: 0.36s;
}

.hero-chips span {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 253, 247, 0.92);
  font-size: 14px;
  font-weight: 900;
  backdrop-filter: blur(8px);
}

.hero-actions,
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.95), rgba(244, 236, 222, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
  min-width: 0;
}

.hero-panel .panel-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 14px;
  font-weight: 900;
}

.hero-panel strong {
  display: block;
  font-size: 23px;
  line-height: 1.35;
  color: var(--green-deep);
}

.hero-panel p {
  margin: 14px 0 18px;
  color: var(--muted);
}

.hero-panel a {
  color: var(--green-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--green), #557c24);
  color: #fff;
}

.button.light {
  background: rgba(255, 255, 255, 0.93);
  color: var(--green-strong);
}

.button.outline {
  background: var(--paper);
  border-color: rgba(111, 146, 40, 0.5);
  color: var(--green-strong);
}

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

.quick-bar {
  position: relative;
  z-index: 5;
  width: min(1120px, calc(100% - 36px));
  margin: -48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.quick-item {
  min-height: 92px;
  padding: 20px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 241, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(34, 48, 37, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.quick-item:hover,
.quick-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(34, 48, 37, 0.18);
}

.quick-item span,
.quick-item strong {
  display: block;
}

.quick-item span {
  color: var(--muted);
  font-weight: 800;
}

.quick-item strong {
  margin-top: 4px;
  color: var(--green-strong);
  font-size: 22px;
  line-height: 1.25;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section h2 {
  font-size: clamp(30px, 4.7vw, 50px);
}

.section-heading p:not(.eyebrow),
.guide-copy p,
.blog-copy p,
.contact-copy p,
.location-copy p {
  color: var(--muted);
  font-size: 18px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.story-card {
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(250, 244, 233, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(34, 48, 37, 0.08);
}

.story-copy {
  font-size: 19px;
}

.story-copy p {
  margin: 0;
  color: #414b42;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

.story-metrics div {
  padding: 17px 14px;
  border: 1px solid rgba(111, 146, 40, 0.2);
  border-radius: var(--radius);
  background: rgba(223, 234, 210, 0.42);
}

.story-metrics strong,
.story-metrics span {
  display: block;
}

.story-metrics strong {
  color: var(--green-strong);
  font-size: 28px;
  line-height: 1.1;
}

.story-metrics span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.service-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: linear-gradient(180deg, #f6efe3, #fffaf1);
}

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

.service-card {
  min-height: 258px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(34, 48, 37, 0.08);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.service-card.featured {
  background:
    linear-gradient(150deg, var(--green-deep), #314d2d 58%, #5b6e31);
  color: #fffdf7;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(34, 48, 37, 0.16);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  color: var(--green-strong);
  font-size: 24px;
}

.service-card.featured h3 {
  color: #fff;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card.featured p {
  color: rgba(255, 253, 247, 0.86);
}

.benefits-section {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
  margin-top: 28px;
  padding: 46px;
  border: 1px solid rgba(111, 146, 40, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 231, 0.94));
  box-shadow: var(--shadow);
}

.benefits-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.24;
}

.benefits-copy p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.benefits-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.benefits-preview {
  display: grid;
  gap: 12px;
}

.benefits-preview div {
  padding: 20px;
  border: 1px solid rgba(111, 146, 40, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 26px rgba(34, 48, 37, 0.07);
}

.benefits-preview span,
.benefits-preview strong {
  display: block;
}

.benefits-preview span {
  color: var(--green);
  font-size: 15px;
  font-weight: 900;
}

.benefits-preview strong {
  margin-top: 6px;
  color: var(--green-deep);
  font-size: 22px;
  line-height: 1.35;
}

.guide-section {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
}

.guide-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  counter-reset: guide;
}

.guide-list li {
  position: relative;
  min-height: 104px;
  padding: 22px 24px 22px 76px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 26px rgba(34, 48, 37, 0.08);
  counter-increment: guide;
}

.guide-list li::before {
  content: counter(guide);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-strong);
  font-weight: 900;
}

.guide-list strong,
.guide-list span {
  display: block;
}

.guide-list strong {
  color: var(--green-deep);
  font-size: 20px;
}

.guide-list span {
  margin-top: 5px;
  color: var(--muted);
}

.facility-section {
  padding-top: 40px;
}

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

.gallery-grid figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(34, 48, 37, 0.12);
}

.gallery-grid figure.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 10px 25px rgba(28, 42, 31, 0.12);
  border-radius: var(--radius);
  color: var(--green-strong);
  font-weight: 900;
}

.promise-section {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100vw - 1120px) / 2));
  background: var(--green-deep);
  color: #fffdf7;
}

.promise-section .eyebrow,
.promise-section h2 {
  color: #fffdf7;
}

.promise-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promise-list li {
  min-height: 168px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.promise-list strong,
.promise-list span {
  display: block;
}

.promise-list strong {
  margin-bottom: 10px;
  font-size: 24px;
}

.promise-list span {
  color: rgba(255, 253, 247, 0.82);
}

.blog-section,
.contact-section,
.location-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-section {
  position: relative;
}

.blog-section::before {
  content: "";
  position: absolute;
  inset: 54px auto auto -42px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(199, 156, 82, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.blog-visual,
.map-image-link {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--paper);
}

.blog-visual img {
  min-height: 300px;
  object-fit: cover;
}

.blog-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
}

.blog-links span {
  color: var(--muted);
  font-weight: 800;
}

.contact-section {
  padding: 54px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(251, 245, 234, 0.98));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  margin: 0;
  padding: 28px;
  background:
    linear-gradient(180deg, var(--paper-soft), #fffdf8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card .button {
  width: 100%;
}

.contact-card dl {
  width: 100%;
  margin: 14px 0 0;
}

.contact-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.contact-card dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-card dd {
  margin: 0;
  color: var(--green-deep);
  font-weight: 900;
  text-align: right;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--green-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.map-image-link img {
  min-height: 320px;
  object-fit: cover;
}

.site-footer {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 44px clamp(18px, 4vw, 56px);
  background: #1e2d22;
  color: #fffdf7;
}

.site-footer strong {
  font-size: 22px;
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 253, 247, 0.78);
}

.footer-info {
  font-size: 14px;
  text-align: right;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.06) translate3d(34px, 0, 0);
  }

  to {
    transform: scale(1.14) translate3d(-72px, -18px, 0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .hero-bg,
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy > p:not(.eyebrow),
  .hero-chips,
  .hero-actions,
  .hero-panel {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .button:focus-visible,
  .gallery-grid figure:hover img {
    transform: none;
  }
}

@media (max-width: 1020px) {
  .hero-inner,
  .split-section,
  .benefits-section,
  .guide-section,
  .blog-section,
  .contact-section,
  .location-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 560px;
  }

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

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

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

@media (max-width: 760px) {
  :root {
    --header-height: 63px;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    justify-content: center;
    min-width: 58px;
    margin-left: auto;
  }

  .brand {
    flex: 0 1 auto;
    gap: 9px;
    min-width: 0;
    max-width: calc(100% - 82px);
    font-size: 16px;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: 82vh;
  }

  .hero-inner {
    width: calc(100vw - 64px);
    max-width: calc(100vw - 64px);
    padding: 84px 0 54px;
  }

  .hero-copy,
  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 9.6vw, 42px);
  }

  .hero-copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.75;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .hero-panel strong {
    font-size: 22px;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .hero-panel p {
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .hero-chips {
    gap: 6px;
  }

  .hero-chips span {
    padding: 6px 9px;
    font-size: 13px;
  }

  .hero-actions .button,
  .quick-item,
  .contact-card .button {
    width: 100%;
  }

  .quick-bar,
  .service-grid,
  .promise-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .contact-section {
    width: min(1120px, calc(100% - 24px));
    padding: 26px 20px;
  }

  .benefits-section {
    width: min(1120px, calc(100% - 24px));
    padding: 28px 20px;
  }

  .benefits-actions .button {
    width: 100%;
  }

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

  .gallery-grid figure.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid figure {
    min-height: 230px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
  }
}

/* Multi-page site */
body {
  background: #f6f5f0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  color: var(--green-deep);
  border: 2px solid var(--green);
  transform: translateY(-150%);
}

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

.site-nav a[aria-current="page"] {
  color: var(--green-strong);
  box-shadow: inset 0 -3px 0 var(--green);
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  width: 46px;
  padding: 0;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(0) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-2px) rotate(-45deg);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.service-card {
  display: block;
}

.media-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.media-home-copy h2 {
  margin: 0 0 18px;
}

.media-home-copy > p:not(.eyebrow) {
  color: var(--muted);
  margin: 0 0 26px;
}

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

.media-link-card {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.media-link-card:hover,
.media-link-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.media-link-card.naver {
  background: #287943;
}

.media-link-card.youtube {
  background: #a83b36;
}

.media-link-card span,
.media-link-card small {
  color: rgba(255, 255, 255, 0.78);
}

.media-link-card strong {
  margin: 8px 0;
  font-size: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #d6e99f;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(45, 73, 52, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(28, 46, 33, 0.18);
  backdrop-filter: blur(12px);
}

.floating-actions a,
.floating-actions button {
  min-width: 48px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--green-deep);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.floating-actions a:nth-child(2),
.floating-actions a[aria-current="page"] {
  background: var(--green-strong);
  color: #fff;
}

.floating-actions a:hover,
.floating-actions button:hover,
.floating-actions a:focus-visible,
.floating-actions button:focus-visible {
  background: var(--mint);
  color: var(--green-deep);
}

.page-hero {
  --page-image: url("assets/images/main-hero.jpg");
  position: relative;
  min-height: 580px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-deep);
  color: #fff;
}

.page-hero.compact {
  min-height: 500px;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
}

.page-hero::before {
  background-image: var(--page-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.03);
}

.page-hero::after {
  background: linear-gradient(90deg, rgba(19, 39, 27, 0.9), rgba(19, 39, 27, 0.58) 58%, rgba(19, 39, 27, 0.2));
}

.page-hero-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 100px 0 72px;
}

.page-hero-inner h1 {
  max-width: 850px;
  margin: 0 0 20px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.14;
  letter-spacing: 0;
}

.page-hero-inner > p:last-child {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 21px);
}

.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 700;
}

.breadcrumb a::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.42);
}

.detail-section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.detail-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-statement {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.intro-statement h2,
.detail-section .section-heading h2,
.image-story-copy h2,
.action-banner h2,
.contact-method-main h2 {
  margin: 0;
  font-size: clamp(30px, 4.4vw, 50px);
  line-height: 1.28;
  letter-spacing: 0;
}

.prose {
  color: #4f5d53;
  font-size: 18px;
}

.prose p:first-child {
  margin-top: 0;
}

.principle-grid,
.feature-grid,
.checklist-grid,
.story-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.principle-grid article,
.feature-grid article,
.checklist-grid article,
.story-topic-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.principle-grid span,
.checklist-grid span,
.story-topic-grid span {
  color: var(--rose);
  font-weight: 900;
}

.principle-grid h3,
.feature-grid h3,
.checklist-grid h3,
.story-topic-grid h3 {
  margin: 16px 0 10px;
  font-size: 22px;
}

.principle-grid p,
.feature-grid p,
.checklist-grid p,
.story-topic-grid p {
  margin: 0;
  color: var(--muted);
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: center;
}

.image-story-media img {
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-story-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.signature {
  margin-top: 28px;
  color: var(--green-strong) !important;
  font-size: 19px !important;
  font-weight: 900;
}

.info-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 2px solid var(--green-strong);
}

.info-table div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
}

.info-table dt {
  color: var(--green-strong);
  font-weight: 900;
}

.info-table dd {
  margin: 0;
  color: #4d5a50;
}

.action-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  margin-top: 40px;
  margin-bottom: 80px;
  padding: 52px clamp(28px, 5vw, 60px);
  border-radius: var(--radius);
  background: #dfe9d4;
}

.action-banner > div:first-child {
  max-width: 680px;
}

.action-banner p:not(.eyebrow) {
  margin-bottom: 0;
  color: #536052;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 12px 18px;
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.section-nav a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border-radius: 4px;
  color: var(--green-strong);
  font-size: 14px;
  font-weight: 900;
}

.section-nav a:hover,
.section-nav a:focus-visible {
  background: var(--mint);
}

.service-detail {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: center;
  border-top: 1px solid var(--line);
  scroll-margin-top: calc(var(--header-height) + 82px);
}

.service-detail.reverse .service-detail-main {
  order: 3;
}

.service-detail.reverse img {
  order: 2;
}

.service-detail-number {
  align-self: start;
  color: var(--rose);
  font-size: 20px;
  font-weight: 900;
}

.service-detail h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 54px);
}

.service-detail .lead {
  margin: 0 0 28px;
  color: #4d5c50;
  font-size: 19px;
}

.service-detail > img {
  height: 470px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-points {
  display: grid;
  gap: 14px;
}

.service-points div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.service-points strong {
  color: var(--green-strong);
}

.service-points p {
  margin: 5px 0 0;
  color: var(--muted);
}

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 42px 0 0;
  padding: 0;
}

.process-grid li {
  padding: 26px;
  background: #f6f5f0;
  border-radius: var(--radius);
}

.process-grid span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-strong);
  color: #fff;
  font-weight: 900;
}

.process-grid strong {
  display: block;
  font-size: 18px;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.detail-gallery figure {
  position: relative;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-deep);
}

.detail-gallery .gallery-large {
  grid-column: span 2;
}

.detail-gallery .portrait {
  grid-row: span 2;
}

.detail-gallery img {
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.detail-gallery figure:hover img {
  transform: scale(1.025);
}

.detail-gallery figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 44px 22px 20px;
  background: linear-gradient(transparent, rgba(18, 35, 25, 0.88));
  color: #fff;
}

.detail-gallery figcaption strong,
.detail-gallery figcaption span {
  display: block;
}

.detail-gallery figcaption span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

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

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

.faq-section details {
  border-top: 1px solid var(--line);
}

.faq-section details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  padding: 22px 40px 22px 4px;
  color: var(--green-deep);
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.faq-section details p {
  max-width: 850px;
  margin: -5px 0 24px 4px;
  color: var(--muted);
}

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

.channel-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
  border-radius: var(--radius);
  color: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.channel-card:hover,
.channel-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.blog-channel {
  background: #287943;
}

.youtube-channel {
  background: #a83b36;
}

.channel-mark {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
}

.channel-card .eyebrow,
.channel-card p {
  color: rgba(255, 255, 255, 0.78);
}

.channel-card h2 {
  margin: 0;
  font-size: 34px;
}

.channel-card strong {
  display: inline-block;
  margin-top: 18px;
}

.story-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-topic-grid a {
  display: inline-block;
  margin-top: 20px;
  color: var(--green-strong);
  font-weight: 900;
}

.contact-methods {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: center;
}

.contact-method-main > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-phone {
  display: block;
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--green-strong);
  color: #fff;
}

.contact-phone span,
.contact-phone strong,
.contact-phone small {
  display: block;
}

.contact-phone strong {
  margin: 4px 0;
  font-size: clamp(28px, 4vw, 42px);
}

.contact-phone small {
  color: rgba(255, 255, 255, 0.75);
}

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

.contact-method-grid a {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-method-grid span,
.contact-method-grid small {
  color: var(--muted);
}

.contact-method-grid strong {
  margin: 6px 0;
  color: var(--green-deep);
}

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

.timeline {
  list-style: none;
  display: grid;
  margin: 36px 0 0;
  padding: 0;
}

.timeline li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.timeline span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-strong);
  font-weight: 900;
}

.timeline strong {
  font-size: 19px;
}

.timeline p {
  margin: 4px 0 0;
  color: var(--muted);
}

.location-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: center;
}

.location-address h2 {
  margin: 0 0 26px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.24;
}

.location-address dl {
  margin: 0 0 28px;
}

.location-address dl div {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.location-address dt {
  color: var(--green-strong);
  font-weight: 900;
}

.location-address dd {
  margin: 0;
}

.location-map {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.location-map img {
  min-height: 380px;
  object-fit: cover;
}

.location-map span {
  display: block;
  padding: 16px 20px;
  color: var(--green-strong);
  font-weight: 900;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 30px;
}

.error-page main {
  width: min(620px, 100%);
  text-align: center;
}

.error-page img {
  width: 100px;
  height: 100px;
  margin: 0 auto 28px;
  object-fit: cover;
  border-radius: var(--radius);
}

.error-page h1 {
  font-size: clamp(34px, 7vw, 58px);
  line-height: 1.2;
}

.error-page .action-row {
  justify-content: center;
  margin-top: 28px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1020px) {
  .media-home,
  .intro-statement,
  .image-story,
  .contact-methods,
  .location-detail {
    grid-template-columns: 1fr;
  }

  .service-detail,
  .service-detail.reverse {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .service-detail > img,
  .service-detail.reverse > img {
    grid-column: 2;
    order: 3;
    width: 100%;
    height: 420px;
  }

  .service-detail.reverse .service-detail-main {
    order: 2;
  }

  .principle-grid,
  .feature-grid,
  .feature-grid.three,
  .process-grid,
  .story-topic-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .action-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .site-nav a[aria-current="page"] {
    box-shadow: none;
    color: var(--green);
  }

  .page-hero,
  .page-hero.compact {
    min-height: 480px;
  }

  .page-hero-inner {
    width: calc(100% - 36px);
    padding: 80px 0 50px;
  }

  .page-hero-inner h1 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .detail-section {
    width: calc(100% - 28px);
    padding: 62px 0;
  }

  .section-nav {
    justify-content: flex-start;
  }

  .media-link-grid,
  .principle-grid,
  .feature-grid,
  .feature-grid.three,
  .process-grid,
  .detail-gallery,
  .channel-grid,
  .story-topic-grid,
  .contact-method-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .detail-gallery .gallery-large,
  .detail-gallery .portrait {
    grid-column: auto;
    grid-row: auto;
  }

  .service-detail,
  .service-detail.reverse {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 62px 0;
  }

  .service-detail-number,
  .service-detail-main,
  .service-detail.reverse .service-detail-main,
  .service-detail > img,
  .service-detail.reverse > img {
    grid-column: 1;
    order: initial;
  }

  .service-detail > img,
  .service-detail.reverse > img {
    height: 320px;
  }

  .image-story-media img {
    height: 380px;
  }

  .info-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .action-banner {
    width: calc(100% - 28px);
    margin-bottom: 60px;
    padding: 36px 24px;
  }

  .action-banner .button,
  .location-address .button {
    width: 100%;
  }

  .channel-card {
    min-height: 360px;
    padding: 28px;
  }

  .floating-actions {
    right: 10px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
