/* ===========================================================
   HARUKAMONE NICE SHOP FOR TENNIS — LP styles (Cocoon child)
   全セレクタを .hkm 配下にスコープして Cocoon 本体と衝突を回避
   =========================================================== */

.hkm {
  --green: #1e4936;
  --green-deep: #163528;
  --green-ink: #11281d;
  --lav: #b3afe0;
  --lav-soft: #c8c5ea;
  --lav-deep: #8f8acb;
  --ivory: #f3e7dd;
  --ivory-2: #f7eee6;
  --cream: #f4ede1;
  --line: rgba(30, 73, 54, 0.14);

  --maxw: 1240px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 28px;
  --radius-lg: 40px;

  --font-disp: "Anton", "Zen Maru Gothic", sans-serif;
  --font-round: "Zen Maru Gothic", sans-serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;

  --shadow: 0 18px 40px -24px rgba(17, 40, 29, 0.45);

  width: 100%;
  font-family: var(--font-body);
  color: var(--green-ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.hkm *,
.hkm *::before,
.hkm *::after {
  box-sizing: border-box;
}

.hkm img {
  max-width: 100%;
  display: block;
  height: auto;
}

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

.hkm p {
  margin: 0;
}

/* ---------- Cocoon 既定レイアウトの打ち消し（トップページ = body.home のみ） ---------- */
body.home {
  background: #f3e7dd;
}

/* .hkm を親コンテナ幅に関係なく全幅(フルブリード)で表示 */
body.home .hkm {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

body.home #container,
body.home #content,
body.home #main,
body.home .main,
body.home #main-in,
body.home .content-in,
body.home .content,
body.home .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* 既定ヘッダー / ナビ / フッター / サイドバー / パンくず / タイトル を非表示 */
body.home #header-container,
body.home #header,
body.home .navi,
body.home #navi,
body.home #navi-top,
body.home #sidebar,
body.home .sidebar,
body.home .breadcrumb,
body.home .breadcrumbs,
body.home #breadcrumb,
body.home .entry-title,
body.home .date-tags,
body.home #footer,
body.home .footer,
body.home .footer-in,
body.home .pankuzu {
  display: none !important;
}

/* JSが無効/未実行でも各セクションを必ず表示 */
body.home .hkm .reveal {
  opacity: 1 !important;
  transform: none !important;
}

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

.hkm-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--pad);
}

/* ---------- type helpers ---------- */
.hkm .eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lav-deep);
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hkm .eyebrow::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.hkm .section-head {
  max-width: 760px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.hkm .section-head h2 {
  font-family: var(--font-disp);
  font-weight: 400;
  line-height: 0.98;
  font-size: clamp(2.3rem, 6.5vw, 4.2rem);
  letter-spacing: 0.01em;
  margin: 0;
  color: var(--green);
  text-transform: uppercase;
}

.hkm .section-head .jp {
  display: block;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  letter-spacing: 0.02em;
  color: var(--green-ink);
  margin-top: 10px;
  text-transform: none;
}

.hkm .section-head p {
  margin: 18px 0 0;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  max-width: 60ch;
  color: #2c4a3b;
}

.hkm .section {
  padding-block: clamp(64px, 9vw, 130px);
}

/* ---------- tennis ball ---------- */
.hkm .ball {
  display: inline-block;
  line-height: 0;
}

.hkm .ball svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ---------- buttons ---------- */
.hkm .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}

.hkm .btn:active {
  transform: translateY(1px);
}

.hkm .btn-primary {
  background: var(--green);
  color: var(--cream);
}

.hkm .btn-primary:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hkm .btn-lav {
  background: var(--lav);
  color: var(--green-ink);
}

.hkm .btn-lav:hover {
  background: var(--lav-soft);
  color: var(--green-ink);
  transform: translateY(-2px);
}

.hkm .btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: rgba(30, 73, 54, 0.32);
}

.hkm .btn-ghost:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
}

