/* =========================================================
   KINGSMAN — 강남 쩜오 킹스맨
   Dark luxury theme · bright text · high readability
   ========================================================= */

:root {
  /* Palette */
  --bg:            #0a0a0c;
  --bg-elev:       #121216;
  --bg-elev-2:     #1a1a20;
  --line:          #2a2a33;
  --line-soft:     #22222a;

  --text:          #f4f1ea;   /* bright body text */
  --text-soft:     #c9c4bb;
  --text-muted:    #8f8a80;

  --gold:          #d4af37;   /* luxury accent */
  --gold-soft:     #e8cf77;
  --gold-deep:     #b8912a;
  --orange:        #ff7a1a;   /* call-to-action / phone */
  --orange-deep:   #e8620d;

  --radius:        16px;
  --radius-sm:     10px;
  --maxw:          1180px;
  --shadow:        0 18px 50px rgba(0,0,0,.55);
  --shadow-soft:   0 10px 30px rgba(0,0,0,.35);

  --ff-serif: "Playfair Display", "Noto Serif KR", Georgia, serif;
  --ff-sans:  "Pretendard", "Noto Sans KR", -apple-system, BlinkMacSystemFont,
              "Segoe UI", Roboto, "Apple SD Gothic Neo", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--ff-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* subtle ambient glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(60% 40% at 80% -5%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(50% 40% at 0% 100%, rgba(255,122,26,.06), transparent 60%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; position: relative; z-index: 1; }

.eyebrow {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .78rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

h1, h2, h3 { font-family: var(--ff-serif); font-weight: 700; line-height: 1.25; margin: 0; color: #fff; }
.serif { font-family: var(--ff-serif); }

.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }

/* =========================================================
   Top bar + Navigation
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,10,12,.72);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--ff-serif);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: .14em;
  color: #fff;
  white-space: nowrap;
}
.brand .dot { color: var(--gold); }
.brand small {
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: .3em;
  color: var(--text-muted);
  font-weight: 600;
}

.menu { display: flex; align-items: center; gap: 4px; }
.menu > li { position: relative; }
.menu > li > a {
  display: block;
  padding: 12px 15px;
  font-size: .93rem;
  font-weight: 600;
  color: var(--text-soft);
  border-radius: 10px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.menu .mobile-cta { display: none; }
.menu > li > a:hover,
.menu > li.active > a { color: #fff; background: rgba(255,255,255,.05); }

/* dropdown */
.submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 230px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, transform .2s, visibility .2s;
}
.menu > li:hover .submenu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.submenu a {
  display: block;
  padding: 10px 14px;
  border-radius: 9px;
  font-size: .88rem;
  color: var(--text-soft);
  transition: background .18s, color .18s;
}
.submenu a:hover { background: rgba(212,175,55,.10); color: var(--gold-soft); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .9rem;
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 8px 22px rgba(212,175,55,.28);
  white-space: nowrap;
  transition: transform .18s, box-shadow .18s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(212,175,55,.4); }

.hamburger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-elev);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.hamburger span,
.hamburger span::before,
.hamburger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
  position: relative;
}
.hamburger span::before { position: absolute; top: -6px; }
.hamburger span::after  { position: absolute; top:  6px; }
body.nav-open .hamburger span { background: transparent; }
body.nav-open .hamburger span::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .hamburger span::after  { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .98rem;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .18s, border-color .18s;
  border: 1px solid transparent;
}
.btn-gold {
  color: #1a1200;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 26px rgba(212,175,55,.30);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(212,175,55,.42); }
.btn-orange {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 10px 26px rgba(255,122,26,.32);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,122,26,.45); }
.btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.02);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-soft); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  padding: 108px 0 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.4), rgba(10,10,12,.92) 78%, var(--bg)),
    radial-gradient(80% 60% at 70% 20%, rgba(212,175,55,.14), transparent 60%),
    linear-gradient(120deg, #14141a, #0a0a0c);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(70% 70% at 60% 30%, #000, transparent 75%);
}
/* Animated cursive "Kings Man" signature layer */
.hero-script {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}
.km-svg {
  width: min(1120px, 96%);
  height: auto;
  filter: drop-shadow(0 8px 40px rgba(255,90,180,.25));
}
.km-text {
  font-family: "Great Vibes", cursive;
  font-size: 240px;
  text-anchor: middle;
}
.km-fill { fill: url(#kmGrad); }
.km-glow { fill: url(#kmGrad); filter: url(#kmGlow); opacity: .55; }

.km-reveal {
  /* left-to-right "writing" wipe + fade-in, hold, fade-out — loops */
  animation: kmReveal 9s ease-in-out infinite;
}
@keyframes kmReveal {
  0%   { clip-path: inset(0 100% 0 0); opacity: 0; }
  6%   { opacity: .4; }
  34%  { clip-path: inset(0 0 0 0);   opacity: .68; }  /* fully written */
  60%  { clip-path: inset(0 0 0 0);   opacity: .68; }  /* shimmer hold */
  84%  { clip-path: inset(0 0 0 0);   opacity: 0; }    /* fade away */
  100% { clip-path: inset(0 0 0 0);   opacity: 0; }
}

.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero h1 .ln { display: block; }
.hero p.lead {
  font-size: clamp(1.02rem, 2.2vw, 1.22rem);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line-soft);
}
.hero-stats .stat b {
  display: block;
  font-family: var(--ff-serif);
  font-size: 2rem;
  color: var(--gold-soft);
  line-height: 1;
}
.hero-stats .stat span { font-size: .85rem; color: var(--text-muted); }

/* =========================================================
   Section scaffolding
   ========================================================= */
.section { padding: 88px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-head p { color: var(--text-soft); font-size: 1.04rem; margin: 0; }

.alt { background: linear-gradient(180deg, var(--bg-elev), var(--bg)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .22s, border-color .22s, box-shadow .22s;
}
.card:hover { transform: translateY(-5px); border-color: rgba(212,175,55,.5); box-shadow: var(--shadow-soft); }
.card .icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(212,175,55,.12);
  border: 1px solid rgba(212,175,55,.25);
  margin-bottom: 18px;
  color: var(--gold-soft);
}
.card h3 { font-size: 1.28rem; margin-bottom: 10px; }
.card p { color: var(--text-soft); font-size: .97rem; margin: 0; }
.card .num {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.35);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 16px;
}

/* Feature split */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.split .visual {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 380px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 30% 20%, rgba(212,175,55,.18), transparent 60%),
    linear-gradient(140deg, #1c1c24, #101014);
}
.split .visual .badge {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  background: rgba(10,10,12,.7);
  border: 1px solid var(--line);
  padding: 10px 16px; border-radius: 999px;
  font-size: .82rem; color: var(--text-soft);
  backdrop-filter: blur(8px);
}
/* real photo inside a .visual block */
.visual.photo { background-size: cover; background-position: center; }
.visual.photo::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10,10,12,.12), rgba(10,10,12,.5));
}
.split ul.checks li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid var(--line-soft);
  color: var(--text-soft);
}
.split ul.checks li:last-child { border-bottom: 0; }
.split ul.checks li b { color: #fff; }
.check-mark {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(212,175,55,.14); border: 1px solid rgba(212,175,55,.4);
  color: var(--gold); display: grid; place-items: center; font-size: .8rem;
  margin-top: 3px;
}

/* Price / TC table */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.price-card {
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.price-card.feature { border-color: rgba(212,175,55,.55); box-shadow: 0 0 0 1px rgba(212,175,55,.25), var(--shadow-soft); }
.price-card .tag {
  position: absolute; top: 20px; right: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: #1a1200; background: var(--gold); padding: 4px 10px; border-radius: 999px;
}
.price-card h3 { font-size: 1.35rem; margin-bottom: 6px; }
.price-card .price {
  font-family: var(--ff-serif); font-size: 2.1rem; color: var(--gold-soft);
  margin: 14px 0 6px;
}
.price-card .price small { font-size: .95rem; color: var(--text-muted); font-family: var(--ff-sans); }
.price-card ul { margin: 18px 0 24px; }
.price-card ul li { padding: 8px 0; color: var(--text-soft); font-size: .93rem; border-bottom: 1px solid var(--line-soft); }
.price-note {
  margin-top: 26px; text-align: center; color: var(--text-muted); font-size: .92rem;
}

/* Manager cards */
.mgr-card { padding: 0; overflow: hidden; }
.mgr-photo {
  height: 260px;
  background: radial-gradient(60% 60% at 50% 30%, rgba(212,175,55,.2), transparent 60%), linear-gradient(160deg, #22222b, #14141a);
  position: relative;
  display: grid; place-items: center;
}
.mgr-photo .initial { font-family: var(--ff-serif); font-size: 4rem; color: rgba(244,241,234,.22); }
.mgr-photo.photo { background-size: cover; background-position: center; }
.mgr-photo.photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.1), rgba(10,10,12,.55));
}
.mgr-photo.photo .rank, .mgr-photo.photo .initial { position: relative; z-index: 1; }
.mgr-photo .rank {
  position: absolute; top: 16px; left: 16px;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em;
  color: var(--gold); border: 1px solid rgba(212,175,55,.4);
  padding: 4px 10px; border-radius: 999px; background: rgba(10,10,12,.5);
}
.mgr-body { padding: 22px 24px 26px; }
.mgr-body h3 { font-size: 1.25rem; margin-bottom: 4px; }
.mgr-body .role { color: var(--gold-soft); font-size: .85rem; margin-bottom: 12px; }
.mgr-body p { color: var(--text-soft); font-size: .92rem; margin: 0 0 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chip {
  font-size: .76rem; color: var(--text-soft);
  background: rgba(255,255,255,.04); border: 1px solid var(--line);
  padding: 5px 11px; border-radius: 999px;
}

/* Reviews */
.review-card {
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
}
.stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.stars .star-off { color: rgba(212,175,55,.28); }
.review-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.review-top .stars { margin-bottom: 0; }
.review-num {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold-soft);
  border: 1px solid rgba(212,175,55,.4);
  border-radius: 10px;
  padding: 6px 12px;
  background: rgba(212,175,55,.06);
}
.review-title { font-size: 1.12rem; line-height: 1.4; margin-bottom: 12px; color: #fff; }
.review-target {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-soft);
  font-size: .9rem;
}
.review-target span {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: 2px 9px;
  margin-right: 8px;
}
.review-card blockquote { margin: 0 0 18px; color: var(--text); font-size: 1rem; line-height: 1.7; }
.review-meta { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: .86rem; }
.review-meta .av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-deep), var(--gold));
  color:#1a1200; display: grid; place-items: center; font-weight: 700;
}
.review-meta b { color: var(--text); font-weight: 600; }

