:root {
  --green: #173f32;
  --green-soft: #31594b;
  --paper: #f4f4f0;
  --white: #ffffff;
  --line: #dfe4df;
  --muted: #6b746f;
  --container: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--green);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  word-break: keep-all;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
.container {
  width: min(calc(100% - var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.04em;
}
.brand small {
  margin-left: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .12em;
  vertical-align: 2px;
}
.nav { display: flex; gap: clamp(20px, 2.7vw, 42px); align-items: center; }
.nav a {
  position: relative;
  padding: 27px 0 24px;
  font-size: 14px;
  font-weight: 500;
}
.nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform .25s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 22px; height: 1px; margin: 5px 0; background: var(--green); }

.page { background: var(--white); }
.hero {
  position: relative;
  min-height: min(70vw, 760px);
  overflow: hidden;
  background: #d9ddd8;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img { height: 100%; object-fit: cover; }
.hero::after { content: none; }
.hero-copy {
  position: absolute;
  z-index: 2;
  left: max(var(--gutter), calc((100% - var(--container))/2));
  bottom: clamp(38px, 7vw, 96px);
  max-width: 560px;
  color: white;
}
.eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 18px;
  font-size: clamp(32px, 3.1vw, 46px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.055em;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(24px, 1.85vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.045em;
}
h3 {
  margin-bottom: 10px;
  font-size: clamp(18px, 1.25vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.025em;
}
.lead { max-width: 760px; font-size: clamp(18px, 1.35vw, 21px); line-height: 1.65; }
.hero-dots { position: absolute; z-index: 3; right: max(var(--gutter), calc((100% - var(--container))/2)); bottom: 35px; display: flex; gap: 8px; }
.hero-dot { width: 28px; height: 2px; padding: 0; border: 0; background: rgba(255,255,255,.45); cursor: pointer; }
.hero-dot.is-active { background: white; }

.section { padding: clamp(76px, 9vw, 138px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.section-intro { display: grid; grid-template-columns: minmax(180px,.6fr) minmax(0,1.4fr); gap: clamp(40px,7vw,120px); align-items: start; }
.section-intro .copy { max-width: 820px; }
.section-intro p:last-child { margin-bottom: 0; }
.link-arrow { display: inline-flex; align-items: center; gap: 28px; margin-top: 22px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.link-arrow::after { content: "↗"; }
.image-wide { margin-top: 54px; aspect-ratio: 16/7; overflow: hidden; border-radius: 2px; }
.image-wide img { height: 100%; object-fit: cover; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.card { border-top: 1px solid var(--green); padding-top: 14px; }
.card-image { aspect-ratio: 4/5; margin-bottom: 18px; overflow: hidden; background: #e8ebe7; }
.card-image.landscape { aspect-ratio: 4/3; }
.card-image img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover img { transform: scale(1.025); }
.card p { color: var(--muted); font-size: 16px; }
.meta { font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }

.page-hero { padding: clamp(82px, 10vw, 150px) 0 64px; border-bottom: 1px solid var(--line); }
.page-hero h1 { max-width: 980px; }
.page-hero .lead { color: var(--green-soft); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,6vw,100px); align-items: start; }
.portrait-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.portrait-pair img { aspect-ratio: 3/4; object-fit: cover; }
.number-list { margin: 42px 0 36px; border-top: 1px solid rgba(23,63,50,.72); }
.number-row { display: grid; grid-template-columns: 76px minmax(180px,.55fr) 1fr; gap: 30px; padding: 38px 0; border-bottom: 1px solid rgba(23,63,50,.16); align-items: start; }
.number-row .num { font-size: 12px; font-weight: 600; }
.number-row h3 { margin: -2px 0 0; font-family: inherit; font-size: clamp(20px,1.45vw,24px); font-weight: 650; letter-spacing: -.035em; }
.number-row p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.info-box { min-height: 180px; padding: 26px; border: 1px solid var(--line); background: #fafbf9; }
.info-box p { margin: 0; color: var(--muted); font-size: 16px; }
.cta-band { padding: 54px 0; background: var(--green); color: white; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { margin: 0; font-size: clamp(22px, 1.75vw, 28px); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 22px; border: 1px solid currentColor; font-size: 13px; font-weight: 600; }
.button:hover { background: white; color: var(--green); }
.location-info h2 { margin-bottom: 24px; }
.location-description { max-width: 680px; }
.location-map-button { width: 100%; margin-top: 34px; justify-content: space-between; padding: 0 20px; }
.location-contacts { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 12px; }
.location-contact { display: flex; min-height: 132px; padding: 19px 20px 17px; border: 1px solid var(--line); flex-direction: column; transition: border-color .2s ease, background-color .2s ease; }
.location-contact:hover { border-color: var(--green); background: rgba(20,72,52,.035); }
.location-contact-label { margin-bottom: 15px; color: var(--green-soft); font-size: 12px; font-weight: 600; }
.location-contact strong { color: var(--green); font-size: clamp(18px,1.45vw,23px); line-height: 1.2; letter-spacing: -.035em; }
.location-contact-action { margin-top: auto; color: var(--green-soft); font-size: 11px; }
.location-contact-note { margin: 12px 0 0; color: var(--green-soft); font-size: 12px; }

.faq { border-top: 1px solid var(--green); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: grid; grid-template-columns: 46px 1fr 24px; gap: 12px; padding: 25px 0; border: 0; background: transparent; text-align: left; cursor: pointer; font-weight: 600; }
.faq-question .icon { font-size: 20px; font-weight: 300; transition: transform .2s; }
.faq-question[aria-expanded="true"] .icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 36px 26px 58px; color: var(--muted); font-size: 16px; }
.faq-answer.is-open { display: block; }

.gallery-grid {
  columns: 3;
  column-gap: 18px;
}
.gallery-item {
  display: block;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #e8ebe7;
  cursor: zoom-in;
  break-inside: avoid;
}
.gallery-item img {
  height: auto;
  transition: transform .5s ease, opacity .3s ease;
}
.gallery-item:hover img { transform: scale(1.015); opacity: .94; }
.gallery-note {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
  padding-top: 18px;
  border-top: 1px solid var(--green);
  color: var(--muted);
  font-size: 14px;
}
.lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 64px);
  background: rgba(7, 20, 15, .94);
}
.lightbox.is-open { display: flex; }
.lightbox img { width: auto; max-width: 100%; max-height: 88vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: transparent;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.site-footer { background: white; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: 1.2fr .7fr 1fr 1.2fr; gap: 40px; padding: 70px 0 56px; }
.footer-brand { font-size: 25px; font-weight: 700; letter-spacing: -.05em; }
.footer-main h3 { margin-bottom: 18px; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.footer-main p, .footer-main a { font-size: 13px; color: var(--green-soft); }
.footer-links { display: grid; gap: 7px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 18px 0 28px; border-top: 1px solid var(--line); font-size: 11px; color: var(--muted); }

@media (max-width: 900px) {
  .site-header { height: 66px; }
  .menu-toggle { display: block; }
  .nav { position: fixed; top: 66px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 20px var(--gutter) 32px; border-bottom: 1px solid var(--line); background: white; }
  .nav.is-open { display: flex; }
  .nav a { padding: 18px 0; font-size: 19px; font-weight: 600; line-height: 1.45; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .hero { min-height: 72vh; }
  .section-intro, .split { grid-template-columns: 1fr; gap: 24px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2; }
}

@media (max-width: 620px) {
  body { font-size: 16px; line-height: 1.7; }
  .brand small { display: none; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  .lead { font-size: 17px; }
  .section { padding: 64px 0; }
  .page-hero { padding: 60px 0 42px; }
  .location-map-button { margin-top: 26px; }
  .location-contacts { grid-template-columns: 1fr; }
  .location-contact { min-height: 116px; }
  .cards, .info-grid, .portrait-pair { grid-template-columns: 1fr; }
  .number-list { margin: 30px 0 28px; }
  .number-row { grid-template-columns: 32px 1fr; gap: 10px 14px; padding: 28px 0; }
  .number-row h3 { font-size: 20px; }
  .number-row p { grid-column: 2; font-size: 15px; line-height: 1.75; }
  .image-wide { aspect-ratio: 4/3; }
  .footer-main { grid-template-columns: 1fr; padding: 54px 0 38px; }
  .footer-bottom, .cta-band .container { align-items: flex-start; flex-direction: column; }
  .gallery-grid { columns: 1; }
  .gallery-note { flex-direction: column; gap: 6px; }
}


/* 2026-07 RE:LIM structure refinement */
.brand-logo{display:flex;align-items:center;width:132px;flex:0 0 auto}
.brand-logo img{width:100%;height:auto}
.header-book{display:inline-flex;align-items:center;justify-content:center;min-height:38px;padding:0 17px;border:1px solid var(--green);font-size:12px;font-weight:600;white-space:nowrap}
.header-book:hover{background:var(--green);color:#fff}
.page-hero{padding:clamp(72px,7vw,108px) 0 52px}
.page-hero h1{margin-bottom:14px;font-size:clamp(30px,2.4vw,38px);letter-spacing:-.045em}
.page-hero .lead{font-size:18px}
.hero-pairs{min-height:min(58vw,680px)}
.hero-pair{display:grid;grid-template-columns:1fr 1fr;width:100%;height:100%;gap:2px}
.hero-pair img{width:100%;height:100%;object-fit:cover}
.hero-pairs .hero-copy{max-width:500px}
.hero-pairs .hero-copy h1{font-size:clamp(36px,3vw,48px)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:40px;padding-bottom:18px;border-bottom:1px solid var(--green)}
.section-head h2,.section-head p{margin:0}
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
.product-card{min-height:330px;padding:34px;border:1px solid var(--line);background:#fafbf9;display:flex;flex-direction:column}
.product-card .product-index{display:block;margin-bottom:42px;font-size:12px;font-weight:600}
.product-card .meta{margin-bottom:4px;color:var(--muted)}
.product-card h3{font-size:clamp(26px,2vw,32px)}
.product-card>p{max-width:540px;color:var(--muted)}
.product-card .link-arrow{margin-top:auto;align-self:flex-start}
.flow-list{display:grid;grid-template-columns:repeat(5,1fr);margin:0;padding:0;list-style:none;border-top:1px solid var(--green)}
.flow-list li{position:relative;min-height:260px;padding:28px 24px 24px 0;border-bottom:1px solid var(--line)}
.flow-list li:not(:last-child)::after{content:"";position:absolute;top:43px;right:18px;width:32px;height:1px;background:var(--green)}
.flow-list li:not(:last-child)::before{content:"";position:absolute;top:39px;right:18px;width:8px;height:8px;border-top:1px solid var(--green);border-right:1px solid var(--green);transform:rotate(45deg)}
.flow-list>li>span{display:block;margin-bottom:74px;font-size:12px;font-weight:600}
.flow-list h3{margin-bottom:10px}
.flow-list p{margin:0;padding-right:16px;color:var(--muted);font-size:15px}
.footer-logo{width:150px;height:auto;margin-bottom:22px}
.footer-identity p{max-width:320px}
.page-feature{height:clamp(300px,38vw,560px);margin-top:clamp(28px,4vw,56px);overflow:hidden}
.page-feature img{width:100%;height:100%;object-fit:cover}
.page-feature-short{height:clamp(240px,28vw,420px)}
.visual-product{min-height:0;padding:0;border:0;background:transparent;overflow:visible}
.product-image{height:300px;overflow:hidden}
.product-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.visual-product:hover .product-image img{transform:scale(1.025)}
.product-content{display:flex;flex-direction:column;align-items:flex-start;padding:26px 0 0}
.visual-product .product-index{margin-bottom:30px;color:var(--muted)}
.product-message{margin:0 0 9px;font-size:14px!important;font-weight:500;line-height:1.55!important;color:var(--green-soft)!important}
.visual-product h3{margin:0 0 8px;font-size:clamp(30px,2.7vw,42px);line-height:1.2}
.product-time{margin:0 0 22px;font-size:14px!important;font-weight:600;letter-spacing:.03em;color:var(--green)!important}
.product-price{display:flex;align-items:baseline;gap:10px;margin:0 0 16px}
.product-price strong{font-size:clamp(25px,2.3vw,36px);letter-spacing:-.05em}
.product-price span{font-size:12px;color:var(--muted)}
.visual-product .product-content>p{font-size:15px;line-height:1.75}
.product-points{display:flex;flex-wrap:wrap;gap:8px;margin:2px 0 28px;padding:0;list-style:none}
.product-points li{position:relative;padding:0 0 0 12px;border:0;font-size:12px;color:var(--green-soft)}
.product-points li::before{content:"";position:absolute;left:0;top:.72em;width:4px;height:1px;background:currentColor}
.product-link{margin-top:auto}
.info-box{padding:24px 0;border:0;border-top:1px solid var(--green);background:transparent}
.quick-guide-head{display:grid;grid-template-columns:minmax(160px,.48fr) minmax(0,1.52fr);gap:clamp(36px,6vw,96px);margin-bottom:48px;align-items:start}
.quick-guide-head h2{margin-bottom:10px;font-size:clamp(24px,1.85vw,30px)}
.quick-guide-head>div>p{margin:0;color:var(--muted);font-size:15px}
.experience-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(22px,3vw,44px)}
.experience-card{min-width:0}
.experience-image{aspect-ratio:16/10;overflow:hidden;background:#e8ebe7}
.experience-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.experience-card:hover .experience-image img{transform:scale(1.025)}
.experience-copy{padding-top:28px;border-top:1px solid rgba(23,63,50,.7)}
.experience-image+.experience-copy{margin-top:22px}
.experience-message{margin-bottom:8px;color:var(--green-soft);font-size:13px;font-weight:500}
.experience-copy h3{margin-bottom:7px;font-family:inherit;font-size:clamp(26px,2.05vw,34px);font-weight:650;line-height:1.22;letter-spacing:-.04em}
.experience-time{margin-bottom:18px;color:var(--green);font-size:13px;font-weight:600;letter-spacing:.04em}
.experience-copy>p:not(.experience-message):not(.experience-time){max-width:580px;margin-bottom:0;color:var(--muted);font-size:15px;line-height:1.75}
.experience-copy .link-arrow{margin-top:20px}
@media(max-width:1100px){.nav{gap:18px}.nav a{font-size:13px}.brand-logo{width:116px}.header-book{padding:0 12px}.flow-list{grid-template-columns:repeat(3,1fr)}}
@media(max-width:900px){.header-book{display:none}.brand-logo{width:122px}.hero-pair{grid-template-columns:1fr}.hero-pair img:nth-child(2){display:none}.hero-pairs{min-height:68vh}.product-grid{grid-template-columns:1fr}.quick-guide-head{grid-template-columns:1fr;gap:12px;margin-bottom:34px}.flow-list{grid-template-columns:1fr}.flow-list li{min-height:0;padding:24px 0 24px 58px}.flow-list>li>span{position:absolute;left:0;top:27px;margin:0}.flow-list li:not(:last-child)::after{top:auto;right:auto;bottom:-13px;left:15px;width:1px;height:26px}.flow-list li:not(:last-child)::before{display:none}}
@media(max-width:620px){.brand-logo{width:112px}.hero-pairs{min-height:58vh}.page-hero h1{font-size:28px}.page-hero .lead{font-size:16px}.product-card:not(.visual-product){min-height:280px;padding:26px}.product-image{height:220px}.product-content{padding:22px 0 0}.product-points{display:grid;width:100%}.experience-grid{grid-template-columns:1fr;gap:48px}.experience-image{aspect-ratio:4/3}.experience-copy{padding-top:22px}.experience-copy h3{font-size:27px}.experience-copy>p:not(.experience-message):not(.experience-time){font-size:14px}.footer-logo{width:132px}}

/* Interactive facility map */
.map-section{padding-top:24px}
.map-section-head{align-items:end}
.map-section-head>div{min-width:240px}
.map-section-head>p{max-width:520px;color:var(--muted);font-size:15px;line-height:1.75}
.map-section{padding-top:clamp(42px,5vw,72px)}
.site-map{padding-top:clamp(42px,5vw,72px)}
.site-map-canvas{position:relative;width:100%;overflow:visible;background:#fff}
.site-map-canvas>img{display:block;width:100%;height:auto}
.site-map-hotspots{position:absolute;inset:0}
.site-hotspot{position:absolute;left:var(--x);top:var(--y);width:44px;height:44px;padding:0;border:0;border-radius:50%;background:transparent;transform:translate(-50%,-50%);cursor:pointer}
.site-hotspot::before{content:"";position:absolute;inset:2px;border:2px solid transparent;border-radius:50%;background:rgba(255,255,255,0);transition:transform .2s ease,border-color .2s ease,background-color .2s ease,box-shadow .2s ease}
.site-hotspot span{position:absolute;left:50%;top:calc(100% + 7px);min-width:58px;padding:7px 10px;border-radius:2px;background:var(--green);color:#fff;font-size:11px;font-weight:650;letter-spacing:.08em;line-height:1;opacity:0;pointer-events:none;transform:translate(-50%,-4px);transition:opacity .18s ease,transform .18s ease;z-index:2}
.site-hotspot:hover::before,.site-hotspot:focus-visible::before,.site-hotspot.is-active::before{border-color:#fff;background:rgba(23,63,50,.28);box-shadow:0 0 0 4px var(--green);transform:scale(1.12)}
.site-hotspot:hover span,.site-hotspot:focus-visible span,.site-hotspot.is-active span{opacity:1;transform:translate(-50%,0)}
.site-hotspot:focus-visible{outline:none}
.site-map-panel{display:grid;grid-template-columns:150px 150px minmax(0,1fr);gap:32px;align-items:start;margin-top:clamp(34px,4vw,62px);padding:32px 0;border-top:1px solid var(--green);border-bottom:1px solid var(--line)}
.site-map-kicker{margin:6px 0 0;color:var(--muted);font-size:11px;font-weight:650;letter-spacing:.12em;text-transform:uppercase}
.site-map-number{font-size:clamp(46px,5vw,72px);font-weight:500;line-height:.9;letter-spacing:-.06em;color:var(--green)}
.site-map-panel h3{margin:0 0 8px;font-size:22px}
.site-map-panel>div>p{max-width:620px;margin:0;color:var(--muted);font-size:15px;line-height:1.75}
.site-number-picker{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:22px 0;border-bottom:1px solid var(--line)}
.site-number-picker p{margin:0;color:var(--muted);font-size:11px;font-weight:650;letter-spacing:.12em;text-transform:uppercase}
.site-number-picker>div{display:flex;gap:8px}
.site-number-picker button{padding:9px 14px;border:1px solid var(--line);background:#fff;color:var(--green);font:inherit;font-size:12px;cursor:pointer;transition:background-color .2s,color .2s,border-color .2s}
.site-number-picker button:hover,.site-number-picker button.is-active{border-color:var(--green);background:var(--green);color:#fff}
.map-facilities{margin-top:70px}
@media(max-width:900px){
  .site-map-canvas{overflow-x:auto;overscroll-behavior-inline:contain}
  .site-map-canvas>img,.site-map-hotspots{width:980px;max-width:none}
  .site-map-hotspots{right:auto}
  .site-map-panel{grid-template-columns:100px 100px minmax(0,1fr);gap:20px}
}
@media(max-width:620px){
  .map-section-head{align-items:start}
  .map-section-head>p br{display:none}
  .site-map-canvas>img,.site-map-hotspots{width:820px}
  .site-hotspot{width:40px;height:40px}
  .site-map{padding-top:30px}
  .site-map-panel{grid-template-columns:76px 1fr;gap:14px 18px;margin-top:30px;padding:24px 0}
  .site-map-kicker{grid-column:1/-1}
  .site-map-number{font-size:48px}
  .site-map-panel>div>p{font-size:14px}
  .site-number-picker{align-items:flex-start;flex-direction:column;gap:12px}
  .site-number-picker>div{width:100%}
  .site-number-picker button{flex:1;padding:11px 6px}
  .map-facilities{margin-top:50px}
}

/* 2026-07 mobile layout refinement */
@media(max-width:900px){
  :root{--gutter:clamp(18px,5vw,28px)}
  .nav{
    max-height:calc(100dvh - 66px);
    padding:8px var(--gutter) 14px;
    overflow-y:auto;
  }
  .nav a{
    padding:13px 0 12px;
    font-size:17px;
    line-height:1.35;
  }
  .section{padding:56px 0}
  .section-intro,.split{gap:20px}
  .section-head{align-items:flex-start;flex-direction:column;gap:8px;margin-bottom:28px;padding-bottom:14px}
  .cards{margin-top:34px}
  .cta-band{padding:42px 0}
  .footer-main{gap:34px 24px;padding:52px 0 40px}
}

@media(max-width:620px){
  body{font-size:15px;line-height:1.68}
  .site-header{height:64px}
  .header-inner{height:64px}
  .brand-logo{width:118px}
  .menu-toggle{margin-right:-8px}
  .menu-toggle span{width:24px;margin:6px 0}
  .nav{top:64px}
  .nav a{padding:11px 0;font-size:16px}

  h1{font-size:30px}
  h2{margin-bottom:16px;font-size:23px}
  h3{font-size:18px}
  p{margin-bottom:14px}
  .eyebrow{margin-bottom:9px}
  .lead{font-size:16px}
  .page-hero{padding:38px 0 28px}
  .page-hero h1{margin-bottom:10px;font-size:29px}
  .page-hero .lead{margin-bottom:0;font-size:15px;line-height:1.6}
  .section{padding:44px 0}
  .section-intro,.split{gap:16px}
  .section-head{margin-bottom:24px}
  .image-wide{margin-top:30px}

  .cards{gap:34px;margin-top:28px}
  .card{padding-top:11px}
  .card-image{margin-bottom:14px}
  .card p{font-size:14px}
  .info-grid{gap:22px}
  .info-box{min-height:0;padding:18px 0}

  .number-list{margin:24px 0 20px}
  .number-row{gap:7px 12px;padding:21px 0}
  .number-row h3{font-size:18px}
  .number-row p{font-size:14px;line-height:1.7}

  .product-grid{gap:36px}
  .product-image{height:auto;aspect-ratio:4/3}
  .product-content{padding-top:18px}
  .visual-product .product-index{margin-bottom:18px}
  .visual-product h3{font-size:28px}
  .product-time{margin-bottom:14px}
  .product-points{margin-bottom:20px}
  .reservation-note{margin-top:30px}

  .quick-guide-head{margin-bottom:26px}
  .experience-grid{gap:38px}
  .experience-image+.experience-copy{margin-top:16px}
  .experience-copy{padding-top:18px}

  .flow-list li{padding:19px 0 19px 46px}
  .flow-list>li>span{top:21px}
  .flow-list li:not(:last-child)::after{left:14px}
  .flow-list p{padding-right:0;font-size:14px}

  .map-section{padding-top:34px}
  .site-map{padding-top:22px}
  .site-map-canvas{margin-inline:calc(var(--gutter) * -1);width:calc(100% + var(--gutter) * 2)}
  .site-map-canvas>img,.site-map-hotspots{width:720px}
  .site-map-panel{margin-top:24px;padding:20px 0}
  .site-number-picker{padding:18px 0}
  .map-facilities{margin-top:38px}

  .location-overview .split{gap:28px}
  .location-info h2{margin-bottom:16px}
  .location-map-button{margin-top:22px}
  .location-contact{min-height:104px;padding:16px}

  .gallery-grid{gap:12px}
  .gallery-note{margin-top:24px}
  .cta-band{padding:34px 0}
  .cta-band .container{gap:22px}
  .cta-band h2{font-size:21px;line-height:1.35}

  .footer-main{grid-template-columns:repeat(2,minmax(0,1fr));gap:30px 20px;padding:40px 0 30px}
  .footer-identity{grid-column:1/-1}
  .footer-main>div:last-child{grid-column:1/-1}
  .footer-logo{width:122px;margin-bottom:16px}
  .footer-identity p{max-width:280px;margin-bottom:0}
  .footer-main h3{margin-bottom:11px}
  .footer-links{gap:5px}
  .footer-bottom{gap:7px;padding:15px 0 20px}
}
