/* =========================================================
   보이워치 BOY WATCH — Landing Page
   WCAG 2.2 AA, mobile-first, Korean-optimized
   ========================================================= */

:root {
  --brand-ink:      #0b0f17;
  --brand-ink-2:    #141a26;
  --brand-gold:     #c9a961;
  --brand-gold-2:   #b08f42;
  --brand-cream:    #f5f1ea;
  --surface:        #ffffff;
  --surface-soft:   #fafaf8;

  --text-primary:   #1a1a2e;
  --text-secondary: #555770;
  --text-muted:     #7a7d95;
  --text-on-ink:    #e6e8ef;
  --text-on-ink-2:  #b8bccb;

  --border:         #e5e5ec;
  --border-strong:  #d1d1e0;

  --success:        #16a34a;
  --danger:         #dc2626;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  18px;
  --radius-xl:  28px;

  --shadow-sm: 0 1px 2px rgba(11, 15, 23, 0.06), 0 2px 6px rgba(11, 15, 23, 0.04);
  --shadow-md: 0 4px 12px rgba(11, 15, 23, 0.08), 0 10px 28px rgba(11, 15, 23, 0.06);
  --shadow-lg: 0 20px 50px rgba(11, 15, 23, 0.18);

  --font-sans: "Pretendard", "Pretendard Variable", system-ui, -apple-system,
               "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  --container:   min(92%, 72rem);
  --container-n: min(92%, 48rem);
}

* { box-sizing: border-box; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--surface);
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a:hover { color: var(--brand-gold-2); }