/* Notice / posts list */
.post-list { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.post-item {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px; border-bottom: 1px solid var(--line-soft);
  transition: background .18s;
}
.post-item:last-child { border-bottom: 0; }
.post-item:hover { background: rgba(255,255,255,.02); }
.post-cat {
  flex: none; font-size: .74rem; font-weight: 700; letter-spacing: .06em;
  color: var(--gold); border: 1px solid rgba(212,175,55,.35);
  padding: 4px 11px; border-radius: 999px; min-width: 62px; text-align: center;
}
.post-cat.event { color: var(--orange); border-color: rgba(255,122,26,.4); }
.post-item h3 { font-family: var(--ff-sans); font-size: 1rem; font-weight: 600; color: var(--text); flex: 1; }
.post-item time { color: var(--text-muted); font-size: .84rem; white-space: nowrap; }

/* FAQ / accordion */
.faq { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq details { border-bottom: 1px solid var(--line-soft); }
.faq details:last-child { border-bottom: 0; }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 22px 24px; font-weight: 600; font-size: 1.02rem; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .q { display: flex; gap: 12px; align-items: center; }
.faq summary .q i { color: var(--gold); font-style: normal; font-family: var(--ff-serif); }
.faq summary .plus { color: var(--gold); font-size: 1.4rem; transition: transform .25s; flex: none; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq .a { padding: 0 24px 24px; color: var(--text-soft); }

/* Info / contact */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card {
  background: linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px;
}
.info-card .icon {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,122,26,.12); border: 1px solid rgba(255,122,26,.28);
  color: var(--orange); margin-bottom: 16px;
}
.info-card h3 { font-family: var(--ff-sans); font-size: 1.05rem; margin-bottom: 8px; }
.info-card p { color: var(--text-soft); margin: 0; font-size: .96rem; }
.info-card a.big { color: var(--gold-soft); font-family: var(--ff-serif); font-size: 1.5rem; }

/* Map placeholder */
.mapbox {
  border-radius: var(--radius); border: 1px solid var(--line);
  min-height: 320px; position: relative; overflow: hidden;
  background:
    radial-gradient(50% 50% at 50% 45%, rgba(255,122,26,.16), transparent 60%),
    repeating-linear-gradient(45deg, #14141a, #14141a 22px, #16161d 22px, #16161d 44px);
  display: grid; place-items: center;
}
.mapbox .pin {
  text-align: center;
}
.mapbox .pin .dotpin {
  width: 18px; height: 18px; border-radius: 50%; background: var(--orange);
  margin: 0 auto 10px; box-shadow: 0 0 0 8px rgba(255,122,26,.2), 0 0 0 16px rgba(255,122,26,.1);
}
.mapbox .pin b { color: #fff; }
.mapbox .pin span { color: var(--text-soft); font-size: .9rem; }

/* CTA band */
.cta-band {
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 22px;
  padding: 56px 48px;
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(212,175,55,.14), transparent 60%),
    linear-gradient(180deg, var(--bg-elev-2), var(--bg-elev));
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.cta-band p { color: var(--text-soft); margin: 0 auto 28px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Page hero (sub pages) */
.page-hero {
  padding: 78px 0 54px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(212,175,55,.1), transparent 60%),
    linear-gradient(180deg, var(--bg-elev), var(--bg));
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 16px; }
.page-hero p { color: var(--text-soft); max-width: 640px; font-size: 1.06rem; margin: 0; }
.breadcrumb { color: var(--text-muted); font-size: .85rem; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* Contact form */
.form { display: grid; gap: 16px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: .85rem; color: var(--text-soft); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: 12px;
  background: var(--bg-elev); border: 1px solid var(--line);
  color: var(--text); font-family: inherit; font-size: .96rem;
  transition: border-color .18s, box-shadow .18s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-note { color: var(--text-muted); font-size: .82rem; }

/* =========================================================
   Location map (above footer)
   ========================================================= */
.map-section { padding: 56px 0 40px; }
.map-head { margin-bottom: 24px; }
.map-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 12px; }
.map-head p { color: var(--text-soft); margin: 0; }
.map-embed {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  line-height: 0;
}
.map-embed iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  filter: brightness(.92) contrast(1.02);
}
.map-embed .map-tag {
  position: absolute;
  left: 16px; top: 16px;
  display: flex; align-items: center; gap: 8px;
  background: rgba(10,10,12,.82);
  border: 1px solid rgba(255,122,26,.4);
  color: #fff; font-size: .85rem; font-weight: 600;
  padding: 9px 14px; border-radius: 999px;
  backdrop-filter: blur(8px);
  line-height: 1.2;
}
.map-embed .map-tag .dotpin {
  width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255,122,26,.25);
  flex: none;
}
@media (max-width: 640px) {
  .map-embed iframe { height: 320px; }
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-elev);
  padding: 60px 0 28px;
  margin-top: 40px;
}
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { font-size: 1.3rem; margin-bottom: 14px; }
.footer p { color: var(--text-muted); font-size: .92rem; margin: 0 0 8px; }
.footer h4 { font-family: var(--ff-sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-soft); margin: 0 0 16px; }
.footer li { margin-bottom: 10px; }
.footer li a { color: var(--text-muted); font-size: .92rem; transition: color .18s; }
.footer li a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--text-muted); font-size: .84rem;
}
.footer-bottom a:hover { color: var(--gold); }
.badge-19 {
  display: inline-grid; place-items: center;
  width: 26px; height: 26px; border-radius: 6px;
  border: 1px solid #d33; color: #f66; font-size: .72rem; font-weight: 700;
  margin-right: 8px; vertical-align: middle;
}

