:root {
  --paper: #f7f4ee;
  --paper-deep: #eee8dd;
  --white: #fffdf8;
  --ink: #22261f;
  --muted: #6f7169;
  --green: #52664a;
  --green-deep: #31422d;
  --green-soft: #dfe7d9;
  --wood: #8b6744;
  --stone: #777975;
  --line: rgba(49, 66, 45, .16);
  --shadow: 0 22px 54px rgba(48, 51, 43, .12);
  --serif: "Dongle", "Nanum Pen Script", "Arial Rounded MT Bold", "Apple SD Gothic Neo", sans-serif;
  --sans: "Dongle", "Nanum Pen Script", "Arial Rounded MT Bold", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
address { font-style: normal; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 20000;
  padding: 12px 18px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  transition: top .2s;
}
.skip-link:focus { top: 16px; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 110px 0; }
.kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-copy h2,
.section-heading h2,
.catforest__copy h2,
.location__content h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.12;
  letter-spacing: -.045em;
  font-weight: 700;
}
.section-copy > p:not(.kicker),
.section-heading > p:not(.kicker),
.catforest__copy > p {
  color: var(--muted);
  font-size: 17px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: #fff; box-shadow: 0 12px 25px rgba(49, 66, 45, .22); }
.button--forest {
  min-height: 68px;
  padding-inline: 34px;
  gap: 14px;
  font-size: 19px;
  letter-spacing: .01em;
  box-shadow: 0 18px 38px rgba(30, 54, 27, .32);
}
.button__paw {
  width: 27px;
  height: 25px;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
}
.button--primary:hover { background: var(--green-deep); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.52); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button--ghost:hover { background: rgba(255,255,255,.16); }
.button--dark { background: var(--ink); color: #fff; margin-top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: #fff;
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 238, .9);
  box-shadow: 0 8px 28px rgba(36, 40, 33, .08);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1280px, calc(100% - 40px));
  min-height: 84px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__en { font-family: var(--serif); font-size: 31px; letter-spacing: -.03em; }
