/* =========================================================
   안개숲 스테이 — 스타일시트
   팔레트·서체는 실제 촬영 사진의 톤에서 추출한 값입니다.
   ========================================================= */

/* ── 서체 ─────────────────────────────────── */
@import url("https://hangeul.pstatic.net/hangeul_static/css/maru-buri.css");
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable-dynamic-subset.min.css");

/* ── 토큰 ─────────────────────────────────── */
:root {
  --ivory: #f3eee5;      /* 바탕 — 객실 회벽 */
  --linen: #e8e1d2;      /* 보조 바탕 — 침구 */
  --sage: #7e8f76;       /* 포인트 — 지붕·담요 */
  --sage-deep: #5f7059;
  --forest: #38402f;     /* 짙은 면 — 숲 그늘 */
  --forest-deep: #2b3224;
  --oak: #a97b50;        /* 온기 악센트 — 목재 외장 */
  --oak-deep: #8f653f;
  --stone: #918878;      /* 중간톤 — 스파 석재 */
  --ink: #33392b;        /* 본문 텍스트 */
  --ink-soft: #5d6152;   /* 보조 텍스트 */
  --line: rgba(56, 64, 47, 0.16);

  --font-display: "MaruBuri", "Noto Serif KR", serif;
  --font-body: "Pretendard Variable", Pretendard, -apple-system, "Malgun Gothic", sans-serif;

  --wrap: 1200px;
  --pad: clamp(20px, 5vw, 56px);
  --head-h: 72px;
}

/* ── 리셋 ─────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--ivory);
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

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

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

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

ul, ol { list-style: none; }

:focus-visible {
  outline: 2px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--sage); color: #fff; }

/* ── 공통 레이아웃 ─────────────────────────── */
.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.font-serif { font-family: var(--font-display); }