.hkm .btn-cream {
  background: var(--cream);
  color: var(--green-ink);
}

.hkm .btn-cream:hover {
  color: var(--green-ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.hkm .btn .ic {
  width: 18px;
  height: 18px;
}

/* badges */
.hkm .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 999px;
}

.hkm .badge-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.hkm .badge-green {
  background: var(--green);
  color: var(--cream);
}

.hkm .badge-lav {
  background: var(--lav);
  color: var(--green-ink);
}

.hkm .badge-out {
  border: 2px solid var(--green);
  color: var(--green);
}

/* ===========================================================
   HEADER（専用）
   =========================================================== */
.hkm .site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 231, 221, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.hkm .site-header .bar {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 72px;
}

.hkm .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-disp);
}

.hkm .brand .b-ball {
  width: 30px;
}

.hkm .brand .b-name {
  font-size: 1.18rem;
  letter-spacing: .02em;
  color: var(--green);
  line-height: 1;
  text-transform: uppercase;
}

.hkm .brand .b-sub {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: .16em;
  color: var(--lav-deep);
  display: block;
  margin-top: 3px;
}

.hkm .nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.hkm .nav a {
  font-weight: 700;
  font-size: .92rem;
  color: var(--green-ink);
  position: relative;
  white-space: nowrap;
}

.hkm .nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--lav-deep);
  transition: width .2s ease;
}

.hkm .nav a:hover::after {
  width: 100%;
}

.hkm .header-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 920px) {
  .hkm .nav {
    gap: 16px;
  }
}

@media (max-width: 860px) {
  .hkm .nav {
    display: none;
  }

  .hkm .header-cta .btn span.lbl {
    display: none;
  }
}

/* ===========================================================
   HERO B（エディトリアル分割）
   =========================================================== */
.hkm .heroB {
  display: block;
  padding: clamp(40px, 6vw, 96px) 0;
}

.hkm .heroB .grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hkm .heroB .lead h1 {
  font-family: var(--font-disp);
  font-weight: 400;
  color: var(--green);
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 0.9;
  margin: 0;
  text-transform: uppercase;
}

.hkm .heroB .lead .jp {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.4rem, 3.6vw, 2.2rem);
  color: var(--green-ink);
  margin: 18px 0 0;
  line-height: 1.3;
}

.hkm .heroB .lead p {
  font-size: clamp(.97rem, 2vw, 1.08rem);
  color: #2c4a3b;
  max-width: 46ch;
  margin: 18px 0 26px;
}

.hkm .heroB .lead .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hkm .heroB .lead .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hkm .heroB .visual {
  position: relative;
  background: var(--lav);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hkm .heroB .visual .court-lines {
  position: absolute;
  inset: 0;
  opacity: .45;
}

.hkm .heroB .visual .ph {
  position: relative;
  z-index: 1;
  aspect-ratio: 4/5;
  border-radius: 24px;
}

.hkm .heroB .visual .float-ball {
  position: absolute;
  right: -26px;
  top: -26px;
  width: 120px;
  z-index: 2;
}

.hkm .heroB .visual .float-price {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  box-shadow: var(--shadow);
}

@media (max-width: 820px) {
  .hkm .heroB .grid {
    grid-template-columns: 1fr;
  }

  .hkm .heroB .visual {
    order: -1;
  }
}

/* price chip */
.hkm .price-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--green);
  color: var(--cream);
  border-radius: 24px;
  padding: 16px 22px;
  gap: 2px;
}

.hkm .price-chip .pc-label {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  opacity: .85;
}

.hkm .price-chip .pc-main {
  font-family: var(--font-disp);
  font-size: 1.9rem;
  line-height: 1;
}

.hkm .price-chip .pc-sub {
  font-size: .8rem;
  opacity: .85;
}

/* ===========================================================
   ABOUT
   =========================================================== */
.hkm .about {
  background: var(--ivory-2);
}

.hkm .about .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hkm .about .pts {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.hkm .about .pts li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 500;
}

