:root {
  --forest: #173c33;
  --forest-deep: #0f2c25;
  --forest-soft: #2f584d;
  --cream: #f4f0e6;
  --paper: #fbfaf6;
  --sage: #dbe4d7;
  --sage-bright: #cbd9c5;
  --sea: #c9dde2;
  --terracotta: #c96d4d;
  --ink: #1d2824;
  --muted: #66716c;
  --line: rgba(23, 60, 51, 0.16);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(20, 46, 39, 0.14);
  --sans: "Noto Sans KR", Pretendard, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --serif: "Noto Serif KR", "Nanum Myeongjo", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(201, 109, 77, 0.75);
  outline-offset: 4px;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 124px 0;
}

.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;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--forest);
  color: white;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 246, 0.8);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(251, 250, 246, 0.96);
  box-shadow: 0 8px 32px rgba(23, 60, 51, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 50% 50% 44% 56% / 54% 43% 57% 46%;
  background: var(--forest);
  color: var(--cream);
  font-family: Georgia, serif;
  font-size: 21px;
  font-style: italic;
  line-height: 1;
  transform: rotate(-5deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-copy small {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-menu a {
  position: relative;
  padding: 28px 0 25px;
  color: #3e4a45;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-menu a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 1px;
  background: var(--terracotta);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.site-menu a:hover {
  color: var(--forest);
}

.site-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-menu .menu-store {
  display: none;
}

.header-contact {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-contact:hover {
  background: var(--forest);
  color: white;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding: 150px 0 82px;
  background: var(--cream);
}

.hero-wash {
  position: absolute;
  top: -280px;
  left: -180px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(23, 60, 51, 0.1);
  border-radius: 47% 53% 61% 39% / 42% 48% 52% 58%;
  background: rgba(217, 228, 213, 0.52);
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(440px, 0.87fr);
  align-items: center;
  gap: clamp(54px, 7vw, 106px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--forest-soft);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin-bottom: 29px;
  font-family: var(--serif);
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -0.072em;
  line-height: 1.3;
}

.hero h1 em {
  position: relative;
  color: var(--forest);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: -4px;
  bottom: 1px;
  left: 2px;
  z-index: -1;
  height: 14px;
  background: rgba(201, 109, 77, 0.2);
  content: "";
  transform: rotate(-1deg);
}

.hero-intro {
  max-width: 600px;
  margin-bottom: 37px;
  color: #59645f;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions,
.visit-actions,
.final-cta-inner > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

.button-primary:hover {
  background: var(--forest-deep);
}

.button-text {
  padding-right: 8px;
  color: var(--forest);
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.button-outline:hover {
  border-color: var(--forest);
}

.button-cream {
  background: var(--cream);
  color: var(--forest);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.45);
  color: white;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 610px;
  margin: 54px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
}

.hero-points div {
  padding-right: 20px;
}

.hero-points div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.hero-points dt {
  margin-bottom: 4px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.hero-points dd {
  margin: 0;
  color: #79827e;
  font-size: 11px;
}

.hero-visual {
  position: relative;
  padding: 17px 0 36px 28px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  min-height: 574px;
  border-radius: 210px 210px 26px 26px;
  background: var(--sage);
  box-shadow: var(--shadow);
}

.hero-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(11, 37, 30, 0.55));
  content: "";
}

.hero-frame img {
  width: 100%;
  height: 574px;
  object-fit: cover;
  object-position: 54% center;
}

.photo-note {
  position: absolute;
  z-index: 2;
  top: 96px;
  left: 26px;
  padding: 7px 12px;
  background: rgba(244, 240, 230, 0.86);
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.16em;
  transform: rotate(-4deg);
}

.photo-caption {
  position: absolute;
  z-index: 2;
  right: 31px;
  bottom: 31px;
  left: 31px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: white;
}

.caption-index {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  font-family: Georgia, serif;
  font-size: 13px;
}

.photo-caption p {
  margin: 0;
  text-align: right;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
}

.hero-stamp {
  position: absolute;
  right: -31px;
  bottom: 0;
  z-index: 3;
  display: flex;
  width: 116px;
  height: 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23, 60, 51, 0.22);
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  box-shadow: 0 14px 30px rgba(99, 57, 40, 0.22);
  transform: rotate(7deg);
}

.hero-stamp strong {
  margin: 2px 0 0;
  font-family: Georgia, serif;
  font-size: 29px;
  font-style: italic;
  line-height: 1;
}

.hero-stamp span {
  font-family: Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-scroll {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.hero-scroll i {
  width: 1px;
  height: 46px;
  background: var(--forest);
}

.section-heading {
  margin-bottom: 58px;
}

.section-heading h2 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.35;
}

.section-heading > p:last-child,
.heading-split > p {
  max-width: 580px;
  color: var(--muted);
  font-size: 16px;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
  gap: 80px;
}

.heading-split .eyebrow {
  margin-bottom: 20px;
}

.heading-split h2 {
  margin-bottom: 0;
}

.heading-split > p {
  margin-bottom: 5px;
  line-height: 1.9;
}

.path-section {
  background: var(--paper);
}

.path-list {
  border-top: 1px solid var(--line);
}

.path-row {
  display: grid;
  grid-template-columns: 74px minmax(230px, 0.7fr) minmax(260px, 1fr) 54px;
  align-items: center;
  min-height: 150px;
  padding: 22px 28px 22px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.path-row:hover {
  position: relative;
  z-index: 1;
  background: var(--sage);
  transform: translateX(8px);
}

.path-number {
  align-self: start;
  padding-top: 12px;
  color: var(--terracotta);
  font-family: Georgia, serif;
  font-size: 13px;
}

.path-title small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.path-title h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.path-row > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.path-arrow {
  justify-self: end;
  font-size: 23px;
  transition: transform 0.2s ease;
}

.path-row:hover .path-arrow {
  transform: translate(4px, -4px);
}

.path-row-dark:hover {
  background: var(--forest);
  color: white;
}

.path-row-dark:hover p,
.path-row-dark:hover small,
.path-row-dark:hover .path-number {
  color: rgba(255, 255, 255, 0.72);
}

.path-row-store:hover {
  background: var(--sea);
}

.experience-section {
  background: #ece8dc;
}

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

.program-card {
  overflow: hidden;
  border: 1px solid rgba(23, 60, 51, 0.12);
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  box-shadow: 0 20px 50px rgba(23, 60, 51, 0.1);
  transform: translateY(-6px);
}

.program-art {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 27px;
}

.program-art strong {
  position: relative;
  z-index: 2;
  font-family: Georgia, serif;
  font-size: clamp(43px, 4vw, 58px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.art-label {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 27px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.art-ocean {
  background: var(--sea);
  color: var(--forest);
}

.art-skin {
  background: #e8cdbc;
  color: #653d31;
}

.art-aroma {
  background: var(--sage-bright);
  color: var(--forest);
}

.art-orbit {
  position: absolute;
  border: 1px solid rgba(23, 60, 51, 0.3);
  border-radius: 50%;
}

.orbit-one {
  top: -65px;
  right: -45px;
  width: 230px;
  height: 230px;
}

.orbit-two {
  top: 18px;
  right: 38px;
  width: 90px;
  height: 90px;
  background: rgba(244, 240, 230, 0.32);
}

.art-drop {
  position: absolute;
  border-radius: 60% 40% 56% 44% / 56% 44% 56% 44%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(35deg);
}

.drop-one {
  top: 38px;
  right: 35px;
  width: 110px;
  height: 148px;
}

.drop-two {
  top: 84px;
  right: 114px;
  width: 45px;
  height: 62px;
  background: rgba(101, 61, 49, 0.13);
}

.art-line {
  position: absolute;
  width: 240px;
  height: 100px;
  border-top: 1px solid rgba(23, 60, 51, 0.28);
  border-radius: 50%;
  transform: rotate(-35deg);
}

.line-one {
  top: 38px;
  right: -42px;
}

.line-two {
  top: 80px;
  right: -18px;
}

.program-body {
  min-height: 285px;
  padding: 29px;
}

.program-tag {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.program-body h3,
.program-inquiry h3 {
  margin-bottom: 13px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.program-body p,
.program-inquiry p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.program-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.program-body li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--forest-soft);
  font-size: 10px;
  font-weight: 600;
}

.program-inquiry {
  display: flex;
  min-height: 220px;
  grid-column: 1 / -1;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 38px 42px;
  background: var(--forest);
  color: white;
}

.program-inquiry:hover {
  transform: translateY(-3px);
}

.program-inquiry p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
}

.program-inquiry a {
  flex-shrink: 0;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
}

.program-notice {
  margin: 25px 0 0;
  color: #78817c;
  font-size: 12px;
  text-align: right;
}

.education-section {
  position: relative;
  overflow: hidden;
  background: var(--forest);
  color: white;
}

.education-grain {
  position: absolute;
  top: -120px;
  left: -80px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 49% 51% 35% 65% / 47% 40% 60% 53%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.012), 0 0 0 140px rgba(255, 255, 255, 0.01);
  transform: rotate(25deg);
}

.education-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.75fr);
  gap: clamp(80px, 10vw, 154px);
}

.eyebrow-light {
  color: #bcd1c5;
}

.education-copy h2 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.1vw, 58px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.42;
}

.education-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 2;
}

.education-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 33px 0 38px;
}

.education-keywords span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
}

.education-panel {
  align-self: stretch;
  padding: 41px;
  border: 1px solid var(--white-line);
  background: rgba(255, 255, 255, 0.055);
}

.panel-kicker {
  margin-bottom: 31px;
  color: #aec5b8;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 21px;
  padding: 26px 0;
  border-top: 1px solid var(--white-line);
}

.process-list li > span {
  color: #dca087;
  font-family: Georgia, serif;
  font-size: 13px;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 17px;
}

.process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.panel-note {
  margin-top: 20px;
  padding: 22px 23px;
  background: var(--cream);
  color: var(--forest);
}

.panel-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.panel-note p {
  margin: 0;
  color: #61726b;
  font-size: 11px;
}

.story-section {
  background: var(--paper);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.65fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.story-quote {
  position: relative;
  padding: 52px 0 52px 54px;
  border-left: 1px solid var(--line);
}

.quote-mark {
  position: absolute;
  top: -8px;
  left: 25px;
  color: var(--terracotta);
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
}

.story-quote blockquote {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(27px, 3.2vw, 43px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.7;
}

.story-quote blockquote em {
  color: var(--forest-soft);
  font-style: normal;
}

.story-quote > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-card {
  padding: 42px;
  border-top: 4px solid var(--terracotta);
  background: var(--cream);
}

.story-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.story-card h3 {
  margin-bottom: 19px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.55;
}

.story-card > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.story-card > a {
  display: inline-block;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--forest);
  color: var(--forest);
  font-size: 13px;
  font-weight: 700;
}

.store-section {
  padding-top: 0;
  background: var(--paper);
}

.store-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: 70px;
  padding: 67px;
  background: var(--sea);
}

.store-copy h2 {
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.35;
}

.store-copy > p:not(.eyebrow) {
  margin-bottom: 31px;
  color: #586c70;
  font-size: 14px;
  line-height: 1.9;
}

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

.product-tile {
  background: var(--paper);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-tile:hover {
  box-shadow: 0 18px 42px rgba(23, 60, 51, 0.13);
  transform: translateY(-5px);
}

.product-visual {
  position: relative;
  display: flex;
  min-height: 202px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 23px;
}

.product-visual::after {
  position: absolute;
  top: -35px;
  right: -45px;
  width: 165px;
  height: 165px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.2;
}

.product-visual-green {
  background: #b9cbb7;
  color: var(--forest);
}

.product-visual-cream {
  background: #ead8bd;
  color: #6e4c35;
}

.product-visual span {
  position: absolute;
  top: 20px;
  left: 23px;
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.product-visual strong {
  position: relative;
  z-index: 1;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 0.88;
}

.product-tile > div:last-child {
  padding: 21px 23px 25px;
}

.product-tile small {
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 700;
}

.product-tile h3 {
  margin: 5px 0 16px;
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.product-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.visit-section {
  background: var(--cream);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 80px;
  align-items: stretch;
}

.visit-info dl {
  margin: 0 0 36px;
  border-top: 1px solid var(--line);
}

.visit-info dl > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.visit-info dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.visit-info dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.visit-info dd small {
  color: var(--terracotta);
  font-size: 11px;
}

.visit-info dd a {
  color: var(--forest);
  font-size: 20px;
  font-weight: 700;
}

.map-card {
  position: relative;
  min-height: 450px;
  overflow: hidden;
  background: #dbe1d4;
}

.map-card::before,
.map-card::after {
  position: absolute;
  border: 1px solid rgba(23, 60, 51, 0.13);
  border-radius: 50%;
  content: "";
}

.map-card::before {
  top: -120px;
  right: -80px;
  width: 380px;
  height: 380px;
}

.map-card::after {
  bottom: -170px;
  left: -130px;
  width: 430px;
  height: 430px;
}

.map-street {
  position: absolute;
  z-index: 1;
  display: block;
  height: 24px;
  background: rgba(251, 250, 246, 0.85);
  border-top: 1px solid rgba(23, 60, 51, 0.12);
  border-bottom: 1px solid rgba(23, 60, 51, 0.12);
}

.street-one {
  top: 155px;
  left: -40px;
  width: 620px;
  transform: rotate(-18deg);
}

.street-two {
  top: 210px;
  left: 80px;
  width: 530px;
  transform: rotate(62deg);
}

.street-three {
  bottom: 54px;
  left: -40px;
  width: 490px;
  transform: rotate(11deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 21px;
  border-radius: 4px;
  background: var(--forest);
  color: white;
  box-shadow: 0 12px 30px rgba(23, 60, 51, 0.22);
  text-align: center;
  transform: translate(-50%, -50%);
}

.map-pin > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-top: -34px;
  margin-bottom: 8px;
  place-items: center;
  border: 3px solid #dbe1d4;
  border-radius: 50%;
  background: var(--terracotta);
  font-family: Georgia, serif;
  font-style: italic;
}

.map-pin strong {
  font-family: var(--serif);
  font-size: 15px;
}

.map-pin small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}

.map-label {
  position: absolute;
  right: 24px;
  bottom: 20px;
  z-index: 3;
  padding: 8px 11px;
  background: rgba(244, 240, 230, 0.9);
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.final-cta {
  padding: 100px 0;
  background: var(--terracotta);
  color: white;
}

.final-cta-inner {
  text-align: center;
}

.final-cta-inner > p {
  margin-bottom: 21px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.final-cta h2 {
  margin-bottom: 35px;
  font-family: var(--serif);
  font-size: clamp(39px, 5vw, 62px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.45;
}

.final-cta-inner > div {
  justify-content: center;
}

.site-footer {
  padding: 65px 0 100px;
  background: var(--forest-deep);
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: start;
}

.brand-footer .brand-mark {
  background: var(--cream);
  color: var(--forest);
}

.brand-footer .brand-copy small {
  color: rgba(255, 255, 255, 0.45);
}

.footer-grid > div:first-child > p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 9px 30px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.footer-contact p {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.footer-contact > a {
  font-family: Georgia, serif;
  font-size: 22px;
}

.footer-contact small {
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.28);
  font-family: Arial, sans-serif;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.mobile-dock {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: 0.12s;
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .site-menu {
    gap: 18px;
  }

  .site-menu a {
    font-size: 12px;
  }

  .header-contact {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(370px, 0.75fr);
    gap: 40px;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 520px;
    height: 520px;
  }

  .path-row {
    grid-template-columns: 58px minmax(210px, 0.8fr) minmax(220px, 1fr) 40px;
  }

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

  .program-inquiry {
    grid-column: 1 / -1;
  }

  .education-grid,
  .story-grid,
  .visit-grid {
    gap: 55px;
  }

  .store-panel {
    padding: 50px;
    gap: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-contact {
    grid-column: 1 / -1;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 780px) {
  .shell {
    width: min(100% - 36px, 680px);
  }

  .section {
    padding: 88px 0;
  }

  .header-inner {
    display: flex;
    min-height: 70px;
    justify-content: space-between;
  }

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

  .brand-copy strong {
    font-size: 15px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    flex-direction: column;
    gap: 7px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--forest);
    transition: transform 0.25s ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 86px 28px 90px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .site-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-menu a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 25px;
  }

  .site-menu a::after {
    display: none;
  }

  .site-menu .menu-store {
    display: block;
    margin-top: 18px;
    border-bottom: 0;
    color: var(--terracotta);
  }

  .hero {
    min-height: auto;
    padding: 118px 0 77px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.5vw, 58px);
    line-height: 1.38;
  }

  .hero-intro {
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .hero-points {
    margin-top: 42px;
  }

  .hero-points div {
    padding-right: 10px;
  }

  .hero-points div + div {
    padding-left: 10px;
  }

  .hero-points dt {
    font-size: 11px;
  }

  .hero-points dd {
    font-size: 9px;
    line-height: 1.5;
  }

  .hero-visual {
    padding: 0 18px 25px 0;
  }

  .hero-frame,
  .hero-frame img {
    min-height: 490px;
    height: 490px;
  }

  .hero-frame {
    border-radius: 170px 170px 20px 20px;
  }

  .hero-stamp {
    right: -4px;
    width: 100px;
    height: 100px;
  }

  .hero-scroll {
    display: none;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: 38px;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .path-row {
    grid-template-columns: 43px 1fr 34px;
    min-height: 137px;
    padding: 20px 10px 20px 5px;
  }

  .path-row > p {
    display: none;
  }

  .path-title h3 {
    font-size: 23px;
  }

  .program-grid,
  .education-grid,
  .story-grid,
  .store-panel,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .program-grid {
    gap: 14px;
  }

  .program-art {
    min-height: 235px;
  }

  .program-body {
    min-height: auto;
  }

  .program-inquiry {
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 29px;
  }

  .program-notice {
    text-align: left;
  }

  .education-grid {
    gap: 54px;
  }

  .education-panel {
    padding: 30px 25px;
  }

  .story-grid {
    gap: 35px;
  }

  .story-quote {
    padding: 52px 0 30px 28px;
  }

  .quote-mark {
    left: 8px;
  }

  .story-card {
    padding: 32px 27px;
  }

  .store-panel {
    width: 100%;
    padding: 56px 18px;
    gap: 46px;
  }

  .store-copy,
  .store-products {
    width: min(100% - 36px, 680px);
    margin: 0 auto;
  }

  .visit-grid {
    gap: 42px;
  }

  .map-card {
    min-height: 370px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 120px;
  }

  .mobile-dock {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    background: rgba(15, 44, 37, 0.96);
    box-shadow: 0 12px 35px rgba(11, 32, 27, 0.24);
    backdrop-filter: blur(15px);
  }

  .mobile-dock a {
    display: flex;
    min-height: 62px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: white;
    font-size: 10px;
    font-weight: 600;
  }

  .mobile-dock a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.13);
  }

  .mobile-dock span {
    color: #e0aa94;
    font-size: 15px;
  }
}

@media (max-width: 520px) {
  .shell {
    width: calc(100% - 32px);
  }

  .section {
    padding: 76px 0;
  }

  .hero h1 {
    font-size: clamp(39px, 11.8vw, 52px);
  }

  .hero-actions .button-primary {
    width: 100%;
  }

  .hero-actions .button-text {
    min-height: 42px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-points div,
  .hero-points div + div {
    padding: 0;
    border-left: 0;
  }

  .hero-points div + div {
    padding-top: 13px;
    border-top: 1px solid var(--line);
  }

  .hero-frame,
  .hero-frame img {
    min-height: 420px;
    height: 420px;
  }

  .hero-frame {
    border-radius: 130px 130px 18px 18px;
  }

  .hero-frame img {
    object-position: 58% center;
  }

  .photo-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .photo-caption p {
    font-size: 17px;
  }

  .hero-stamp {
    width: 87px;
    height: 87px;
  }

  .hero-stamp strong {
    font-size: 23px;
  }

  .store-products {
    grid-template-columns: 1fr;
  }

  .product-tile {
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
  }

  .product-visual {
    min-height: 205px;
  }

  .product-visual strong {
    font-size: 27px;
  }

  .product-tile > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .visit-info dl > div {
    grid-template-columns: 82px 1fr;
  }

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

  .final-cta {
    padding: 78px 0;
  }

  .final-cta-inner .button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}