/* 시간 라벨 — 이 사이트의 구조 장치 */
.time-tag {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--sage-deep);
  margin-bottom: 22px;
}
.time-tag::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--sage);
  flex: none;
}
.time-tag b {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* 버튼 */
.btn {
  display: inline-block;
  padding: 15px 34px;
  font-size: 15px;
  letter-spacing: 0.04em;
  background: var(--oak);
  color: #fff;
  transition: background 0.25s;
}
.btn:hover { background: var(--oak-deep); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}
.btn--ghost:hover { background: rgba(56, 64, 47, 0.07); }

.btn--light {
  background: transparent;
  color: #f3eee5;
  box-shadow: inset 0 0 0 1px rgba(243, 238, 229, 0.6);
}
.btn--light:hover { background: rgba(243, 238, 229, 0.12); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--oak-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  transition: gap 0.25s;
}
.text-link:hover { gap: 14px; }

/* ── 헤더 ─────────────────────────────────── */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--head-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-head.is-solid {
  background: rgba(243, 238, 229, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}

.head-in {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand svg { width: 30px; height: 22px; }
.brand svg path { stroke: currentColor; }

.gnb {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-size: 15px;
}
.gnb > a { padding: 6px 2px; position: relative; }
.gnb > a:not(.gnb-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.gnb > a:not(.gnb-cta):hover::after,
.gnb > a.is-active::after { transform: scaleX(1); }

.gnb-cta {
  padding: 10px 22px;
  background: var(--oak);
  color: #fff;
  transition: background 0.25s;
}
.gnb-cta:hover { background: var(--oak-deep); }

.nav-toggle { display: none; }

/* 어두운 배경(히어로) 위의 헤더 */
.site-head.on-hero:not(.is-solid) { color: #f3eee5; }
.site-head.on-hero:not(.is-solid) .gnb-cta {
  background: rgba(243, 238, 229, 0.16);
  box-shadow: inset 0 0 0 1px rgba(243, 238, 229, 0.5);
}

/* ── 히어로 ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #f6f2ea;
  isolation: isolate;
  overflow: hidden;
}
.hero-media,
.hero-media video,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    to top,
    rgba(30, 36, 24, 0.72) 0%,
    rgba(30, 36, 24, 0.18) 45%,
    rgba(30, 36, 24, 0.28) 100%
  );
}

.hero-body {
  width: 100%;
  padding-block: 96px clamp(72px, 12vh, 130px);
}
.hero-body h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 62px);
  font-weight: 700;
  line-height: 1.32;
  margin-bottom: 20px;
  max-width: 15em;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.8;
  max-width: 34em;
  color: rgba(246, 242, 234, 0.88);
  margin-bottom: 38px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero .time-tag { color: rgba(246, 242, 234, 0.75); }
.hero .time-tag::before { background: rgba(246, 242, 234, 0.55); }

.hero-scroll {
  position: absolute;
  right: var(--pad);
  bottom: 34px;
  font-size: 12px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
  color: rgba(246, 242, 234, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 46px;
  background: rgba(246, 242, 234, 0.55);
  animation: scrollHint 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); }
  55% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

/* ── 인트로 스트립 ─────────────────────────── */
.intro {
  padding-block: clamp(80px, 12vw, 140px) clamp(60px, 9vw, 110px);
}
.intro-lede {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.7;
  max-width: 24em;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.intro-facts {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
}
.intro-facts li {
  flex: 1 1 200px;
  padding: 26px 28px 4px 0;
  border-top: 1px solid transparent;
}
.intro-facts li + li { padding-left: 28px; border-left: 1px solid var(--line); }
.intro-facts b {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 6px;
}
.intro-facts span { font-size: 14px; color: var(--ink-soft); }

/* ── 비대칭 분할 섹션 ──────────────────────── */
.split {
  display: grid;
  grid-template-columns: minmax(0, 6.5fr) minmax(0, 5.5fr);
  align-items: stretch;
}
.split-media { min-height: clamp(340px, 62vh, 640px); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

.split-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 110px) var(--pad);
}
.split-body > * { max-width: 30em; }
.split-body h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.9vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 20px;
}
.split-body p { color: var(--ink-soft); margin-bottom: 30px; }

/* 짝수 섹션은 이미지 우측 */
.split--flip .split-media { order: 2; }
.split--flip .split-body { order: 1; align-items: flex-end; text-align: right; }
.split--flip .split-body .time-tag { flex-direction: row-reverse; }

/* 배경 변주 */
.split--linen { background: var(--linen); }

/* ── 저녁(다크) 섹션 ───────────────────────── */
.dusk {
  background: var(--forest);
  color: #ece7da;
}
.dusk .split-body h2 { color: #f3eee5; }
.dusk .split-body p { color: rgba(236, 231, 218, 0.72); }
.dusk .time-tag { color: #a9b8a0; }
.dusk .time-tag::before { background: #a9b8a0; }
.dusk .text-link { color: #cbb48f; }

.dusk-extra {
  border-top: 1px solid rgba(236, 231, 218, 0.14);
  padding-block: clamp(48px, 6vw, 72px);
}
.dusk-extra .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.dusk-extra h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  color: #f3eee5;
}
.dusk-extra p { color: rgba(236, 231, 218, 0.72); font-size: 15px; }

/* ── 클로징 ───────────────────────────────── */
.closing {
  text-align: center;
  padding-block: clamp(96px, 14vw, 170px);
}
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.6;
  max-width: 20em;
  margin: 0 auto 36px;
}

/* ── 서브페이지 공통 ───────────────────────── */
.page-head {
  padding-top: calc(var(--head-h) + clamp(56px, 9vw, 110px));
  padding-bottom: clamp(40px, 6vw, 80px);
}
.page-head h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}
.page-head .lede { color: var(--ink-soft); max-width: 36em; }

.section-gap { padding-block: clamp(40px, 6vw, 80px); }

/* ── 객실 페이지 ──────────────────────────── */
.room { border-top: 1px solid var(--line); }
.room .split-media { min-height: clamp(300px, 55vh, 560px); }

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}
.room-meta li { display: flex; align-items: center; gap: 8px; }
.room-meta li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  max-width: 30em;
}
.amenities li {
  font-size: 13px;
  padding: 6px 14px;
  color: var(--ink-soft);
  box-shadow: inset 0 0 0 1px var(--line);
}
.split--flip .amenities { justify-content: flex-end; }
.split--flip .room-meta { justify-content: flex-end; }

.price-table {
  width: 100%;
  max-width: 30em;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 26px;
}
.price-table caption {
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--sage-deep);
  padding-bottom: 10px;
}
.split--flip .price-table caption { text-align: right; }
.price-table th,
.price-table td {
  padding: 11px 4px;
  border-top: 1px solid var(--line);
  text-align: left;
}
.price-table td {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}
.price-table th { font-weight: 400; color: var(--ink-soft); }
.price-table tr:last-child th,
.price-table tr:last-child td { border-bottom: 1px solid var(--line); }

.rooms-note {
  padding-block: clamp(48px, 7vw, 80px);
  background: var(--linen);
}
.rooms-note .wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px 48px;
}
.rooms-note h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
.rooms-note p, .rooms-note li { font-size: 14px; color: var(--ink-soft); }

/* ── 부대시설 페이지 ───────────────────────── */
.facility { border-top: 1px solid var(--line); }

.facility-info {
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  max-width: 30em;
  width: 100%;
}
.facility-info div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 2px;
  border-bottom: 1px solid var(--line);
}
.facility-info dt { color: var(--ink-soft); }
.facility-info dd { font-weight: 600; color: var(--ink); text-align: right; }

/* ── 오시는 길 ────────────────────────────── */
.map-embed {
  background: var(--linen);
  min-height: clamp(300px, 48vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; min-height: inherit; }

.addr-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 22px;
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.addr-line strong {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
}
.addr-line span { font-size: 14px; color: var(--ink-soft); }
.addr-line .text-link { margin-left: auto; font-size: 14px; }

.way-list { display: grid; gap: clamp(32px, 5vw, 48px); max-width: 760px; }
.way-list h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.way-list h3::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--sage);
}
.way-list p, .way-list li { font-size: 15px; color: var(--ink-soft); }
.way-list li { padding-left: 14px; position: relative; }
.way-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sage);
}