.hkm .about .pts .ck {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lav);
  display: grid;
  place-items: center;
  color: var(--green);
  margin-top: 2px;
}

.hkm .about .pts li strong {
  font-family: var(--font-round);
}

.hkm .about .visual {
  position: relative;
}

.hkm .about .visual .ph {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hkm .about .visual .tag-ball {
  position: absolute;
  left: -22px;
  bottom: -22px;
  width: 110px;
  z-index: 999;
}

@media (max-width: 820px) {
  .hkm .about .grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   FEATURE
   =========================================================== */
.hkm .feature {
  background: var(--green);
  color: var(--cream);
}

.hkm .feature .section-head h2 {
  color: var(--cream);
}

.hkm .feature .section-head .jp {
  color: var(--lav-soft);
}

.hkm .feature .eyebrow {
  color: var(--lav);
}

.hkm .feature .cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hkm .feat-card {
  background: var(--ivory);
  color: var(--green-ink);
  border-radius: var(--radius);
  padding: 30px 26px 34px;
  position: relative;
  overflow: hidden;
  transition: transform .2s ease;
}

.hkm .feat-card:hover {
  transform: translateY(-6px);
}

.hkm .feat-card .num {
  font-family: var(--font-disp);
  font-size: 1rem;
  color: var(--lav-deep);
  letter-spacing: .06em;
}

.hkm .feat-card .ic-wrap {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--lav);
  display: grid;
  place-items: center;
  margin: 14px 0 18px;
  color: var(--green);
}

.hkm .feat-card h3 {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 8px;
}

.hkm .feat-card p {
  margin: 0;
  font-size: .94rem;
  color: #2c4a3b;
}

.hkm .feat-card .corner-ball {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 64px;
  opacity: .16;
}

@media (max-width: 920px) {
  .hkm .feature .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .hkm .feature .cards {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   PRICE
   =========================================================== */
.hkm .price .grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: stretch;
}

.hkm .price-table {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow);
}

.hkm .price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 2px dashed rgba(30, 73, 54, 0.16);
}

.hkm .price-row:last-child {
  border-bottom: none;
}

.hkm .price-row .pr-name {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hkm .price-row .pr-name .tballmini {
  width: 22px;
}

.hkm .price-row .pr-name small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .78rem;
  color: var(--lav-deep);
  letter-spacing: .02em;
}

.hkm .price-row .pr-val {
  font-family: var(--font-disp);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green);
  line-height: 1;
}

.hkm .price-row .pr-val small {
  font-family: var(--font-body);
  /* font-size: .8rem; */
  font-size: 20px;
  color: #5a6f63;
}

.hkm .price-row.free .pr-val {
  color: var(--lav-deep);
}

.hkm .price-note {
  margin-top: 18px;
  font-size: .86rem;
  color: #5a6f63;
}

.hkm .price-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hkm .price-side .card-green {
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hkm .price-side .card-green h3 {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.hkm .price-side .card-green p {
  margin: 0;
  color: var(--lav-soft);
  font-size: .95rem;
}

.hkm .price-side .card-green .ball-bg {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  opacity: .22;
}

.hkm .price-side .card-lav {
  background: var(--lav);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 32px);
}

.hkm .price-side .card-lav h4 {
  font-family: var(--font-round);
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--green-ink);
}

.hkm .price-side .card-lav p {
  margin: 0;
  font-size: .9rem;
  color: var(--green-ink);
}

@media (max-width: 820px) {
  .hkm .price .grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   FLOW
   =========================================================== */
.hkm .flow {
  background: var(--lav);
}

.hkm .flow .section-head h2 {
  color: var(--green-deep);
}

.hkm .flow .steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}

.hkm .flow-step {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 28px 24px 30px;
  position: relative;
}

.hkm .flow-step .st-no {
  font-family: var(--font-disp);
  font-size: 2.4rem;
  color: var(--lav-deep);
  line-height: 1;
}