:focus-visible {
  outline: 3px solid var(--brand-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3 {
  margin: 0 0 0.5em;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

p { margin: 0 0 1em; }

ul, ol { margin: 0; padding: 0; list-style: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--brand-ink);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 700;
}
.skip-link:focus { top: 0.75rem; color: #fff; }

/* ---------- Container ---------- */
.container        { width: var(--container);   margin-inline: auto; }
.container--narrow{ width: var(--container-n); margin-inline: auto; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding-block: 0.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.brand__logo {
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--brand-gold);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-size: 1.05rem; color: var(--brand-ink); }
.brand__text em    {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--brand-gold-2);
  font-weight: 600;
}

.site-nav {
  display: none;
  gap: 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.site-nav a { padding: 0.5rem 0.25rem; min-height: 44px; display: inline-flex; align-items: center; }

@media (min-width: 48rem) {
  .site-nav { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--brand-ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--brand-ink-2); color: #fff; }

.btn--gold {
  background: var(--brand-gold);
  color: var(--brand-ink);
  box-shadow: var(--shadow-md);
}
.btn--gold:hover { background: var(--brand-gold-2); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn--ghost:hover { border-color: var(--brand-ink); background: #fafafa; color: var(--text-primary); }

.btn--telegram {
  background: #229ED9;
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--telegram:hover { background: #1a86b8; color: #fff; }

.btn--lg { min-height: 56px; padding: 1rem 1.75rem; font-size: 1.05rem; }

/* ---------- Section base ---------- */
.section {
  padding-block: clamp(3.5rem, 5vw + 2rem, 6.5rem);
}

.section--ink {
  background: linear-gradient(180deg, var(--brand-ink) 0%, var(--brand-ink-2) 100%);
  color: var(--text-on-ink);
}
.section--ink h2, .section--ink h3 { color: #fff; }

.section__head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.5rem;
}
.section__head--left { text-align: left; margin-inline: 0; }
.section__head--light .section__eyebrow { color: var(--brand-gold); }
.section__head--light .section__sub     { color: var(--text-on-ink-2); }

.section__eyebrow {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--brand-gold-2);
  text-transform: uppercase;
}
.section__title {
  font-size: clamp(1.65rem, 1rem + 2.4vw, 2.5rem);
  font-weight: 800;
  margin: 0 0 0.75rem;
}
.section__title--sm {
  font-size: clamp(1.3rem, 1rem + 1vw, 1.6rem);
}
.section__sub {
  font-size: 1.02rem;
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 4vw + 2rem, 6rem) clamp(3rem, 4vw + 1.5rem, 5rem);
  background:
    radial-gradient(ellipse at top right, rgba(201, 169, 97, 0.12), transparent 60%),
    linear-gradient(180deg, var(--brand-cream) 0%, #fff 85%);
}
.hero__inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 56rem) {
  .hero__inner { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
}
.hero__eyebrow {
  display: inline-block;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-gold-2);
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 999px;
}
.hero__title {
  font-size: clamp(2rem, 1rem + 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.hero__title .gold { color: var(--brand-gold-2); }
.hero__sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin: 0 0 2rem;
  max-width: 34rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.hero__badges li {
  position: relative;
  padding-inline-start: 1.25rem;
}
.hero__badges li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--brand-gold-2);
  font-weight: 900;
}

.hero__visual {
  display: none;
  justify-content: center;
  align-items: center;
}
@media (min-width: 56rem) { .hero__visual { display: flex; } }

.hero__card {
  width: min(100%, 380px);
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,169,97,0.18), transparent 55%),
    linear-gradient(155deg, #141a26 0%, #0b0f17 60%, #05080d 100%);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 1.75rem;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
}
.hero__card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

/* ---------- Analog Watch ---------- */
.watch {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4));
}
.watch__markers line { stroke-width: 2.5; }
.watch__markers line.major { stroke-width: 4; }

.watch__brand {
  font-family: "Times New Roman", "Noto Serif KR", serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  fill: #0b0f17;
}
.watch__brand-sub {
  font-family: "Times New Roman", serif;
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.4em;
  fill: #8d6e2b;
}

.watch__hand {
  stroke-linecap: round;
  transform-box: fill-box;
  transform-origin: center bottom;
}
.watch__hand--hour   { stroke: #0b0f17; stroke-width: 6; }
.watch__hand--minute { stroke: #0b0f17; stroke-width: 4; }
.watch__hand--second { stroke: #c9a961; stroke-width: 2; }

/* Pulse glow on bezel */
@keyframes watchGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
  50%      { box-shadow: 0 0 30px 4px rgba(201,169,97,0.18); }
}
.hero__card { animation: watchGlow 4s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  .hero__card { animation: none; }
}

/* ---------- Services ---------- */
.services { background: var(--surface-soft); }

.service-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 36rem) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-gold);
}
.service-card--feature {
  background: linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
  border-color: rgba(201,169,97,0.35);
}
.service-card--feature .service-card__icon {
  background: linear-gradient(135deg, var(--brand-ink) 0%, var(--brand-ink-2) 100%);
  color: var(--brand-gold);
}
.service-card__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-cream);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Rates ---------- */
.rates { background: #fff; }
.rates .section__sub {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
}
.rates__live {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.5);
  animation: pulseDot 1.6s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.45); }
  70%  { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.rate-table {
  background: linear-gradient(180deg, #fbf8f1 0%, #ffffff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.rate-table__head,
.rate-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
}
.rate-table__head {
  background: var(--brand-ink);
  color: var(--brand-gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rate-table__head [role="columnheader"]:nth-child(2) { text-align: right; }

.rate-row + .rate-row { border-top: 1px solid var(--border); }
.rate-row { transition: background 0.15s ease; }
.rate-row:hover { background: rgba(201, 169, 97, 0.06); }

.rate-row__name {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--text-primary);
}
.rate-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9), 0 1px 3px rgba(0,0,0,0.15);
}
.rate-row__dot--lotte     { background: #ed1c24; }
.rate-row__dot--hyundai   { background: #003d7a; }
.rate-row__dot--shinsegae { background: #c8102e; }
.rate-row__dot--oil       { background: #00843d; }

.rate-row__price {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  white-space: nowrap;
}
.rate-row__price b {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.rate-row__price .buy  { color: var(--brand-ink); }
.rate-row__price .sell { color: var(--brand-gold-2); }
.rate-row__price i {
  font-style: normal;
  margin-left: 2px;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}
.rate-row__price .sep {
  display: inline-block;
  margin: 0 0.55rem;
  color: var(--border-strong);
  font-style: normal;
  font-weight: 300;
  font-size: 1.15rem;
  vertical-align: -2px;
}

.rates__note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

.rates__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

@media (max-width: 30rem) {
  .rate-table__head { display: none; }
  .rate-row {
    grid-template-columns: 1fr;
    row-gap: 0.4rem;
    padding: 1rem 1.1rem;
  }
  .rate-row__price { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  .rates__live { animation: none; }
}

/* ---------- Why (on ink) ---------- */
.why-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 36rem) { .why-list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .why-list { grid-template-columns: repeat(4, 1fr); } }

.why-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 97, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.why-item--accent {
  background: linear-gradient(160deg, rgba(201,169,97,0.18) 0%, rgba(201,169,97,0.05) 100%);
  border-color: var(--brand-gold);
  box-shadow: 0 0 0 1px rgba(201,169,97,0.25);
}
.why-item--accent .why-item__num { color: #fff; }
.why-item__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brand-gold);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.why-item h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: #fff;
}
.why-item p {
  color: var(--text-on-ink-2);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- Process ---------- */
.process-steps {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: step;
}
@media (min-width: 36rem) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64rem) { .process-steps { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.process-step__num {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-ink);
  color: var(--brand-gold);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: var(--shadow-md);
}
.process-step h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}
.process-step p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ---------- FAQ ---------- */
.faq { background: var(--surface-soft); }

.faq-list { display: grid; gap: 0.75rem; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: var(--brand-gold);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 3rem 1.1rem 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--text-secondary);
  border-bottom: 2px solid var(--text-secondary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(-135deg);
  border-color: var(--brand-gold-2);
}
.faq-item p {
  padding: 0 1.25rem 1.25rem;
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ---------- CTA Section ---------- */
.cta__inner {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.cta__title {
  font-size: clamp(1.7rem, 1rem + 2.5vw, 2.6rem);
  margin: 0 0 1rem;
  font-weight: 800;
  line-height: 1.25;
}
.cta__sub {
  color: var(--text-on-ink-2);
  font-size: 1.05rem;
  margin: 0 0 2rem;
}
.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.cta__note {
  color: var(--text-on-ink-2);
  font-size: 0.85rem;
  max-width: 32rem;
  margin: 0 auto;
  opacity: 0.8;
}

/* ---------- Privacy ---------- */
.privacy .prose {
  color: var(--text-secondary);
  font-size: 0.97rem;
  line-height: 1.75;
}
.privacy .prose strong { color: var(--text-primary); }
.privacy .prose .muted { color: var(--text-muted); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand-ink);
  color: var(--text-on-ink-2);
  padding-block: 2.5rem 6rem;
  font-size: 0.9rem;
}
.site-footer__inner {
  display: grid;
  gap: 1.25rem;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-footer__brand img {
  border-radius: 50%;
  border: 1.5px solid var(--brand-gold);
}
.site-footer__brand strong { color: #fff; display: block; font-size: 1rem; }
.site-footer__brand p { margin: 0; font-size: 0.85rem; }

.site-footer__info {
  font-style: normal;
  display: grid;
  gap: 0.35rem;
  line-height: 1.6;
}
.site-footer__info a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.2);
  text-underline-offset: 3px;
}
.site-footer__info a:hover {
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.5);
}
.site-footer__info .pending {
  font-style: normal;
  display: inline-block;
  padding: 1px 8px;
  border-radius: 4px;
  background: rgba(201, 169, 97, 0.15);
  color: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-footer__copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  margin: 0.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.82rem;
}

@media (min-width: 48rem) {
  .site-footer { padding-block: 3rem 3rem; }
  .site-footer__inner {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    row-gap: 2rem;
  }
  .site-footer__copy { grid-column: 1 / -1; }
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
  padding: 0.6rem;
  background: rgba(11, 15, 23, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
.sticky-cta__btn {
  flex: 1;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.sticky-cta__btn--tel { background: var(--brand-ink-2); border: 1px solid rgba(255,255,255,0.15); }
.sticky-cta__btn--sms { background: var(--brand-gold); color: var(--brand-ink); }
.sticky-cta__btn--sms:hover { background: var(--brand-gold-2); color: #fff; }
.sticky-cta__btn--telegram { background: #229ED9; }
.sticky-cta__btn--telegram:hover { background: #1a86b8; color: #fff; }
.sticky-cta__btn { font-size: 0.9rem; }
.sticky-cta__btn span { font-size: 1.05rem; }

@media (min-width: 48rem) {
  .sticky-cta { display: none; }
  .site-footer { padding-bottom: 3rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .sticky-cta, .site-header, .hero__cta, .cta__buttons { display: none !important; }
  .section--ink { background: #fff; color: #000; }
  .section--ink h2, .section--ink h3 { color: #000; }
}