/* =========================================================
   Floating phone button (orange, animated) — all pages
   ========================================================= */
.call-fab {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  box-shadow: 0 12px 30px rgba(255,122,26,.5);
  animation: fab-bounce 1.6s ease-in-out infinite;
}
.call-fab::before,
.call-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255,122,26,.6);
  animation: fab-ring 1.8s ease-out infinite;
}
.call-fab::after { animation-delay: .6s; }
.call-fab svg { width: 30px; height: 30px; animation: fab-shake 1.6s ease-in-out infinite; }
.call-fab .fab-label {
  position: absolute;
  right: 74px;
  white-space: nowrap;
  background: rgba(10,10,12,.9);
  border: 1px solid rgba(255,122,26,.4);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}
.call-fab .fab-label b { color: var(--orange); }

@keyframes fab-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fab-shake {
  0%, 100% { transform: rotate(0); }
  20% { transform: rotate(-16deg); }
  40% { transform: rotate(16deg); }
  60% { transform: rotate(-10deg); }
  80% { transform: rotate(10deg); }
}
@keyframes fab-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.9); opacity: 0; }
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .hamburger { display: inline-flex; }
  .nav-desktop-cta { display: none; }
  .menu {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-elev);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s, transform .22s, visibility .22s;
  }
  body.nav-open .menu { opacity: 1; visibility: visible; transform: none; }
  .menu > li > a { padding: 14px 12px; font-size: 1rem; border-radius: 10px; }
  .submenu {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    box-shadow: none; border: 0; background: transparent;
    min-width: 0; padding: 0 0 6px 14px;
  }
  .submenu a { padding: 9px 12px; font-size: .9rem; color: var(--text-muted); }
  .menu .mobile-cta { display: block; margin-top: 12px; }
  .menu .mobile-cta a { justify-content: center; width: 100%; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero { padding: 72px 0 64px; }
  .hero-stats { gap: 26px; }
  .cta-band { padding: 42px 24px; }
  .call-fab .fab-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .call-fab, .call-fab svg, .call-fab::before, .call-fab::after { animation: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .km-reveal { animation: none; clip-path: none; opacity: .3; }
  html { scroll-behavior: auto; }
}