.hkm .flow-step .ic-wrap {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  margin: 12px 0 16px;
}

.hkm .flow-step h3 {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 6px;
}

.hkm .flow-step p {
  margin: 0;
  font-size: .88rem;
  color: #2c4a3b;
}

.hkm .flow-step .arrow {
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  color: var(--green);
  z-index: 2;
}

.hkm .flow-step:last-child .arrow {
  display: none;
}

@media (max-width: 900px) {
  .hkm .flow .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .hkm .flow-step .arrow {
    display: none;
  }
}

@media (max-width: 460px) {
  .hkm .flow .steps {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   AREA
   =========================================================== */
.hkm .area .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.hkm .area .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hkm .area .chips .city {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--cream);
  border: 2px solid var(--green);
  color: var(--green-ink);
  transition: background .15s ease, color .15s ease;
}

.hkm .area .chips .city:hover {
  background: var(--green);
  color: var(--cream);
}

.hkm .area .chips .city.more {
  background: var(--lav);
  border-color: var(--lav);
}

.hkm .area .map-ph {
  aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

@media (max-width: 820px) {
  .hkm .area .grid {
    grid-template-columns: 1fr;
  }

  .hkm .area .map-ph {
    order: -1;
  }
}

/* ===========================================================
   FAQ
   =========================================================== */
.hkm .faq {
  background: var(--ivory-2);
}

.hkm .faq .list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.hkm .faq details {
  background: var(--cream);
  border-radius: 22px;
  padding: 4px 8px;
  border: 2px solid transparent;
  transition: border-color .15s ease;
}

.hkm .faq details[open] {
  border-color: var(--lav);
}

.hkm .faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 16px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.08rem;
}

.hkm .faq summary::-webkit-details-marker {
  display: none;
}

.hkm .faq summary .q {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-disp);
}

.hkm .faq summary .pm {
  margin-left: auto;
  flex: none;
  width: 26px;
  height: 26px;
  color: var(--lav-deep);
  transition: transform .2s ease;
}

.hkm .faq details[open] summary .pm {
  transform: rotate(45deg);
}

.hkm .faq .ans {
  padding: 0 18px 22px 66px;
  color: #2c4a3b;
  font-size: .96rem;
}

/* ===========================================================
   CONTACT
   =========================================================== */
.hkm .contact {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.hkm .contact .court-lines {
  position: absolute;
  inset: 0;
  opacity: .12;
}

.hkm .contact .inner {
  position: relative;
  z-index: 1;
}

.hkm .contact .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.hkm .contact .eyebrow {
  color: var(--lav);
}

.hkm .contact h2 {
  font-family: var(--font-disp);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin: 0 0 8px;
  color: var(--cream);
  text-transform: uppercase;
}

.hkm .contact .lead-jp {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  color: var(--lav-soft);
  margin: 0 0 30px;
}

.hkm .call-card {
  background: var(--cream);
  color: var(--green-ink);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
}

.hkm .call-card .ph-label {
  font-family: var(--font-round);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--lav-deep);
  margin: 0 0 4px;
}

.hkm .call-card .ph-num {
  font-family: var(--font-disp);
  font-size: clamp(2.1rem, 6vw, 3.2rem);
  color: var(--green);
  line-height: 1;
  letter-spacing: .02em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.hkm .call-card .hours {
  margin: 18px 0 0;
  display: grid;
  gap: 6px;
  font-size: .92rem;
}

.hkm .call-card .hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(30, 73, 54, .18);
  padding-bottom: 6px;
}

.hkm .call-card .addr {
  margin: 16px 0 0;
  font-size: .88rem;
  color: #5a6f63;
}

.hkm .call-card .call-btn {
  margin-top: 22px;
  width: 100%;
}

.hkm .contact-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hkm .form-card {
  background: rgba(244, 237, 225, 0.08);
  border: 1.5px solid rgba(244, 237, 225, 0.22);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.5vw, 36px);
}