/* ── 예약/문의 페이지 ──────────────────────── */
.reserve-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
  padding-bottom: clamp(72px, 10vw, 130px);
}

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-field label b { color: var(--oak-deep); font-weight: 600; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--sage-deep);
}
.form-field textarea { min-height: 130px; resize: vertical; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-agree {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-soft);
  margin: 28px 0;
}
.form-agree input { margin-top: 4px; accent-color: var(--sage-deep); }

.form-status {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 14px;
  display: none;
}
.form-status.is-ok { display: block; background: rgba(126, 143, 118, 0.14); color: var(--sage-deep); }
.form-status.is-error { display: block; background: rgba(169, 123, 80, 0.13); color: var(--oak-deep); }

.contact-rail {
  background: var(--linen);
  padding: clamp(28px, 4vw, 40px);
  display: grid;
  gap: 26px;
}
.contact-rail h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
}
.contact-rail .btn { text-align: center; }
.btn--kakao { background: var(--forest); }
.btn--kakao:hover { background: var(--forest-deep); }

.rail-info { font-size: 14px; color: var(--ink-soft); display: grid; gap: 6px; }
.rail-info b { color: var(--ink); font-weight: 600; }
.rail-info + .rail-info,
.contact-rail hr {
  border: 0;
  border-top: 1px solid rgba(56, 64, 47, 0.14);
  padding-top: 0;
}

/* ── 푸터 ─────────────────────────────────── */
.site-foot {
  background: var(--forest-deep);
  color: rgba(236, 231, 218, 0.66);
  font-size: 13px;
  line-height: 2;
  padding-block: clamp(56px, 8vw, 88px) 110px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  margin-bottom: 44px;
}
.foot-brand {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: #f3eee5;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.foot-brand svg { width: 30px; height: 22px; }
.site-foot h3 {
  font-size: 12px;
  letter-spacing: 0.18em;
  color: rgba(236, 231, 218, 0.45);
  margin-bottom: 12px;
  font-weight: 600;
}
.site-foot a:hover { color: #f3eee5; }
.foot-sns { display: flex; gap: 18px; margin-top: 10px; }
.foot-legal {
  border-top: 1px solid rgba(236, 231, 218, 0.12);
  padding-top: 24px;
  font-size: 12px;
  color: rgba(236, 231, 218, 0.45);
}

/* ── 모바일 퀵바 ──────────────────────────── */
.quickbar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 100;
  display: none;
  grid-template-columns: 1fr 1fr 1.4fr;
  background: rgba(243, 238, 229, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.quickbar a {
  padding: 15px 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.quickbar a + a { border-left: 1px solid var(--line); }
.quickbar-cta { background: var(--oak); color: #fff; }

/* ── 데모 배지 ────────────────────────────── */
.demo-badge {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 90;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  background: rgba(243, 238, 229, 0.92);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 6px 12px;
  pointer-events: none;
}
@media (max-width: 768px) {
  .demo-badge { bottom: 62px; } /* 모바일 퀵바 위로 */
}

/* ── 스크롤 리빌 ──────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll::after { animation: none; }
}

/* =========================================================
   반응형
   ========================================================= */
@media (max-width: 900px) {
  .split,
  .split--flip .split-media,
  .split--flip .split-body { display: block; order: initial; }
  .split-media,
  .room .split-media { min-height: 0; aspect-ratio: 4 / 3; }
  .split--flip .split-body { text-align: left; align-items: flex-start; }
  .split--flip .split-body .time-tag { flex-direction: row; }
  .split--flip .amenities,
  .split--flip .room-meta { justify-content: flex-start; }
  .split--flip .price-table caption { text-align: left; }
  .split-body { padding-block: 44px 60px; }

  .dusk-extra .wrap { grid-template-columns: 1fr; gap: 12px; }
  .reserve-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --head-h: 60px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
  }
  .nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.25s, opacity 0.2s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .gnb {
    position: fixed;
    inset: var(--head-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--pad) 24px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    color: var(--ink);
  }
  .gnb.is-open { transform: none; opacity: 1; visibility: visible; }
  .gnb > a { padding: 14px 2px; font-size: 16px; border-bottom: 1px solid var(--line); }
  .gnb > a:not(.gnb-cta)::after { content: none; }
  .gnb-cta { margin-top: 16px; text-align: center; background: var(--oak) !important; box-shadow: none !important; }

  .site-head.is-open { background: var(--ivory); color: var(--ink); box-shadow: 0 1px 0 var(--line); }

  .quickbar { display: grid; }
  body { padding-bottom: 54px; }
  .site-foot { padding-bottom: 60px; }

  .hero-scroll { display: none; }
  .hero-body { padding-bottom: 88px; }

  .intro-facts li { flex-basis: 100%; padding: 18px 0 14px; border-top: 1px solid var(--line); }
  .intro-facts li:first-child { border-top: 0; }
  .intro-facts li + li { padding-left: 0; border-left: 0; }

  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
}