.brand__ko { margin-top: 7px; font-size: 11px; letter-spacing: .08em; opacity: .78; }
.main-nav { display: flex; gap: 34px; align-items: center; }
.main-nav a { position: relative; font-size: 14px; font-weight: 800; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.main-nav a:hover::after { right: 0; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle span:not(.sr-only) { display: block; width: 24px; height: 2px; margin: 5px; background: currentColor; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background: url("../images/interior-main.jpeg") center 48% / cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22,31,20,.78) 0%, rgba(22,31,20,.48) 42%, rgba(22,31,20,.08) 74%),
    linear-gradient(180deg, rgba(0,0,0,.16), transparent 28%, rgba(0,0,0,.12));
}
.hero__veil {
  position: absolute;
  inset: 0;
  opacity: .6;
  background:
    radial-gradient(circle at 12% 35%, rgba(112,148,94,.55), transparent 28%),
    linear-gradient(110deg, transparent 0 58%, rgba(255,255,255,.08));
  mix-blend-mode: soft-light;
}
.hero__content { position: relative; z-index: 2; padding-top: 100px; }
.hero__content > * { max-width: 730px; }
.hero__eyebrow { margin: 0 0 24px; font-size: 12px; font-weight: 800; letter-spacing: .18em; opacity: .82; }
.hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero__copy { margin: 30px 0 0; font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.scroll-cue {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: .2em;
}
.scroll-cue i { width: 1px; height: 40px; background: rgba(255,255,255,.7); animation: scrollLine 1.8s infinite; transform-origin: top; }
@keyframes scrollLine { 0%, 100% { transform: scaleY(.3); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

.intro { background: var(--white); }
.intro__grid { display: grid; grid-template-columns: .82fr 1.3fr; gap: 72px; align-items: center; }
.section-copy p { max-width: 530px; }
.intro__gallery { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: 230px 230px; gap: 16px; }
.photo-card, .future-photo { margin: 0; border-radius: 22px; overflow: hidden; }
.photo-card { box-shadow: var(--shadow); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.photo-card:hover img { transform: scale(1.035); }
.photo-card--main { grid-row: 1 / 3; }
.photo-card--valley img { object-position: 50% 58%; }

.future-photo {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 30px;
  text-align: center;
  color: var(--green-deep);
  border: 1px dashed rgba(49,66,45,.28);
  background:
    linear-gradient(rgba(238,244,234,.84), rgba(238,244,234,.84)),
    repeating-linear-gradient(45deg, rgba(82,102,74,.08) 0 1px, transparent 1px 12px);
}
.future-photo__icon { font-size: 34px; }
.future-photo strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }
.future-photo small { color: var(--muted); }

.catforest {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(123,151,105,.18), transparent 26%),
    linear-gradient(135deg, #edf1e8, #e5eadf 50%, #f3eee4);
}
.catforest::before,
.catforest::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 520px;
  opacity: .13;
  background: radial-gradient(ellipse at 50% 100%, transparent 45%, var(--green-deep) 46% 48%, transparent 49%);
  transform: rotate(28deg);
}
.catforest::before { left: -140px; bottom: -240px; }
.catforest::after { right: -160px; top: -240px; transform: rotate(-28deg); }
.catforest__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr .72fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(49,66,45,.12);
  border-radius: 34px;
  background: rgba(255,253,248,.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.catforest__photo { min-height: 420px; }
.future-photo--cat {
  position: relative;
  background:
    radial-gradient(circle at 25% 20%, rgba(150,178,131,.36), transparent 28%),
    linear-gradient(145deg, #cbd8c1, #71866b 70%, #40523c);
  color: #fff;
  border: none;
}
.cat-ears::before, .cat-ears::after {
  content: "";
  position: absolute;
  top: 28px;
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,.12);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.cat-ears::before { left: 36px; transform: rotate(-12deg); }
.cat-ears::after { right: 36px; transform: rotate(12deg); }
.catforest__copy { align-self: center; padding: 12px 0; }
.catforest__copy h2 { color: var(--green-deep); }
.catforest__copy .notice { margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; font-weight: 700; color: var(--green-deep); }
.admission {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 28px;
  border-radius: 24px;
  color: #fff;
  background: var(--green-deep);
}
.admission > span { font-size: 14px; opacity: .72; }
.admission strong { margin: 10px 0 26px; font-family: var(--serif); font-size: clamp(43px, 4vw, 62px); line-height: 1; font-weight: 500; }
.admission em { margin-left: 5px; font-family: var(--sans); font-size: 17px; font-style: normal; font-weight: 500; }
.admission ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; color: rgba(255,255,255,.78); font-size: 14px; }
.admission li::before { content: "·"; margin-right: 8px; color: #b6cea8; }
.admission .button--dark { background: #fff; color: var(--green-deep); }

.menu-section { background: #f8f5ef; }
.section-heading { max-width: 760px; margin-bottom: 46px; }
.section-heading--center { text-align: center; margin-inline: auto; }
.menu-tabs { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; }
.menu-tab {
  flex: 0 0 auto;
  min-width: 112px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
}
.menu-tab.is-active { color: #fff; background: var(--green); border-color: var(--green); }
.menu-content { display: block; margin-top: 28px; }
.menu-list {
  align-self: stretch;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 12px 28px;
  padding: 36px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.menu-list article { display: flex; justify-content: space-between; gap: 18px; padding: 14px 0; border-bottom: 1px solid rgba(49,66,45,.1); }
.menu-list h3 { margin: 0; font-size: 15px; font-weight: 700; }
.menu-list span { flex: 0 0 auto; color: var(--wood); font-size: 14px; font-weight: 800; }
.treat-card {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  overflow: hidden;
  border-radius: 26px;
  background: #eae0d2;
}
.treat-card__copy { padding: 42px; }
.treat-card h3 { margin: 0 0 12px; font-family: var(--serif); font-size: clamp(31px, 4vw, 48px); font-weight: 500; }
.treat-card p:not(.kicker) { color: var(--muted); }
.treat-card img { width: 100%; height: 330px; object-fit: cover; }

.guide { background: var(--white); }
.guide-grid { display: grid; grid-template-columns: 1.35fr repeat(3, 1fr); gap: 16px; }
.guide-card {
  min-height: 290px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #faf8f2;
  transition: transform .25s ease, box-shadow .25s ease;
}
.guide-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.guide-card__icon { display: grid; width: 50px; height: 50px; place-items: center; margin-bottom: 24px; border-radius: 50%; color: var(--green); background: var(--green-soft); font-size: 22px; }
.guide-card h3 { margin: 0 0 14px; font-family: var(--serif); font-size: 27px; font-weight: 500; }
.guide-card p { margin: 6px 0; color: var(--muted); font-size: 14px; }
.guide-card > a { display: inline-block; margin-top: 17px; color: var(--green-deep); font-weight: 800; }
.hours { margin: 0; display: grid; gap: 8px; }
.hours div { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 7px; border-bottom: 1px solid rgba(49,66,45,.08); }
.hours dt { color: var(--muted); }
.hours dd { margin: 0; font-weight: 800; }
.hours .closed { color: #9a5147; }

.location {
  position: relative;
  min-height: 590px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(25,35,23,.82), rgba(25,35,23,.38)),
    url("../images/interior-counter.jpeg") center 60% / cover no-repeat;
}
.location__backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(163,192,145,.18), transparent 32%); }
.location__content { position: relative; z-index: 1; }
.location__content .kicker { color: #cbdabd; }
.location__content h2 { max-width: 700px; }
.location__content address { margin-top: 28px; font-size: clamp(18px, 2vw, 24px); }
.location__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }

.site-footer { padding: 46px 0; color: rgba(255,255,255,.82); background: #222620; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 38px; align-items: end; }
.brand--footer { color: #fff; }
.footer-slogan, .footer-info p, .copyright { margin: 12px 0 0; font-size: 13px; color: rgba(255,255,255,.56); }
.footer-info p { margin: 4px 0; }
.copyright { text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.forest-transition {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: grid;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  color: #fff;
  background: #20351f;
  transition: opacity .18s ease, visibility .18s ease;
  isolation: isolate;
}
.forest-transition.is-active,
.forest-arrival .forest-transition {
  visibility: visible;
  opacity: 1;
}
.forest-haze {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .38;
  background:
    radial-gradient(circle at 50% 42%, #4f7148 0, transparent 34%),
    repeating-radial-gradient(ellipse at 18% 118%, transparent 0 31px, rgba(220,235,209,.12) 32px 34px),
    linear-gradient(135deg, #1a2e1c, #294829 52%, #172919);
  animation: hazeDrift 1.1s ease-in-out infinite alternate;
}
.forest-transition__content {
  position: relative;
  z-index: 30;
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 28px 34px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 30px;
  text-align: center;
  background: rgba(18, 42, 20, .92);
  box-shadow: 0 22px 70px rgba(0,0,0,.42);
  backdrop-filter: blur(5px);
  transition: opacity .25s ease, transform .25s ease;
}
.forest-transition__paw {
  width: 54px;
  aspect-ratio: 140 / 130;
  background: #edf3e7;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.22));
  animation: transitionPaw 1s ease-in-out infinite alternate;
}
.forest-transition__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
  text-shadow: 0 8px 24px rgba(0,0,0,.32);
}
.forest-transition.is-covering .forest-transition__content {
  opacity: 1;
  transform: none;
  animation: none;
}
.forest-transition.is-revealing .forest-transition__content,
.forest-arrival .forest-transition__content {
  opacity: 0;
  transform: scale(.94);
}

.forest-bush {
  position: absolute;
  top: -8vh;
  bottom: -8vh;
  z-index: 10;
  width: 65vw;
  min-width: 720px;
  background-color: #2e4d2e;
  background-image:
    radial-gradient(circle at 8% 8%, #7d9b69 0 5.5%, transparent 5.8%),
    radial-gradient(circle at 21% 20%, #517248 0 7%, transparent 7.3%),
    radial-gradient(circle at 39% 8%, #91aa77 0 6%, transparent 6.3%),
    radial-gradient(circle at 57% 19%, #44683f 0 8%, transparent 8.3%),
    radial-gradient(circle at 73% 6%, #789363 0 6.5%, transparent 6.8%),
    radial-gradient(circle at 90% 20%, #3b5d38 0 8.5%, transparent 8.8%),
    radial-gradient(circle at 12% 39%, #42663d 0 8%, transparent 8.3%),
    radial-gradient(circle at 31% 50%, #839f6d 0 7%, transparent 7.3%),
    radial-gradient(circle at 51% 39%, #5f8052 0 9%, transparent 9.3%),
    radial-gradient(circle at 70% 52%, #3d6139 0 8%, transparent 8.3%),
    radial-gradient(circle at 89% 40%, #759162 0 7.5%, transparent 7.8%),
    radial-gradient(circle at 8% 68%, #708b5e 0 8.5%, transparent 8.8%),
    radial-gradient(circle at 27% 79%, #3c6039 0 8%, transparent 8.3%),
    radial-gradient(circle at 48% 68%, #8aa474 0 7%, transparent 7.3%),
    radial-gradient(circle at 68% 82%, #55764a 0 9%, transparent 9.3%),
    radial-gradient(circle at 89% 68%, #42673e 0 8%, transparent 8.3%),
    radial-gradient(circle at 15% 96%, #4d7045 0 8%, transparent 8.3%),
    radial-gradient(circle at 39% 93%, #759062 0 8%, transparent 8.3%),
    radial-gradient(circle at 62% 97%, #3e6139 0 9%, transparent 9.3%),
    radial-gradient(circle at 87% 92%, #83a06d 0 7.5%, transparent 7.8%),
    linear-gradient(90deg, #1e361f, #3f673c 55%, #294a2a);
  background-size: 100% 100%;
  filter: drop-shadow(0 0 34px rgba(7,18,8,.68));
  will-change: transform;
}
.forest-bush::before,
.forest-bush::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    repeating-radial-gradient(circle at 20% 30%, transparent 0 13px, rgba(188,211,167,.17) 14px 16px, transparent 17px 30px),
    repeating-linear-gradient(70deg, transparent 0 22px, rgba(15,43,18,.18) 23px 25px, transparent 26px 46px);
  mix-blend-mode: screen;
}
.forest-bush::after {
  opacity: .32;
  transform: scaleX(-1) rotate(2deg);
  mix-blend-mode: multiply;
}
.forest-bush--left {
  left: -65vw;
  clip-path: polygon(0 0, 86% 0, 94% 5%, 88% 10%, 96% 16%, 89% 23%, 98% 30%, 91% 37%, 100% 45%, 93% 53%, 99% 61%, 90% 69%, 97% 77%, 89% 84%, 95% 92%, 86% 100%, 0 100%);
}
.forest-bush--right {
  right: -65vw;
  transform: scaleX(-1);
  clip-path: polygon(0 0, 86% 0, 94% 5%, 88% 10%, 96% 16%, 89% 23%, 98% 30%, 91% 37%, 100% 45%, 93% 53%, 99% 61%, 90% 69%, 97% 77%, 89% 84%, 95% 92%, 86% 100%, 0 100%);
}
.forest-transition.is-covering .forest-bush--left {
  animation: bushInLeft 1.05s cubic-bezier(.72,0,.18,1) forwards;
}
.forest-transition.is-covering .forest-bush--right {
  animation: bushInRight 1.05s cubic-bezier(.72,0,.18,1) forwards;
}
.forest-arrival .forest-bush--left,
.forest-transition.is-covered .forest-bush--left {
  transform: translateX(65vw);
}
.forest-arrival .forest-bush--right,
.forest-transition.is-covered .forest-bush--right {
  transform: translateX(-65vw) scaleX(-1);
}
.forest-transition.is-revealing .forest-bush--left {
  animation: bushOutLeft 1.08s cubic-bezier(.76,0,.24,1) forwards;
}
.forest-transition.is-revealing .forest-bush--right {
  animation: bushOutRight 1.08s cubic-bezier(.76,0,.24,1) forwards;
}
.forest-transition.is-revealing {
  animation: forestOverlayReveal 1.28s ease forwards;
}
@keyframes bushInLeft {
  from { transform: translateX(0); }
  to { transform: translateX(65vw); }
}
@keyframes bushInRight {
  from { transform: scaleX(-1); }
  to { transform: translateX(-65vw) scaleX(-1); }
}
@keyframes bushOutLeft {
  from { transform: translateX(65vw); }
  to { transform: translateX(0); }
}
@keyframes bushOutRight {
  from { transform: translateX(-65vw) scaleX(-1); }
  to { transform: scaleX(-1); }
}
@keyframes forestOverlayReveal {
  0%, 68% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; }
}
@keyframes transitionTextAway {
  0%, 48% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.94); }
}
@keyframes transitionPaw {
  from { transform: translateY(-3px) rotate(-5deg); }
  to { transform: translateY(4px) rotate(5deg); }
}
@keyframes hazeDrift {
  to { transform: translate3d(18px,-10px,0) scale(1.04); }
}

.leaf-layer { position: absolute; inset: 0; z-index: 20; pointer-events: none; overflow: hidden; }
.leaf {
  position: absolute;
  width: var(--size);
  height: calc(var(--size) * 1.55);
  border-radius: 90% 8% 90% 8%;
  opacity: 0;
  background: linear-gradient(145deg, var(--leaf-a), var(--leaf-b));
  filter: drop-shadow(0 8px 6px rgba(0,0,0,.16));
  transform-origin: center;
  animation: leafScatter var(--duration) cubic-bezier(.2,.6,.25,1) var(--delay) forwards;
}
.leaf::after { content: ""; position: absolute; left: 50%; top: 7%; bottom: 7%; width: 1px; background: rgba(255,255,255,.35); transform: rotate(17deg); }
@keyframes leafScatter {
  0% { opacity: 0; transform: translate3d(var(--start-x), 110vh, 0) rotate(0deg) scale(.5); }
  12% { opacity: .98; }
  62% { opacity: .94; }
  100% { opacity: 0; transform: translate3d(var(--end-x), -25vh, 0) rotate(var(--rotate)) scale(1.1); }
}


/* 둥근 글꼴과 자연 장식 */
.section-copy h2,
.section-heading h2,
.catforest__copy h2,
.location__content h2,
.guide-card h3,
.treat-card h3,
.future-photo strong,
.forest-transition__title {
  letter-spacing: -.025em;
}

.decorated-section { position: relative; overflow: hidden; }
.decorated-section > .shell,
.decorated-section > .location__content,
.decorated-section > .location__backdrop { position: relative; z-index: 2; }
.nature-mark {
  position: absolute;
  z-index: 1;
  display: block;
  pointer-events: none;
  opacity: .13;
  background: var(--green);
}
.nature-mark--leaf {
  width: 92px;
  aspect-ratio: 100 / 160;
  -webkit-mask: url("../images/leaf.svg") center / contain no-repeat;
  mask: url("../images/leaf.svg") center / contain no-repeat;
}
.nature-mark--paw {
  width: 78px;
  aspect-ratio: 140 / 130;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
}
.intro-leaf-a { left: 2.5%; top: 9%; transform: rotate(-24deg); }
.intro-paw-a { right: 3%; bottom: 7%; transform: rotate(18deg); opacity: .09; }
.menu-leaf-a { right: 3%; top: 7%; transform: rotate(28deg) scale(1.25); }
.menu-paw-a { left: 2%; top: 47%; transform: rotate(-18deg); opacity: .08; }
.menu-leaf-b { left: 4%; bottom: 3%; transform: rotate(-42deg) scale(.74); }
.guide-paw-a { right: 4%; top: 12%; transform: rotate(14deg) scale(.82); opacity: .08; }
.guide-leaf-a { left: 3%; bottom: 8%; transform: rotate(31deg); opacity: .1; }
.location-leaf-a { right: 4%; top: 10%; transform: rotate(18deg) scale(1.15); background: #d7e4ce; opacity: .18; }
.location-paw-a { left: 4%; bottom: 10%; transform: rotate(-16deg); background: #fff; opacity: .14; }

.hero::after {
  content: "";
  position: absolute;
  right: 4vw;
  bottom: 10vh;
  z-index: 1;
  width: 190px;
  height: 250px;
  opacity: .18;
  background:
    url("../images/paw.svg") 12% 88% / 48px auto no-repeat,
    url("../images/paw.svg") 55% 55% / 38px auto no-repeat,
    url("../images/paw.svg") 83% 22% / 31px auto no-repeat;
  filter: invert(1);
  transform: rotate(-16deg);
  pointer-events: none;
}

.paw-layer { position: absolute; inset: 0; z-index: 21; pointer-events: none; overflow: hidden; }
.paw-particle {
  position: absolute;
  left: var(--paw-x);
  bottom: -80px;
  width: var(--paw-size);
  aspect-ratio: 140 / 130;
  opacity: 0;
  background: rgba(246, 239, 218, .92);
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
  filter: drop-shadow(0 7px 8px rgba(0,0,0,.18));
  animation: pawRise var(--paw-duration) ease-out var(--paw-delay) forwards;
}
@keyframes pawRise {
  0% { opacity: 0; transform: translate3d(0, 40px, 0) rotate(var(--paw-rotate)) scale(.55); }
  15%, 70% { opacity: .86; }
  100% { opacity: 0; transform: translate3d(var(--paw-drift), -112vh, 0) rotate(calc(var(--paw-rotate) + 18deg)) scale(1.05); }
}

/* 고양이숲 별도 페이지 */
.catforest-page { background: #f4f1e8; }
.catforest-page .site-header { color: #fff; }
.catforest-page .site-header.is-scrolled { color: var(--ink); }
.main-nav a[aria-current="page"]::after { right: 0; }

.forest-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 30%, rgba(149, 181, 126, .34), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(230, 235, 211, .15), transparent 23%),
    linear-gradient(135deg, #223a22 0%, #456044 52%, #1e311f 100%);
}
.forest-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .19;
  background:
    url("../images/leaf.svg") 7% 21% / 130px auto no-repeat,
    url("../images/leaf.svg") 95% 10% / 170px auto no-repeat,
    url("../images/leaf.svg") 83% 90% / 120px auto no-repeat,
    url("../images/paw.svg") 12% 83% / 90px auto no-repeat,
    url("../images/paw.svg") 91% 58% / 62px auto no-repeat;
  filter: invert(1);
  transform: rotate(-2deg);
}
.forest-hero__content { position: relative; z-index: 2; text-align: center; padding: 126px 0 80px; }
.forest-hero__eyebrow { margin: 0 0 15px; font-size: 13px; font-weight: 800; letter-spacing: .18em; }
.forest-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(64px, 10vw, 128px); line-height: .95; font-weight: 400; }
.forest-hero__copy { max-width: 670px; margin: 26px auto 0; color: rgba(255,255,255,.85); font-size: clamp(17px, 2vw, 22px); }
.forest-hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.forest-paw-trail { position: absolute; right: 8%; bottom: 8%; width: 170px; height: 270px; opacity: .2; transform: rotate(-19deg); }
.forest-paw-trail i { position: absolute; display: block; width: 44px; aspect-ratio: 140/130; background: #fff; -webkit-mask: url("../images/paw.svg") center/contain no-repeat; mask: url("../images/paw.svg") center/contain no-repeat; }
.forest-paw-trail i:nth-child(1) { left: 0; bottom: 0; }
.forest-paw-trail i:nth-child(2) { left: 62px; bottom: 82px; transform: scale(.83); }
.forest-paw-trail i:nth-child(3) { left: 105px; bottom: 172px; transform: scale(.68); }

.forest-overview { position: relative; overflow: hidden; background: var(--white); }
.forest-overview__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 62px; align-items: center; }
.forest-photo-placeholder {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 24% 18%, rgba(218, 233, 204, .32), transparent 23%),
    linear-gradient(145deg, #a9bda0, #657d61 55%, #30442f);
  box-shadow: var(--shadow);
}
.forest-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: -8%;
  opacity: .2;
  background:
    url("../images/leaf.svg") 5% 20% / 150px auto no-repeat,
    url("../images/leaf.svg") 91% 9% / 180px auto no-repeat,
    url("../images/paw.svg") 80% 86% / 100px auto no-repeat;
  filter: invert(1);
}
.forest-photo-placeholder__inner { position: relative; z-index: 1; display: grid; justify-items: center; gap: 8px; padding: 30px; }
.forest-photo-placeholder__inner .placeholder-paw { width: 66px; aspect-ratio: 140/130; background: #fff; -webkit-mask: url("../images/paw.svg") center/contain no-repeat; mask: url("../images/paw.svg") center/contain no-repeat; }
.forest-photo-placeholder strong { font-family: var(--serif); font-size: 34px; font-weight: 400; }
.forest-photo-placeholder small { color: rgba(255,255,255,.75); }
.forest-overview__copy h2 { margin: 0; font-family: var(--serif); font-size: clamp(45px, 6vw, 74px); line-height: 1.06; font-weight: 400; }
.forest-overview__copy > p:not(.kicker) { color: var(--muted); font-size: 17px; }
.forest-price-card { margin-top: 28px; padding: 28px; border-radius: 26px; color: #fff; background: var(--green-deep); box-shadow: var(--shadow); }
.forest-price-card span { font-size: 14px; opacity: .72; }
.forest-price-card strong { display: block; margin-top: 5px; font-family: var(--serif); font-size: 55px; line-height: 1; font-weight: 400; }
.forest-price-card strong em { margin-left: 5px; font-family: var(--sans); font-size: 18px; font-style: normal; }
.forest-price-card p { margin: 16px 0 0; color: rgba(255,255,255,.76); font-size: 14px; }

.forest-steps { position: relative; overflow: hidden; background: #eef2e9; }
.forest-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.forest-info-card { position: relative; min-height: 270px; padding: 34px; overflow: hidden; border: 1px solid rgba(49,66,45,.13); border-radius: 28px; background: rgba(255,253,248,.82); box-shadow: 0 16px 36px rgba(48,51,43,.08); }
.forest-info-card::after { content:""; position:absolute; right:-18px; bottom:-20px; width:100px; aspect-ratio:140/130; opacity:.06; background:var(--green-deep); -webkit-mask:url("../images/paw.svg") center/contain no-repeat; mask:url("../images/paw.svg") center/contain no-repeat; transform:rotate(-12deg); }
.forest-info-card__number { display:grid; width:46px; height:46px; place-items:center; margin-bottom:24px; border-radius:50%; color:#fff; background:var(--green); font-family:var(--serif); font-size:23px; }
.forest-info-card h3 { margin:0 0 12px; font-family:var(--serif); font-size:31px; font-weight:400; }
.forest-info-card p { margin:0; color:var(--muted); font-size:15px; }

.forest-rules { position: relative; overflow: hidden; background: var(--white); }
.forest-rules__grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:55px; align-items:start; }
.forest-rules__heading { position:sticky; top:130px; }
.forest-rules__heading h2 { margin:0; font-family:var(--serif); font-size:clamp(44px,6vw,72px); line-height:1.08; font-weight:400; }
.rule-list { display:grid; gap:14px; }
.rule-item { display:grid; grid-template-columns:54px 1fr; gap:18px; align-items:start; padding:24px; border:1px solid var(--line); border-radius:22px; background:#faf8f2; }
.rule-item__icon { width:54px; height:54px; display:grid; place-items:center; border-radius:50%; color:var(--green-deep); background:var(--green-soft); font-size:23px; }
.rule-item h3 { margin:0 0 5px; font-size:20px; }
.rule-item p { margin:0; color:var(--muted); font-size:14px; }

.forest-treat { background:#e9dfd0; }
.forest-treat__grid { display:grid; grid-template-columns:.85fr 1.15fr; gap:0; align-items:stretch; overflow:hidden; border-radius:32px; background:#fffaf2; box-shadow:var(--shadow); }
.forest-treat__copy { padding:56px; align-self:center; }
.forest-treat__copy h2 { margin:0; font-family:var(--serif); font-size:clamp(42px,5vw,68px); line-height:1.05; font-weight:400; }
.forest-treat__copy p:not(.kicker) { color:var(--muted); }
.forest-treat img { width:100%; height:100%; min-height:430px; object-fit:cover; }

.forest-cta { position:relative; overflow:hidden; color:#fff; text-align:center; background:linear-gradient(135deg,#30462e,#587052); }
.forest-cta::before { content:""; position:absolute; inset:0; opacity:.12; background:url("../images/leaf.svg") 8% 30%/120px auto no-repeat,url("../images/paw.svg") 92% 70%/90px auto no-repeat; filter:invert(1); }
.forest-cta .shell { position:relative; z-index:1; }
.forest-cta h2 { margin:0; font-family:var(--serif); font-size:clamp(45px,7vw,82px); line-height:1.03; font-weight:400; }
.forest-cta p { color:rgba(255,255,255,.78); }
.forest-cta__actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-top:28px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 1040px) {

  .forest-overview__grid,
  .forest-rules__grid,
  .forest-treat__grid { grid-template-columns: 1fr; }
  .forest-card-grid { grid-template-columns: repeat(2, 1fr); }
  .forest-rules__heading { position: static; }
  .intro__grid, .menu-content { grid-template-columns: 1fr; }
  .intro__grid { gap: 46px; }
  .catforest__panel { grid-template-columns: 1fr 1fr; }
  .admission { grid-column: 1 / -1; }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 760px) {

  .button--forest { min-height: 64px; font-size: 18px; }
  .nature-mark { transform: scale(.72); }
  .forest-hero { min-height: 84svh; }
  .forest-hero__content { padding-top: 110px; }
  .forest-hero h1 { font-size: clamp(58px, 20vw, 92px); }
  .forest-hero__actions { display: grid; }
  .forest-paw-trail { right: -10px; bottom: 4%; transform: rotate(-19deg) scale(.7); }
  .forest-overview__grid { gap: 38px; }
  .forest-photo-placeholder { min-height: 420px; }
  .forest-card-grid { grid-template-columns: 1fr; }
  .forest-info-card { min-height: 0; }
  .forest-rules__grid { gap: 34px; }
  .rule-item { grid-template-columns: 44px 1fr; padding: 20px; }
  .rule-item__icon { width: 44px; height: 44px; }
  .forest-treat__copy { padding: 34px 24px; }
  .forest-treat img { min-height: 300px; }
  .forest-cta__actions { display: grid; }
  .shell { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .site-header { color: var(--ink); background: rgba(247,244,238,.92); backdrop-filter: blur(14px); }
  .nav-wrap { min-height: 68px; width: calc(100% - 28px); }
  .brand__en { font-size: 27px; }
  .nav-toggle { display: block; color: currentColor; cursor: pointer; }
  .main-nav {
    position: fixed;
    inset: 68px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 20px 28px;
    background: rgba(247,244,238,.98);
    transform: translateY(-130%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    box-shadow: 0 20px 30px rgba(0,0,0,.08);
  }
  .main-nav.is-open { transform: none; opacity: 1; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .hero { min-height: 92svh; background-position: 61% center; }
  .hero::before { background: linear-gradient(90deg, rgba(22,31,20,.84), rgba(22,31,20,.45)); }
  .hero__content { padding-top: 74px; }
  .hero h1 { font-size: clamp(43px, 13vw, 68px); }
  .hero__copy br { display: none; }
  .hero__actions { display: grid; }
  .button { width: 100%; }
  .intro__gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 200px; }
  .photo-card--main { grid-column: 1 / -1; grid-row: 1; }
  .catforest__panel { grid-template-columns: 1fr; padding: 18px; }
  .admission { grid-column: auto; }
  .catforest__photo { min-height: 330px; }
  .menu-list { grid-template-columns: 1fr; padding: 24px; }
  .treat-card { grid-template-columns: 1fr; }
  .treat-card__copy { padding: 30px 24px; }
  .treat-card img { height: 260px; }
  .guide-grid { grid-template-columns: 1fr; }
  .guide-card { min-height: 0; }
  .location { min-height: 520px; }
  .location__actions { display: grid; }
  .footer-grid { grid-template-columns: 1fr; }
  .copyright { margin-top: 8px; }
}

@media (max-width: 500px) {
  .intro__gallery { grid-template-columns: 1fr; grid-template-rows: 320px 230px 210px; }
  .photo-card--main { grid-column: auto; }
  .menu-tabs { margin-right: -14px; }
}


/* v4: 손글씨형 동글 글꼴과 전환 레이어 우선순위 */
.brand__en,
.brand__ko,
.main-nav a,
.button,
.menu-tab,
.menu-list h3,
.menu-list span,
.guide-card,
.footer-grid {
  font-family: var(--sans);
}
.brand__en { font-weight: 700; }
.brand__ko, .main-nav a, .button, .menu-tab { font-weight: 700; }
.menu-list h3 { font-size: 20px; font-weight: 700; }
.menu-list span { font-size: 18px; }
.forest-transition__content { pointer-events: none; }
.forest-transition.is-covering .forest-transition__title,
.forest-transition.is-covering .forest-transition__paw {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 680px) {
  body { font-size: 18px; }
  .forest-transition__content { width: min(88vw, 520px); padding: 24px 18px; }
  .forest-transition__title { font-size: clamp(34px, 12vw, 54px); }
  .menu-list h3 { font-size: 18px; }
  .menu-list span { font-size: 17px; }
}


/* v5: 가독성 확대, 고양이 형태의 '묘', 전환 문구 위치, 하단 인스타 링크 */
.cat-word {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
}
.cat-myo {
  position: relative;
  display: inline-block;
  z-index: 1;
  margin: 0 .08em 0 .04em;
  padding-top: .08em;
  font-size: 1.08em;
  line-height: .88;
  font-weight: 700;
  text-shadow: .025em .035em 0 rgba(255,255,255,.18);
}
.cat-myo::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -.09em;
  left: .03em;
  right: .03em;
  height: .33em;
  background:
    linear-gradient(135deg, transparent 49%, currentColor 50%) left top / .34em .34em no-repeat,
    linear-gradient(225deg, transparent 49%, currentColor 50%) right top / .34em .34em no-repeat;
  opacity: .96;
}
.cat-myo::after {
  content: "";
  position: absolute;
  right: -.19em;
  bottom: .02em;
  width: .29em;
  height: .48em;
  border: .065em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  transform: rotate(24deg);
  transform-origin: bottom left;
  opacity: .9;
}

body {
  font-size: 28px;
  line-height: 1.48;
}
.section { padding: 126px 0; }
.kicker { font-size: 19px; }
.section-copy h2,
.section-heading h2,
.catforest__copy h2,
.location__content h2 {
  font-size: clamp(58px, 6vw, 94px);
}
.section-copy > p:not(.kicker),
.section-heading > p:not(.kicker),
.catforest__copy > p,
.forest-overview__copy > p:not(.kicker) {
  font-size: 25px;
}
.button {
  min-height: 66px;
  padding-inline: 32px;
  font-size: 22px;
}
.button--forest {
  min-height: 88px;
  padding-inline: 48px;
  font-size: 29px;
}
.button__paw { width: 35px; height: 33px; }
.nav-wrap { min-height: 100px; }
.brand__en { font-size: 46px; }
.brand__ko { margin-top: 9px; font-size: 17px; }
.main-nav { gap: 30px; }
.main-nav a { font-size: 20px; }
.hero__content { padding-top: 126px; }
.hero__eyebrow { font-size: 18px; }
.hero h1 { font-size: clamp(68px, 7.6vw, 116px); }
.hero__copy { font-size: clamp(26px, 2.4vw, 34px); }
.future-photo__icon { font-size: 48px; }
.future-photo strong { font-size: 35px; }
.future-photo small { font-size: 21px; }
.menu-tab {
  min-width: 148px;
  padding: 16px 28px;
  font-size: 23px;
}
.menu-list { gap: 16px 34px; padding: 46px; }
.menu-list article { padding: 19px 0; }
.menu-list h3 { font-size: 28px; }
.menu-list span { font-size: 25px; }
.treat-card__copy { padding: 54px; }
.treat-card h3 { font-size: clamp(48px, 5vw, 66px); }
.treat-card p:not(.kicker) { font-size: 24px; }
.guide-card { min-height: 340px; padding: 38px; }
.guide-card__icon { width: 66px; height: 66px; font-size: 31px; }
.guide-card h3 { font-size: 40px; }
.guide-card p,
.guide-card > a,
.hours { font-size: 22px; }
.location__content address { font-size: clamp(28px, 2.6vw, 38px); }
.footer-slogan,
.footer-info p,
.copyright { font-size: 20px; }
.footer-instagram {
  width: min(1180px, calc(100% - 40px));
  margin: 34px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.16);
  text-align: center;
}
.footer-instagram a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 66px;
  padding: 0 30px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  font-size: 24px;
  background: rgba(255,255,255,.07);
  transition: transform .2s ease, background .2s ease;
}
.footer-instagram a:hover { transform: translateY(-2px); background: rgba(255,255,255,.13); }
.footer-instagram strong { color: #dbe8d3; }

.forest-transition__content {
  z-index: 120;
  margin-top: -18vh;
  padding: 34px 44px;
}
.forest-transition__paw { width: 70px; }
.forest-transition__title { font-size: clamp(58px, 7vw, 94px); }

.forest-hero__eyebrow { font-size: 19px; }
.forest-hero h1 { font-size: clamp(92px, 12vw, 168px); }
.forest-hero__copy { font-size: clamp(26px, 2.7vw, 36px); }
.forest-photo-placeholder strong { font-size: 48px; }
.forest-photo-placeholder small { font-size: 22px; }
.forest-overview__copy h2 { font-size: clamp(62px, 7vw, 98px); }
.forest-price-card { padding: 38px; }
.forest-price-card span { font-size: 22px; }
.forest-price-card strong { font-size: 78px; }
.forest-price-card p { font-size: 22px; }
.forest-info-card { min-height: 330px; padding: 42px; }
.forest-info-card__number { width: 62px; height: 62px; font-size: 33px; }
.forest-info-card h3 { font-size: 43px; line-height: 1.1; }
.forest-info-card p { font-size: 23px; }
.forest-rules__heading h2 { font-size: clamp(60px, 7vw, 96px); }
.rule-item { grid-template-columns: 70px 1fr; gap: 24px; padding: 32px; }
.rule-item__icon { width: 70px; height: 70px; font-size: 31px; }
.rule-item h3 { font-size: 31px; }
.rule-item p { font-size: 22px; }
.forest-treat__copy h2 { font-size: clamp(58px, 6vw, 90px); }
.forest-treat__copy p:not(.kicker) { font-size: 24px; }
.forest-cta h2 { font-size: clamp(62px, 8vw, 110px); }
.forest-cta p { font-size: 25px; }

@media (max-width: 1120px) {
  body { font-size: 25px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 18px; }
  .menu-list { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 22px; }
  .section { padding: 88px 0; }
  .nav-wrap { min-height: 76px; }
  .brand__en { font-size: 35px; }
  .brand__ko { font-size: 14px; }
  .main-nav { inset: 76px 0 auto; }
  .main-nav a { font-size: 22px; }
  .hero__content { padding-top: 94px; }
  .hero h1 { font-size: clamp(56px, 15vw, 82px); }
  .hero__copy { font-size: 24px; }
  .button { min-height: 62px; font-size: 21px; }
  .button--forest { min-height: 78px; font-size: 27px; }
  .section-copy h2,
  .section-heading h2,
  .catforest__copy h2,
  .location__content h2 { font-size: clamp(50px, 14vw, 74px); }
  .section-copy > p:not(.kicker),
  .section-heading > p:not(.kicker),
  .catforest__copy > p,
  .forest-overview__copy > p:not(.kicker) { font-size: 22px; }
  .menu-tab { min-width: 126px; font-size: 20px; }
  .menu-list { padding: 28px; }
  .menu-list h3 { font-size: 24px; }
  .menu-list span { font-size: 22px; }
  .guide-card { padding: 30px; }
  .guide-card h3 { font-size: 35px; }
  .guide-card p,
  .guide-card > a,
  .hours { font-size: 20px; }
  .forest-transition__content { margin-top: -14vh; padding: 28px 22px; }
  .forest-transition__title { font-size: clamp(48px, 15vw, 70px); }
  .forest-hero h1 { font-size: clamp(82px, 25vw, 122px); }
  .forest-hero__copy { font-size: 24px; }
  .forest-overview__copy h2,
  .forest-rules__heading h2,
  .forest-treat__copy h2,
  .forest-cta h2 { font-size: clamp(52px, 15vw, 78px); }
  .forest-price-card strong { font-size: 66px; }
  .forest-info-card { padding: 32px; }
  .forest-info-card h3 { font-size: 37px; }
  .forest-info-card p { font-size: 21px; }
  .rule-item { grid-template-columns: 54px 1fr; gap: 18px; padding: 24px; }
  .rule-item__icon { width: 54px; height: 54px; font-size: 25px; }
  .rule-item h3 { font-size: 27px; }
  .rule-item p { font-size: 20px; }
  .footer-slogan,
  .footer-info p,
  .copyright { font-size: 18px; }
  .footer-instagram { width: calc(100% - 28px); }
  .footer-instagram a { width: 100%; min-height: 64px; padding: 10px 18px; font-size: 21px; }
}

/* v6: 슬로건 정리, 메뉴 탭 안정화, 고양이숲 장식 강화 */
.menu-list[hidden] {
  display: none !important;
}
.menu-list.is-active {
  display: grid;
  animation: menuPanelIn .32s ease both;
}
@keyframes menuPanelIn {
  from { opacity: 0; transform: translateY(9px); }
  to { opacity: 1; transform: translateY(0); }
}
.menu-tab:focus-visible {
  outline: 3px solid rgba(82, 102, 74, .35);
  outline-offset: 4px;
}

/* 고양이숲 페이지 전체에 고양이 발자국과 실루엣을 더 촘촘히 배치 */
.catforest-page main {
  position: relative;
  overflow: hidden;
}
.catforest-page main::before,
.catforest-page main::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 260px;
  height: 760px;
  pointer-events: none;
  opacity: .055;
  background:
    url("../images/paw.svg") 20% 5% / 68px auto no-repeat,
    url("../images/paw.svg") 75% 20% / 48px auto no-repeat,
    url("../images/paw.svg") 28% 38% / 58px auto no-repeat,
    url("../images/paw.svg") 80% 56% / 42px auto no-repeat,
    url("../images/paw.svg") 18% 75% / 66px auto no-repeat,
    url("../images/paw.svg") 70% 94% / 50px auto no-repeat;
}
.catforest-page main::before { left: -40px; top: 76vh; transform: rotate(-14deg); }
.catforest-page main::after { right: -46px; top: 176vh; transform: rotate(16deg) scaleX(-1); }
.catforest-page section,
.catforest-page .cat-divider { position: relative; z-index: 2; }

.cat-hero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.cat-face-doodle {
  position: absolute;
  width: 120px;
  aspect-ratio: 1.12;
  border: 5px solid currentColor;
  border-radius: 48% 48% 44% 44%;
  color: currentColor;
  opacity: .18;
}
.cat-face-doodle::before,
.cat-face-doodle::after {
  content: "";
  position: absolute;
  top: -34px;
  width: 48px;
  height: 54px;
  border: 5px solid currentColor;
  border-bottom: 0;
  background: transparent;
}
.cat-face-doodle::before { left: 4px; transform: rotate(-22deg); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.cat-face-doodle::after { right: 4px; transform: rotate(22deg); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.cat-face-doodle--hero {
  right: 7%;
  top: 18%;
  width: 170px;
  color: #f0f5e9;
  opacity: .17;
  transform: rotate(7deg);
}
.cat-face-doodle--hero {
  background:
    radial-gradient(circle at 35% 50%, currentColor 0 4px, transparent 5px),
    radial-gradient(circle at 65% 50%, currentColor 0 4px, transparent 5px),
    radial-gradient(ellipse at 50% 68%, currentColor 0 5px, transparent 6px);
}
.cat-face-doodle--small {
  position: relative;
  inset: auto;
  width: 48px;
  border-width: 3px;
  color: var(--green);
  opacity: .46;
}
.cat-face-doodle--small::before,
.cat-face-doodle--small::after { top: -15px; width: 19px; height: 23px; border-width: 3px; }
.cat-face-doodle--soft {
  right: 5%;
  top: 12%;
  width: 92px;
  color: var(--green);
  opacity: .09;
  transform: rotate(8deg);
}
.cat-tail-doodle {
  position: absolute;
  width: 120px;
  height: 160px;
  border: 10px solid var(--green);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 100% 0 0;
  opacity: .08;
  transform: rotate(28deg);
}
.cat-tail-doodle--hero { left: 7%; bottom: 9%; border-color: #fff; opacity: .13; transform: rotate(-22deg) scaleX(-1); }
.cat-tail-doodle--rules { right: 3%; bottom: 10%; }
.cat-paw-stamp,
.cat-section-decor > i,
.cat-divider__paw {
  position: absolute;
  display: block;
  width: 58px;
  aspect-ratio: 140 / 130;
  background: currentColor;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
}
.cat-paw-stamp { color: #fff; opacity: .15; }
.cat-paw-stamp--1 { left: 7%; top: 24%; transform: rotate(-20deg); }
.cat-paw-stamp--2 { right: 18%; bottom: 15%; width: 42px; transform: rotate(17deg); }
.cat-paw-stamp--3 { left: 22%; bottom: 9%; width: 34px; transform: rotate(-8deg); }

.cat-divider {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--green);
  background: linear-gradient(90deg, transparent, rgba(223,231,217,.35), transparent);
}
.cat-divider__line { width: min(13vw, 120px); height: 1px; background: rgba(82,102,74,.25); }
.cat-divider__paw { position: relative; width: 31px; opacity: .32; transform: rotate(12deg); }

.cat-section-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; color: var(--green); }
.cat-section-decor > i { opacity: .08; }
.cat-section-decor > i:nth-child(1) { left: 3%; top: 13%; transform: rotate(-18deg); }
.cat-section-decor > i:nth-child(2) { right: 4%; top: 34%; width: 42px; transform: rotate(22deg); }
.cat-section-decor > i:nth-child(3) { left: 7%; bottom: 9%; width: 38px; transform: rotate(8deg); }
.cat-section-decor > i:nth-child(4) { right: 12%; bottom: 6%; width: 31px; transform: rotate(-14deg); }
.cat-section-decor--overview .cat-tail-doodle { right: 3%; bottom: 5%; }
.cat-section-decor--steps .cat-face-doodle--soft { left: 4%; right: auto; top: 9%; transform: rotate(-9deg); }
.cat-section-decor--treat .cat-face-doodle--soft { right: 6%; top: 8%; }

.forest-info-card,
.rule-item,
.forest-price-card,
.forest-photo-placeholder {
  position: relative;
}
.forest-info-card::before,
.forest-info-card::after {
  content: "";
  position: absolute;
  top: -18px;
  width: 34px;
  height: 38px;
  border: 4px solid rgba(82,102,74,.18);
  border-bottom: 0;
  background: #faf8f2;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.forest-info-card::before { left: 30px; transform: rotate(-13deg); }
.forest-info-card::after { left: 72px; transform: rotate(13deg); }
.forest-info-card:hover::before,
.forest-info-card:hover::after { border-color: rgba(82,102,74,.36); }
.rule-item::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 18px;
  width: 28px;
  aspect-ratio: 140 / 130;
  background: var(--green);
  opacity: .08;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
}
.forest-price-card::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 20px;
  width: 54px;
  aspect-ratio: 140 / 130;
  background: #fff;
  opacity: .12;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
}

@media (max-width: 760px) {
  .cat-face-doodle--hero { right: -22px; top: 23%; width: 116px; }
  .cat-tail-doodle--hero { left: -30px; bottom: 7%; transform: rotate(-22deg) scale(.7,-.7); }
  .cat-divider { min-height: 62px; gap: 10px; }
  .cat-face-doodle--small { width: 38px; }
  .cat-section-decor > i { opacity: .055; }
  .catforest-page main::before,
  .catforest-page main::after { opacity: .035; width: 180px; }
  .forest-info-card::before,
  .forest-info-card::after { top: -13px; width: 27px; height: 31px; }
  .forest-info-card::before { left: 24px; }
  .forest-info-card::after { left: 58px; }
}


/* v7: 모바일 전용 최적화 */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 104px;
}
body { min-width: 320px; }
a, button { -webkit-tap-highlight-color: rgba(82, 102, 74, .16); }
img { height: auto; }

@media (hover: none) {
  .button:hover,
  .guide-card:hover,
  .photo-card:hover img,
  .footer-instagram a:hover { transform: none; }
}

@media (max-width: 760px) {
  :root {
    --shadow: 0 14px 34px rgba(48, 51, 43, .11);
  }

  html { scroll-padding-top: calc(82px + env(safe-area-inset-top)); }
  body {
    font-size: 20px;
    line-height: 1.5;
    padding-bottom: env(safe-area-inset-bottom);
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  .shell { width: min(100% - 32px, 1180px); }
  .section { padding: 72px 0; }
  .kicker { margin-bottom: 10px; font-size: 16px; letter-spacing: .11em; }

  .site-header {
    padding-top: env(safe-area-inset-top);
    background: rgba(247, 244, 238, .96);
    box-shadow: 0 6px 22px rgba(36, 40, 33, .07);
  }
  .nav-wrap {
    width: calc(100% - 24px);
    min-height: 72px;
    gap: 12px;
  }
  .brand__en { font-size: 33px; }
  .brand__ko { margin-top: 5px; font-size: 13px; }
  .nav-toggle {
    position: relative;
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-content: center;
    border-radius: 50%;
    color: var(--ink);
    background: rgba(82, 102, 74, .08);
  }
  .nav-toggle span:not(.sr-only) {
    width: 23px;
    margin: 3px;
    transition: transform .24s ease, opacity .2s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .main-nav {
    inset: calc(72px + env(safe-area-inset-top)) 0 auto;
    max-height: calc(100dvh - 72px - env(safe-area-inset-top));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 12px 20px calc(22px + env(safe-area-inset-bottom));
    background: rgba(247, 244, 238, .99);
    border-radius: 0 0 24px 24px;
  }
  .main-nav a {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding: 10px 6px;
    font-size: 21px;
  }
  .main-nav a::after { bottom: 7px; }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    background-position: 58% center;
  }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(22,31,20,.88), rgba(22,31,20,.55) 68%, rgba(22,31,20,.28)),
      linear-gradient(180deg, rgba(0,0,0,.08), transparent 34%, rgba(0,0,0,.18));
  }
  .hero__content {
    padding-top: calc(104px + env(safe-area-inset-top));
    padding-bottom: calc(42px + env(safe-area-inset-bottom));
  }
  .hero__eyebrow { margin-bottom: 16px; font-size: 15px; letter-spacing: .12em; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(46px, 13.3vw, 64px);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
  .hero__copy {
    margin-top: 21px;
    font-size: clamp(19px, 5.4vw, 23px);
    line-height: 1.5;
  }
  .hero__actions { gap: 10px; margin-top: 25px; }
  .button {
    width: 100%;
    min-height: 58px;
    padding: 10px 20px;
    font-size: 20px;
    line-height: 1.2;
  }
  .button--forest {
    min-height: 70px;
    padding-inline: 22px;
    font-size: 24px;
  }
  .button__paw { width: 30px; height: 28px; }
  .scroll-cue { display: none; }
  .hero::after { right: -24px; bottom: 3vh; transform: rotate(-16deg) scale(.72); }

  .intro__grid { gap: 34px; }
  .section-copy h2,
  .section-heading h2,
  .catforest__copy h2,
  .location__content h2 {
    font-size: clamp(45px, 12.6vw, 62px);
    line-height: 1.1;
  }
  .section-copy > p:not(.kicker),
  .section-heading > p:not(.kicker),
  .catforest__copy > p,
  .forest-overview__copy > p:not(.kicker) {
    font-size: 20px;
    line-height: 1.55;
  }
  .intro__gallery {
    grid-template-rows: 260px 180px;
    gap: 12px;
  }
  .photo-card,
  .future-photo { border-radius: 18px; }
  .future-photo { min-height: 180px; padding: 18px; }
  .future-photo__icon { font-size: 40px; }
  .future-photo strong { font-size: 30px; }
  .future-photo small { font-size: 18px; }

  .section-heading { margin-bottom: 30px; }
  .menu-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 0;
    padding: 0;
    overflow: visible;
  }
  .menu-tab {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 10px 12px;
    font-size: 19px;
    line-height: 1.1;
  }
  .menu-content { margin-top: 18px; }
  .menu-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px;
    border-radius: 20px;
  }
  .menu-list article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
  }
  .menu-list h3 {
    min-width: 0;
    font-size: 22px;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }
  .menu-list span { font-size: 20px; white-space: nowrap; }
  .treat-card { margin-top: 22px; border-radius: 20px; }
  .treat-card__copy { padding: 28px 22px; }
  .treat-card h3 { font-size: clamp(39px, 11vw, 51px); }
  .treat-card p:not(.kicker) { font-size: 20px; }
  .treat-card img { height: 230px; }

  .guide-grid { gap: 12px; }
  .guide-card {
    min-height: 0;
    padding: 25px 22px;
    border-radius: 20px;
  }
  .guide-card__icon { width: 56px; height: 56px; margin-bottom: 17px; font-size: 27px; }
  .guide-card h3 { margin-bottom: 10px; font-size: 34px; }
  .guide-card p,
  .guide-card > a,
  .hours { font-size: 19px; }
  .guide-card > a { min-height: 44px; display: inline-flex; align-items: center; }
  .hours { gap: 5px; }
  .hours div { gap: 10px; padding-bottom: 6px; }
  .hours dd { text-align: right; }

  .location { min-height: 540px; background-position: 68% center; }
  .location__content address {
    margin-top: 20px;
    font-size: 23px;
    line-height: 1.4;
  }
  .location__actions { display: grid; gap: 10px; margin-top: 26px; }

  .site-footer { padding: 38px 0 calc(28px + env(safe-area-inset-bottom)); }
  .footer-grid { gap: 21px; }
  .footer-slogan,
  .footer-info p,
  .copyright { font-size: 17px; line-height: 1.45; }
  .footer-instagram {
    width: calc(100% - 32px);
    margin-top: 26px;
    padding-top: 22px;
  }
  .footer-instagram a {
    width: 100%;
    min-height: 60px;
    flex-wrap: wrap;
    gap: 7px;
    padding: 10px 16px;
    font-size: 19px;
    line-height: 1.25;
  }

  /* 모바일에서도 전환 글자는 수풀과 입자보다 항상 앞에 유지 */
  .forest-transition__content {
    z-index: 120;
    width: min(calc(100% - 32px), 520px);
    margin-top: -10svh;
    padding: 23px 18px;
    gap: 12px;
    border-radius: 24px;
  }
  .forest-transition__paw { width: 52px; }
  .forest-transition__title {
    max-width: 100%;
    font-size: clamp(40px, 12.5vw, 58px);
    line-height: 1.05;
  }
  .forest-bush { width: 78vw; min-width: 0; }
  .forest-bush--left { left: -78vw; }
  .forest-bush--right { right: -78vw; }
  .forest-transition.is-covering .forest-bush--left { animation-name: bushInLeftMobile; }
  .forest-transition.is-covering .forest-bush--right { animation-name: bushInRightMobile; }
  .forest-arrival .forest-bush--left,
  .forest-transition.is-covered .forest-bush--left { transform: translateX(78vw); }
  .forest-arrival .forest-bush--right,
  .forest-transition.is-covered .forest-bush--right { transform: translateX(-78vw) scaleX(-1); }
  .forest-transition.is-revealing .forest-bush--left { animation-name: bushOutLeftMobile; }
  .forest-transition.is-revealing .forest-bush--right { animation-name: bushOutRightMobile; }

  /* 고양이숲 페이지 */
  .catforest-page .site-header { color: var(--ink); }
  .forest-hero {
    min-height: 100svh;
    min-height: 100dvh;
  }
  .forest-hero__content {
    padding-top: calc(108px + env(safe-area-inset-top));
    padding-bottom: calc(48px + env(safe-area-inset-bottom));
  }
  .forest-hero__eyebrow { font-size: 16px; letter-spacing: .11em; }
  .forest-hero h1 {
    font-size: clamp(72px, 24vw, 108px);
    line-height: .92;
  }
  .forest-hero__copy { margin-top: 20px; font-size: 21px; line-height: 1.5; }
  .forest-hero__actions { display: grid; gap: 10px; margin-top: 26px; }
  .forest-paw-trail { right: -18px; bottom: 4%; transform: rotate(-19deg) scale(.62); }
  .cat-face-doodle--hero { right: -34px; top: 22%; width: 106px; }
  .cat-paw-stamp--2 { right: 8%; }

  .cat-divider { min-height: 56px; gap: 9px; }
  .cat-divider__line { width: 72px; }
  .cat-divider__paw { width: 27px; }
  .cat-face-doodle--small { width: 34px; }

  .forest-overview__grid { gap: 30px; }
  .forest-photo-placeholder { min-height: 330px; border-radius: 24px; }
  .forest-photo-placeholder__inner { padding: 24px 18px; }
  .forest-photo-placeholder__inner .placeholder-paw { width: 58px; }
  .forest-photo-placeholder strong { font-size: 39px; }
  .forest-photo-placeholder small { font-size: 19px; }
  .forest-overview__copy h2,
  .forest-rules__heading h2,
  .forest-treat__copy h2,
  .forest-cta h2 {
    font-size: clamp(44px, 12.8vw, 62px);
    line-height: 1.08;
  }
  .forest-price-card { margin-top: 22px; padding: 28px 24px; border-radius: 22px; }
  .forest-price-card span { font-size: 19px; }
  .forest-price-card strong { margin-top: 3px; font-size: 61px; }
  .forest-price-card p { margin-top: 12px; font-size: 19px; }

  .forest-card-grid { gap: 13px; }
  .forest-info-card {
    min-height: 0;
    padding: 28px 24px;
    border-radius: 22px;
  }
  .forest-info-card__number { width: 54px; height: 54px; margin-bottom: 18px; font-size: 29px; }
  .forest-info-card h3 { font-size: 34px; line-height: 1.08; }
  .forest-info-card p { font-size: 20px; line-height: 1.5; }

  .forest-rules__grid { gap: 28px; }
  .forest-rules__heading .desc { font-size: 20px; }
  .rule-list { gap: 10px; }
  .rule-item {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px;
    border-radius: 18px;
  }
  .rule-item__icon { width: 48px; height: 48px; font-size: 22px; }
  .rule-item h3 { margin-bottom: 4px; font-size: 25px; line-height: 1.25; }
  .rule-item p { font-size: 18px; line-height: 1.5; }

  .forest-treat__grid { border-radius: 22px; }
  .forest-treat__copy { padding: 30px 22px; }
  .forest-treat__copy p:not(.kicker) { font-size: 20px; }
  .forest-treat img { min-height: 240px; max-height: 300px; }
  .forest-cta p { font-size: 20px; }
  .forest-cta__actions { display: grid; gap: 10px; margin-top: 23px; }

  .nature-mark { transform-origin: center; }
  .nature-mark--leaf { width: 62px; }
  .nature-mark--paw { width: 54px; }
  .catforest-page main::before,
  .catforest-page main::after { width: 150px; opacity: .028; }
}

@keyframes bushInLeftMobile {
  from { transform: translateX(0); }
  to { transform: translateX(78vw); }
}
@keyframes bushInRightMobile {
  from { transform: scaleX(-1); }
  to { transform: translateX(-78vw) scaleX(-1); }
}
@keyframes bushOutLeftMobile {
  from { transform: translateX(78vw); }
  to { transform: translateX(0); }
}
@keyframes bushOutRightMobile {
  from { transform: translateX(-78vw) scaleX(-1); }
  to { transform: scaleX(-1); }
}

@media (max-width: 600px) {
  .intro__gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 280px 220px 190px;
  }
  .photo-card--main { grid-column: auto; grid-row: auto; }
  .menu-tabs { grid-template-columns: 1fr 1fr; }
  .location__content h2 br,
  .forest-cta h2 br { display: none; }
}

@media (max-width: 380px) {
  .shell { width: calc(100% - 24px); }
  .hero h1 { font-size: 43px; }
  .hero__copy { font-size: 18px; }
  .button--forest { font-size: 22px; }
  .menu-tab { font-size: 18px; }
  .menu-list { padding: 16px; }
  .menu-list h3 { font-size: 20px; }
  .menu-list span { font-size: 18px; }
  .rule-item { grid-template-columns: 42px minmax(0, 1fr); padding: 18px 15px; }
  .rule-item__icon { width: 42px; height: 42px; }
  .forest-transition__content { width: calc(100% - 24px); }
  .footer-instagram { width: calc(100% - 24px); }
}

@media (max-width: 900px) and (max-height: 600px) and (orientation: landscape) {
  .hero,
  .forest-hero { min-height: 680px; }
  .hero__content,
  .forest-hero__content { padding-top: 100px; padding-bottom: 42px; }
  .hero h1 { font-size: 52px; }
  .forest-hero h1 { font-size: 82px; }
  .hero__actions,
  .forest-hero__actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* v8 brand logo, order policy, cat profiles */
.brand { display:inline-flex; align-items:center; flex-direction:row; }
.brand__logo { width:150px; height:62px; object-fit:contain; object-position:left center; mix-blend-mode:multiply; }
.brand--footer .brand__logo { width:180px; height:92px; padding:8px; background:#fff; border-radius:16px; mix-blend-mode:normal; }
.one-menu-notice { display:flex; align-items:flex-start; gap:18px; max-width:900px; margin:30px auto 36px; padding:24px 28px; border:1px solid rgba(114,88,57,.22); border-radius:22px; background:#fffaf0; box-shadow:0 12px 30px rgba(56,42,24,.07); }
.one-menu-notice>span { display:grid; place-items:center; flex:0 0 54px; width:54px; height:54px; border-radius:50%; background:#e8efe2; font-size:28px; }
.one-menu-notice strong { font-size:26px; color:#4c533e; }
.one-menu-notice p { margin:5px 0 0; font-size:19px; color:#71695f; }
.guide-card--order strong { color:#526548; }
.guide-card a[href="tel:01038780510"] { display:block; margin-top:6px; }
.cat-profiles { position:relative; overflow:hidden; background:linear-gradient(180deg,#f7f2e8 0%,#edf2e8 100%); }
.cat-profiles::before,.cat-profiles::after { content:"🐾"; position:absolute; opacity:.06; font-size:180px; transform:rotate(-18deg); }
.cat-profiles::before { left:-25px; top:120px; }
.cat-profiles::after { right:-25px; bottom:80px; transform:rotate(20deg); }
.cat-profile-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:24px; position:relative; z-index:1; }
.cat-profile-card { overflow:hidden; border:1px solid rgba(81,101,72,.16); border-radius:28px; background:rgba(255,255,255,.9); box-shadow:0 16px 38px rgba(60,73,51,.09); }
.cat-profile-photo { position:relative; display:grid; place-items:center; aspect-ratio:4/3; background:radial-gradient(circle at 50% 42%,#f9fbf5 0 24%,transparent 25%),linear-gradient(135deg,#dce6d6,#f3eadf); color:#66735e; font-size:24px; }
.cat-profile-photo::before { content:"🐱"; position:absolute; top:50%; left:50%; transform:translate(-50%,-62%); font-size:84px; opacity:.22; }
.cat-profile-photo span { position:relative; margin-top:92px; font-weight:700; }
.cat-profile-body { padding:24px; }
.cat-profile-body h3 { margin:0 0 18px; font-size:31px; color:#3d4738; }
.cat-profile-body dl { margin:0; display:grid; gap:10px; }
.cat-profile-body dl div { display:grid; grid-template-columns:92px 1fr; gap:10px; padding-bottom:8px; border-bottom:1px dashed #ded8cd; }
.cat-profile-body dt { font-weight:700; color:#65715d; }
.cat-profile-body dd { margin:0; color:#81796f; }
.cat-profile-note { margin:28px 0 0; text-align:center; color:#6f685f; font-size:19px; }
@media (max-width:900px){
  .brand__logo{width:130px;height:54px}.brand--footer .brand__logo{width:160px;height:82px}
  .cat-profile-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .one-menu-notice strong{font-size:23px}.one-menu-notice p{font-size:18px}
}
@media (max-width:600px){
  .brand__logo{width:112px;height:46px}.brand--footer .brand__logo{width:150px;height:76px}
  .one-menu-notice{gap:12px;padding:19px 17px;margin:22px auto 28px}.one-menu-notice>span{width:46px;height:46px;flex-basis:46px;font-size:23px}.one-menu-notice strong{font-size:21px;line-height:1.35}.one-menu-notice p{font-size:17px;line-height:1.45}
  .cat-profile-grid{grid-template-columns:1fr;gap:16px}.cat-profile-card{border-radius:22px}.cat-profile-body{padding:21px}.cat-profile-body h3{font-size:28px}.cat-profile-body dl div{grid-template-columns:78px 1fr}.cat-profile-note{font-size:17px}
}

/* v9 transparent white logo + compact cat directory */
.site-header,
.site-header.is-scrolled,
.catforest-page .site-header,
.catforest-page .site-header.is-scrolled {
  background: rgba(35,49,31,.94) !important;
  color:#fff !important;
  border-bottom-color:rgba(255,255,255,.12) !important;
}
.brand__logo{
  width:150px;
  height:66px;
  object-fit:contain;
  object-position:left center;
  background:transparent !important;
  mix-blend-mode:normal !important;
  filter:none !important;
}
.brand--footer .brand__logo{
  width:190px;
  height:100px;
  padding:0;
  background:transparent !important;
  border-radius:0;
}
.nav-toggle span{background:currentColor}

.cat-profile-preview{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:20px;position:relative;z-index:1}
.cat-directory-actions{text-align:center;margin-top:24px;position:relative;z-index:2}
.cat-directory-open{min-width:280px}
.cat-directory{width:100%;height:100%;max-width:none;max-height:none;margin:0;padding:0;border:0;background:rgba(20,30,18,.78);backdrop-filter:blur(10px)}
.cat-directory::backdrop{background:rgba(20,30,18,.78);backdrop-filter:blur(10px)}
.cat-directory__panel{width:min(1180px,calc(100% - 32px));max-height:calc(100dvh - 40px);overflow:auto;margin:20px auto;background:#f6f1e8;border-radius:30px;padding:30px;box-shadow:0 30px 90px rgba(0,0,0,.35)}
.cat-directory__header{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;position:sticky;top:-30px;z-index:5;background:linear-gradient(#f6f1e8 82%,rgba(246,241,232,0));padding:30px 0 24px}
.cat-directory__header h2{margin:0;font-size:clamp(36px,5vw,62px)}
.cat-directory__header p{margin:4px 0 0;color:#766f66}
.cat-directory__close{flex:0 0 auto;width:54px;height:54px;border:0;border-radius:50%;background:#33472e;color:#fff;font-size:38px;line-height:1;cursor:pointer}
.cat-directory__tools{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:24px}
.cat-directory__tools label{flex:1}
.cat-directory__tools input{width:100%;padding:15px 18px;border:1px solid #d7d0c4;border-radius:999px;background:#fff;font:inherit;color:#30362c;outline:none}
.cat-directory__tools input:focus{border-color:#637a58;box-shadow:0 0 0 4px rgba(99,122,88,.12)}
.cat-directory__count{white-space:nowrap;font-weight:700;color:#526548}
.cat-directory__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}
.cat-directory__grid .cat-profile-card{box-shadow:none}
body:has(.cat-directory[open]){overflow:hidden}

@media(max-width:1000px){.cat-profile-preview{grid-template-columns:repeat(2,minmax(0,1fr))}.cat-directory__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:700px){
  .brand__logo{width:112px;height:50px}.brand--footer .brand__logo{width:150px;height:80px}
  .cat-profile-preview{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:14px;padding:0 4px 12px}.cat-profile-preview .cat-profile-card{min-width:82%;scroll-snap-align:center}
  .cat-directory__panel{width:100%;height:100dvh;max-height:none;margin:0;border-radius:0;padding:18px}
  .cat-directory__header{top:-18px;padding:18px 0 16px}.cat-directory__header h2{font-size:38px}.cat-directory__close{width:48px;height:48px}
  .cat-directory__tools{align-items:stretch;flex-direction:column}.cat-directory__count{align-self:flex-end}
  .cat-directory__grid{grid-template-columns:1fr;gap:14px}.cat-directory-open{width:100%;min-width:0}
}

/* v10: PC heading fix + separate spring cat gallery */
@media (min-width: 1041px) {
  .forest-rules__grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .forest-rules__heading {
    position: static;
    max-width: none;
    text-align: center;
  }
  .forest-rules__heading h2 {
    width: 100%;
    max-width: none;
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    font-size: clamp(56px, 4.8vw, 72px);
    line-height: 1.06;
  }
  .forest-rules__heading .desc {
    max-width: 760px;
    margin: 18px auto 0;
  }
  .rule-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cat-gallery-page {
  --spring-cream: #fbf7eb;
  --spring-yellow: #fff2b7;
  --spring-green: #75956a;
  --spring-green-deep: #38583b;
  --spring-green-soft: #dcebcf;
  background: var(--spring-cream);
}
.cat-gallery-page .site-header,
.cat-gallery-page .site-header.is-scrolled {
  background: rgba(51, 79, 51, .95) !important;
  color: #fff !important;
}
.cat-gallery-page .main-nav a[aria-current="page"]::after { right: 0; }

.gallery-hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #2f4d35;
  background:
    radial-gradient(circle at 25% 12%, rgba(255, 244, 190, .95) 0 10%, rgba(255,244,190,.28) 28%, transparent 44%),
    linear-gradient(180deg, #fdf8e9 0%, #eef5df 58%, #cddfbd 100%);
}
.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
    url("../images/leaf.svg") 4% 25% / 180px auto no-repeat,
    url("../images/leaf.svg") 96% 18% / 220px auto no-repeat,
    url("../images/paw.svg") 12% 76% / 92px auto no-repeat,
    url("../images/paw.svg") 88% 67% / 70px auto no-repeat;
}
.gallery-hero__content {
  position: relative;
  z-index: 3;
  padding: 150px 0 110px;
  text-align: center;
}
.gallery-hero .kicker { color: #587251; font-size: 17px; }
.gallery-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(82px, 10vw, 148px);
  font-weight: 700;
  line-height: .86;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.gallery-hero__content > p:not(.kicker) {
  max-width: 700px;
  margin: 30px auto 0;
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.45;
  color: #5b6b56;
}
.gallery-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}
.button--sun {
  color: #38583b;
  background: #fff2b7;
  border-color: rgba(80,100,62,.12);
  box-shadow: 0 15px 32px rgba(89,104,63,.17);
}
.button--sun:hover { background: #ffe994; }
.button--spring-outline {
  color: #3d613f;
  border-color: rgba(61,97,63,.32);
  background: rgba(255,255,255,.52);
}
.grass-line {
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -8px;
  height: 74px;
  opacity: .78;
  background:
    radial-gradient(ellipse at 3% 100%, #749667 0 42%, transparent 43%) 0 0 / 90px 70px repeat-x;
}
.sun-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}
.sun-glow--one { width: 440px; height: 440px; left: -120px; top: -160px; background: rgba(255,239,154,.45); }
.sun-glow--two { width: 300px; height: 300px; right: -40px; top: 120px; background: rgba(255,247,198,.36); }
.gallery-leaf,
.gallery-paw {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}
.gallery-leaf {
  width: 92px;
  aspect-ratio: 1;
  background: #6f9064;
  -webkit-mask: url("../images/leaf.svg") center / contain no-repeat;
  mask: url("../images/leaf.svg") center / contain no-repeat;
  opacity: .22;
  animation: galleryFloat 7s ease-in-out infinite;
}
.gallery-leaf--a { left: 9%; top: 24%; transform: rotate(-24deg); }
.gallery-leaf--b { right: 12%; bottom: 19%; transform: rotate(33deg) scale(.78); animation-delay: -2.5s; }
.gallery-paw {
  width: 58px;
  aspect-ratio: 140 / 130;
  background: #5d7c59;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
  opacity: .14;
}
.gallery-paw--a { left: 18%; bottom: 18%; transform: rotate(-18deg); }
.gallery-paw--b { right: 20%; top: 24%; transform: rotate(19deg) scale(.8); }
@keyframes galleryFloat {
  0%,100% { translate: 0 0; rotate: 0deg; }
  50% { translate: 0 -18px; rotate: 8deg; }
}

.gallery-directory {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(255,239,167,.38), transparent 20%),
    linear-gradient(180deg, #f8faed 0%, #edf4e4 100%);
}
.gallery-directory__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.gallery-directory__heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7vw, 96px);
  line-height: .95;
  color: #36553a;
}
.gallery-directory__heading p:not(.kicker) { margin: 10px 0 0; font-size: 23px; color: #65705f; }
.gallery-count {
  display: grid;
  min-width: 96px;
  min-height: 96px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #78976b;
  box-shadow: 0 14px 30px rgba(67,91,60,.18);
  font-size: 30px;
  font-weight: 700;
}
.gallery-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.gallery-search {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid rgba(72,99,66,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 12px 30px rgba(73,93,65,.07);
}
.gallery-search > span:first-child { font-size: 32px; color: #6e8b63; }
.gallery-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #344b36;
  font: inherit;
  font-size: 23px;
}
.gallery-shuffle {
  min-height: 62px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: #476b49;
  cursor: pointer;
  font-size: 22px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(63,92,61,.18);
  transition: transform .2s ease, background .2s ease;
}
.gallery-shuffle:hover { transform: translateY(-2px); background: #335537; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.gallery-cat-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(75,102,68,.14);
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 40px rgba(66,87,58,.09);
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease;
}
.gallery-cat-card:hover,
.gallery-cat-card:focus-visible {
  transform: translateY(-8px) rotate(-.3deg);
  box-shadow: 0 28px 54px rgba(66,87,58,.16);
  outline: none;
}
.gallery-cat-card::before,
.gallery-cat-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: -12px;
  width: 45px;
  height: 55px;
  border-radius: 80% 20% 60% 30%;
  background: #f5ead8;
  opacity: 0;
  transition: top .25s ease, opacity .25s ease;
}
.gallery-cat-card::before { left: 34px; transform: rotate(-24deg); }
.gallery-cat-card::after { right: 34px; transform: rotate(24deg) scaleX(-1); }
.gallery-cat-card:hover::before,
.gallery-cat-card:hover::after,
.gallery-cat-card:focus-visible::before,
.gallery-cat-card:focus-visible::after { top: -2px; opacity: 1; }
.gallery-cat-card__photo {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / .84;
  overflow: hidden;
  color: #65805d;
  background:
    radial-gradient(circle at 50% 45%, rgba(255,255,255,.92) 0 25%, transparent 26%),
    linear-gradient(145deg, #d9e7cc, #f6eecf);
}
.gallery-cat-card__photo::before {
  content: "🐱";
  font-size: 88px;
  opacity: .28;
  filter: saturate(.65);
}
.gallery-cat-card__photo::after {
  content: "사진 준비 중";
  position: absolute;
  bottom: 18px;
  padding: 4px 12px;
  border-radius: 999px;
  color: #60745b;
  background: rgba(255,255,255,.72);
  font-size: 18px;
  font-weight: 700;
}
.gallery-cat-card__body { padding: 22px; }
.gallery-cat-card__number { display: block; color: #8b9d81; font-size: 17px; font-weight: 700; letter-spacing: .08em; }
.gallery-cat-card h3 { margin: 2px 0 8px; color: #355239; font-size: 35px; line-height: 1; }
.gallery-cat-card p { margin: 0; color: #73786e; font-size: 19px; }
.gallery-cat-card__paw {
  position: absolute;
  right: 18px;
  bottom: 17px;
  width: 29px;
  aspect-ratio: 140 / 130;
  background: #7f9c73;
  -webkit-mask: url("../images/paw.svg") center / contain no-repeat;
  mask: url("../images/paw.svg") center / contain no-repeat;
  opacity: .32;
}
.gallery-empty {
  margin: 40px 0 0;
  padding: 28px;
  border-radius: 22px;
  text-align: center;
  color: #5e7058;
  background: rgba(255,255,255,.7);
  font-size: 24px;
}
.gallery-flower {
  position: absolute;
  color: #e5c95e;
  opacity: .3;
  font-size: 120px;
}
.gallery-flower--a { left: -24px; top: 120px; transform: rotate(-15deg); }
.gallery-flower--b { right: -15px; bottom: 100px; transform: rotate(12deg) scale(.8); }

.gallery-note {
  padding: 76px 0 100px;
  background: linear-gradient(180deg, #edf4e4, #d9e8ca);
}
.gallery-note__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 38px;
  border: 1px solid rgba(73,100,65,.14);
  border-radius: 30px;
  background: rgba(255,253,243,.86);
  box-shadow: 0 22px 48px rgba(67,87,57,.11);
}
.gallery-note__cat { font-size: 72px; filter: saturate(.7); }
.gallery-note h2 { margin: 0; color: #38543b; font-family: var(--serif); font-size: 47px; line-height: 1; }
.gallery-note p:not(.kicker) { margin: 8px 0 0; color: #687163; font-size: 21px; }
.gallery-footer { background: #2f4c34; }

.gallery-profile-dialog {
  width: min(920px, calc(100% - 34px));
  max-width: 920px;
  padding: 0;
  border: 0;
  border-radius: 34px;
  background: transparent;
  overflow: visible;
}
.gallery-profile-dialog::backdrop { background: rgba(27,48,29,.7); backdrop-filter: blur(10px); }
.gallery-profile-dialog__card {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
  border-radius: 34px;
  background: #fffaf0;
  box-shadow: 0 36px 90px rgba(0,0,0,.32);
}
.gallery-profile-dialog__close {
  position: absolute;
  z-index: 5;
  right: 18px;
  top: 18px;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #3e6242;
  font-size: 34px;
  cursor: pointer;
}
.gallery-profile-dialog__photo {
  min-height: 480px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #61775b;
  background:
    radial-gradient(circle at 25% 20%, rgba(255,244,176,.6), transparent 30%),
    linear-gradient(145deg,#d9e9cc,#f5e8c9);
}
.gallery-profile-dialog__photo span { font-size: 130px; opacity: .3; }
.gallery-profile-dialog__photo small { font-size: 22px; font-weight: 700; }
.gallery-profile-dialog__body { padding: 56px 48px; }
.gallery-profile-dialog__body h2 { margin: 0; color: #345238; font-family: var(--serif); font-size: 72px; line-height: .95; }
.gallery-profile-dialog__body dl { display: grid; gap: 10px; margin: 28px 0 0; }
.gallery-profile-dialog__body dl div { display: grid; grid-template-columns: 100px 1fr; gap: 12px; padding: 10px 0; border-bottom: 1px dashed #d8d3c4; }
.gallery-profile-dialog__body dt { color: #688062; font-weight: 700; }
.gallery-profile-dialog__body dd { margin: 0; color: #777168; }
.gallery-profile-dialog__message { margin: 25px 0 0; color: #697365; font-size: 20px; }
.paw-toast {
  position: fixed;
  z-index: 5000;
  left: 50%;
  bottom: 28px;
  translate: -50% 20px;
  opacity: 0;
  pointer-events: none;
  padding: 13px 22px;
  border-radius: 999px;
  color: #fff;
  background: rgba(49,80,52,.94);
  box-shadow: 0 14px 34px rgba(33,58,35,.25);
  font-size: 22px;
  transition: opacity .25s ease, translate .25s ease;
}
.paw-toast.is-visible { opacity: 1; translate: -50% 0; }

@media (max-width: 1000px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-note__card { grid-template-columns: auto 1fr; }
  .gallery-note__card .button { grid-column: 1 / -1; justify-self: stretch; }
}
@media (max-width: 760px) {
  .forest-rules__heading h2 {
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .gallery-hero { min-height: 82svh; }
  .gallery-hero__content { padding: 125px 0 90px; }
  .gallery-hero h1 { font-size: clamp(70px, 21vw, 104px); }
  .gallery-hero__content > p:not(.kicker) { font-size: 21px; }
  .gallery-hero__actions { display: grid; }
  .gallery-directory__heading { align-items: flex-start; }
  .gallery-directory__heading h2 { font-size: 62px; }
  .gallery-directory__heading p:not(.kicker) { font-size: 20px; }
  .gallery-count { min-width: 76px; min-height: 76px; font-size: 25px; }
  .gallery-tools { align-items: stretch; flex-direction: column; }
  .gallery-search, .gallery-shuffle { width: 100%; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .gallery-cat-card { border-radius: 22px; }
  .gallery-cat-card__photo::before { font-size: 64px; }
  .gallery-cat-card__photo::after { bottom: 10px; font-size: 15px; }
  .gallery-cat-card__body { padding: 17px 14px; }
  .gallery-cat-card h3 { font-size: 29px; }
  .gallery-cat-card p { font-size: 17px; }
  .gallery-cat-card__paw { width: 22px; right: 12px; bottom: 12px; }
  .gallery-note { padding: 52px 0 72px; }
  .gallery-note__card { grid-template-columns: 1fr; padding: 28px 23px; text-align: center; }
  .gallery-note__cat { font-size: 58px; }
  .gallery-note h2 { font-size: 40px; }
  .gallery-note p:not(.kicker) { font-size: 19px; }
  .gallery-profile-dialog { width: calc(100% - 20px); max-height: calc(100dvh - 20px); }
  .gallery-profile-dialog__card { grid-template-columns: 1fr; max-height: calc(100dvh - 20px); overflow: auto; border-radius: 25px; }
  .gallery-profile-dialog__photo { min-height: 260px; }
  .gallery-profile-dialog__photo span { font-size: 92px; }
  .gallery-profile-dialog__body { padding: 30px 24px 36px; }
  .gallery-profile-dialog__body h2 { font-size: 58px; }
}
@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-directory__heading { display: grid; }
  .gallery-count { min-width: 0; width: fit-content; min-height: 0; padding: 8px 18px; border-radius: 999px; font-size: 22px; }
}


/* v12 temporary name-only cat profiles */
.cat-profile-card--name-only .cat-profile-body{padding:22px;text-align:center}
.cat-profile-card--name-only .cat-profile-body h3{margin:0;font-size:clamp(31px,3vw,40px)}
.cat-directory-open.is-disabled{display:inline-flex;align-items:center;justify-content:center;gap:10px;cursor:not-allowed;opacity:.58;filter:saturate(.55);box-shadow:none;pointer-events:none}
.cat-directory-open.is-disabled small{font-size:.62em;font-weight:700;padding:.18em .55em;border-radius:999px;background:rgba(255,255,255,.2)}
@media(max-width:700px){.cat-profile-card--name-only .cat-profile-body{padding:18px}.cat-profile-card--name-only .cat-profile-body h3{font-size:32px}}


/* v13 FAQ 섹션 + 오시는 길 접근 정보 (SEO/AEO) */
.faq-list { display: grid; gap: 14px; max-width: 840px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 30px rgba(48, 51, 43, .07); overflow: hidden; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 26px; cursor: pointer; list-style: none;
  font-size: 21px; font-weight: 700; color: var(--ink); line-height: 1.4;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; flex: none; width: 30px; height: 30px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green-soft); color: var(--green-deep); font-size: 20px; font-weight: 800;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 26px 22px; color: var(--muted); font-size: 17px; line-height: 1.75; }
.faq-answer p { margin: 0; }
.location__access { margin-top: 14px; max-width: 620px; color: rgba(255, 255, 255, .78); font-size: 17px; line-height: 1.7; }
@media (max-width: 700px) {
  .faq-item summary { padding: 16px 18px; font-size: 19px; }
  .faq-answer { padding: 0 18px 18px; font-size: 16px; }
}