.hkm .form-card h3 {
  font-family: var(--font-round);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 16px;
  color: var(--cream);
}

.hkm .form-card .row {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.hkm .form-card .row.two {
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hkm .form-card label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--lav-soft);
}

.hkm .form-card input,
.hkm .form-card select,
.hkm .form-card textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--green-ink);
  background: var(--cream);
  border: none;
  border-radius: 14px;
  padding: 13px 15px;
  width: 100%;
}

.hkm .form-card textarea {
  resize: vertical;
  min-height: 92px;
}

.hkm .form-card .send {
  margin-top: 6px;
  width: 100%;
}

.hkm .form-note {
  font-size: .76rem;
  color: var(--lav-soft);
  margin: 12px 0 0;
  text-align: center;
}

/* coming-soon form card */
.hkm .form-soon {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  text-align: left;
}

.hkm .form-soon .soon-badge {
  margin-bottom: 2px;
}

.hkm .form-soon .soon-lead {
  font-size: .95rem;
  color: var(--lav-soft);
  line-height: 1.8;
  margin: 0;
}

.hkm .line-card {
  background: var(--lav);
  color: var(--green-ink);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 30px);
  display: flex;
  align-items: center;
  gap: 18px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.hkm a.line-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.hkm .line-card .line-arrow {
  margin-left: auto;
  flex: none;
  width: 24px;
  height: 24px;
  color: var(--green);
}

.hkm .line-card .li-ic {
  flex: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green);
  color: var(--cream);
  display: grid;
  place-items: center;
}

.hkm .line-card h4 {
  font-family: var(--font-round);
  font-weight: 700;
  margin: 0 0 2px;
}

.hkm .line-card p {
  margin: 0;
  font-size: .85rem;
}

.hkm .line-card .soon {
  margin-left: auto;
  flex: none;
}

@media (max-width: 820px) {
  .hkm .contact .grid {
    grid-template-columns: 1fr;
  }

  .hkm .form-card .row.two {
    grid-template-columns: 1fr;
  }
}

/* ===========================================================
   FOOTER + mobile sticky CTA
   =========================================================== */
.hkm .site-footer {
  background: var(--green-deep);
  color: var(--lav-soft);
  padding: clamp(40px, 6vw, 64px) 0;
}

.hkm .site-footer .ft {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.hkm .site-footer .f-brand {
  font-family: var(--font-disp);
  color: var(--cream);
  font-size: 1.4rem;
  text-transform: uppercase;
}

.hkm .site-footer .f-brand small {
  display: block;
  font-family: var(--font-round);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--lav);
  margin-top: 4px;
}

.hkm .site-footer .f-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  /* font-size: .88rem; */
  font-size: 16px;
}

.hkm .site-footer .f-links a:hover {
  color: var(--cream);
}

.hkm .site-footer .copy {
  width: 100%;
  border-top: 1px solid rgba(244, 237, 225, .12);
  margin-top: 26px;
  padding-top: 18px;
  font-size: .78rem;
  color: rgba(200, 197, 234, .7);
}

.hkm .mobile-cta {
  display: none;
}

@media (max-width: 860px) {
  .hkm .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 65;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(243, 231, 221, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
  }

  .hkm .mobile-cta .btn {
    flex: 1;
  }

  body.home {
    padding-bottom: 76px;
  }
}

/* ---------- placeholder ---------- */
.hkm .ph {
  --c1: rgba(30, 73, 54, 0.10);
  --c2: rgba(30, 73, 54, 0.04);
  background: repeating-linear-gradient(45deg, var(--c1) 0 14px, var(--c2) 14px 28px), var(--lav-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--green);
}

.hkm .ph .ph-in {
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: .74rem;
  letter-spacing: .04em;
  font-weight: 600;
  padding: 10px 14px;
  border: 1.5px dashed rgba(30, 73, 54, .4);
  border-radius: 12px;
  background: rgba(243, 231, 221, .6);
}

/* reveal */
.hkm .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

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

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