:root {
  --black: #1C1F26;
  --charcoal: #252930;
  --grey-1: #2E323B;
  --grey-2: #3A3F4A;
  --grey-3: #666666;
  --grey-4: #AAAAAA;
  --yellow: #C9981F;
  --yellow-d: #A87C14;
  --yellow-light: #E0B84A;
  --white: #F4F2EE;
  --white-d: #DDDDDD;
  /* Light section surfaces */
  --surface-1: #F7F5F1;
  --surface-2: #EFECEA;
  --surface-card: #FFFFFF;
  --surface-border: #E0DDD8;
  --text-dark: #1C1F26;
  --text-mid: #3A3F4A;
  --text-muted: #6B6861;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --section-pad: clamp(4rem, 9vw, 9rem);
  --container: min(1200px, 92vw);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius: 3px;
  --radius-lg: 8px;
}

.hero, .stats, .services, .about, .contact,
.hero *, .stats *, .services *, .about *, .contact *,
.hero *::before, .hero *::after,
.stats *::before, .stats *::after,
.services *::before, .services *::after,
.about *::before, .about *::after,
.contact *::before, .contact *::after { box-sizing: border-box; }

.hero, .hero * { color: var(--white); }

.stats, .services, .about, .contact {
  color: var(--text-dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
}

.hero img, .stats img, .services img, .about img, .contact img { max-width: 100%; display: block; }
.hero a, .services a, .about a, .contact a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin-inline: auto; }

/* ── TAG / CAT-EYE LABEL ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(.6rem, 1.4vw, .68rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--black);
  padding: .3rem .85rem .28rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
  position: relative;
}
.tag::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border-radius: 50%;
  flex-shrink: 0;
}
/* Hero tag keeps yellow dot, same pill style */
.hero .tag {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--yellow-light);
  backdrop-filter: blur(4px);
}
.hero .tag::before { background: var(--yellow-light); }

/* ── SECTION TITLES ── */
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.025em;
  color: var(--text-dark);
  margin: 0;
}
.section-title span { color: var(--yellow); }
.hero .section-title,
.hero .hero-title { color: var(--white); }
.hero .section-title span { color: var(--yellow-light); }

/* ── BODY TEXT ── */
.body-text {
  font-size: clamp(.92rem, 2vw, 1.05rem);
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.8;
  margin: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(.83rem, 2vw, .91rem);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .82rem 1.9rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .22s var(--ease-out), color .22s var(--ease-out),
              border-color .22s var(--ease-out), transform .2s var(--ease-spring),
              box-shadow .22s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: scale(.96); }
.btn svg { flex-shrink: 0; transition: transform .2s var(--ease-out); }
.btn img { width: 14px; height: 14px; object-fit: contain; flex-shrink: 0; }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
  background: var(--black);
  color: #fff !important;
  border-color: var(--black);
  font-weight: 700;
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--charcoal);
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px rgba(28,31,38,.18), 0 8px 28px rgba(28,31,38,.22);
}

.btn--ghost-yellow {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--ghost-yellow:hover,
.btn--ghost-yellow:focus-visible {
  background: var(--black);
  color: #fff;
  box-shadow: 0 8px 24px rgba(28,31,38,.2);
}

/* hero buttons keep their amber look */
.hero .btn--primary {
  background: var(--yellow);
  color: var(--black) !important;
  border-color: var(--yellow);
}
.hero .btn--primary:hover {
  background: var(--yellow-light);
  border-color: var(--yellow-light);
  box-shadow: 0 0 0 3px rgba(201,152,31,.25), 0 8px 28px rgba(201,152,31,.3);
}
.hero .btn--ghost-yellow {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}
.hero .btn--ghost-yellow:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* ── RULE ── */
.rule {
  display: block;
  width: 3.5rem;
  height: 3px;
  background: var(--black);
  border: none;
  margin: 0 0 2rem;
}
.hero .rule { background: var(--yellow); }

/* ── REVEAL ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: .1s; }
  .reveal-d2 { transition-delay: .2s; }
  .reveal-d3 { transition-delay: .32s; }
  .reveal-d4 { transition-delay: .45s; }
  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }
  .reveal-scale {
    opacity: 0;
    transform: scale(.94);
    transition: opacity .65s var(--ease-out), transform .65s var(--ease-spring);
  }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: clamp(5rem, 12vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://img1.wsimg.com/isteam/ip/adab3e29-efbf-4e36-a597-18e93e98ad36/MIAMI%20BEACH%20SKYLINE.jpg') center/cover no-repeat;
  filter: brightness(.16) saturate(.35);
  transform: scale(1.06);
  z-index: 0;
  transition: transform 8s ease-out;
}
.hero:hover .hero-bg { transform: scale(1.04); }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 42px, rgba(201,152,31,.022) 42px, rgba(201,152,31,.022) 43px);
  pointer-events: none;
  z-index: 1;
}
.hero-glow-bl {
  position: absolute;
  bottom: -15%; left: -8%;
  width: min(65vw, 700px);
  height: min(65vw, 700px);
  background: radial-gradient(ellipse, rgba(201,152,31,.13) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
  animation: glowFloat 6s ease-in-out infinite;
}
.hero-glow-tr {
  position: absolute;
  top: -10%; right: -5%;
  width: min(40vw, 450px);
  height: min(40vw, 450px);
  background: radial-gradient(ellipse, rgba(201,152,31,.06) 0%, transparent 68%);
  pointer-events: none;
  z-index: 1;
}
@keyframes glowFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.04); }
}
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-particles span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes particleFade {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: .6; }
  80%  { opacity: .3; }
  100% { opacity: 0; transform: translateY(-60px); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: min(780px, 100%);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .8s .2s var(--ease-out) forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 2.5rem; height: 2px;
  background: var(--yellow);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: clamp(.65rem, 1.5vw, .72rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--yellow-light);
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  line-height: 1.06;
  letter-spacing: -.03em;
  margin: 0 0 1.6rem;
  opacity: 0;
  animation: fadeUp .8s .35s var(--ease-out) forwards;
  color: var(--white);
}
.hero-title .accent {
  color: var(--yellow-light);
  display: block;
  position: relative;
}
.hero-title .accent::after {
  content: '';
  position: absolute;
  bottom: -.1em; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  animation: lineGrow 1.2s 1.2s var(--ease-out) forwards;
}
@keyframes lineGrow { to { width: 100%; } }
.hero-subtitle {
  font-size: clamp(.95rem, 2.2vw, 1.15rem);
  color: var(--white-d);
  max-width: 52ch;
  margin: 0 0 2.8rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp .8s .5s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  animation: fadeUp .8s .65s var(--ease-out) forwards;
}
.hero-phone-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: var(--white-d);
  font-size: clamp(.85rem, 2vw, .93rem);
  transition: color .2s;
}
.hero-phone-link:hover { color: var(--yellow-light); }
.hero-phone-link svg { color: var(--yellow); flex-shrink: 0; }
.hero-phone-link img { width: 16px; height: 16px; object-fit: contain; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: clamp(.6rem, 1.2vw, .68rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--grey-4);
  opacity: 0;
  animation: fadeIn 1s 1.3s ease forwards;
}
.hero-scroll-line {
  width: 1px;
  height: clamp(36px, 6vw, 52px);
  background: linear-gradient(to bottom, var(--yellow), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: .3; transform: scaleY(.85); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ══════════════════════════════════════
   STATS — black bar with amber numbers
══════════════════════════════════════ */
.stats {
  background: var(--black);
  padding: clamp(1.8rem, 4vw, 2.8rem) 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 120px,
    rgba(201,152,31,.06) 120px, rgba(201,152,31,.06) 121px);
  animation: shimmerMove 8s linear infinite;
  pointer-events: none;
}
@keyframes shimmerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(120px); }
}
.stats-inner {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem) clamp(2rem, 5vw, 4.5rem);
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--yellow-light);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-label {
  font-size: clamp(.72rem, 1.5vw, .8rem);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
}
.stat-sep {
  width: 1px;
  height: 3rem;
  background: rgba(255,255,255,.1);
  display: none;
}
@media (min-width: 560px) { .stat-sep { display: block; } }

/* ══════════════════════════════════════
   SERVICES — light bg, black icons
══════════════════════════════════════ */
.services {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--surface-1);
}
.lines-bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.lines-bg svg { width: 100%; height: 100%; opacity: .03; }
.services-head {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.services-head > * { flex: 1 1 260px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 1px;
  background: var(--surface-border);
  border: 1px solid var(--surface-border);
}
.service-card {
  background: var(--surface-card);
  padding: clamp(2rem, 5vw, 3.2rem);
  position: relative;
  overflow: hidden;
  transition: background .28s var(--ease-out), transform .28s var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--black);
  transition: width .4s var(--ease-out);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 1.8rem; right: 1.8rem;
  width: 22px; height: 22px;
  border-right: 2px solid rgba(28,31,38,.12);
  border-bottom: 2px solid rgba(28,31,38,.12);
  transition: border-color .3s, transform .3s var(--ease-out);
}
.service-card:hover { background: #F9F8F4; }
.service-card:hover::before { width: 100%; }
.service-card:hover::after {
  border-color: rgba(28,31,38,.35);
  transform: translate(3px, 3px);
}

/* Service number — large outlined style */
.service-number {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  line-height: .9;
  letter-spacing: -.06em;
  margin-bottom: 1.6rem;
  /* Outlined / stroke text */
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
  text-stroke: 2px var(--black);
  opacity: .18;
  transition: opacity .3s, -webkit-text-stroke-color .3s;
  user-select: none;
}
.service-card:hover .service-number {
  opacity: .35;
  -webkit-text-stroke-color: var(--yellow-d);
  text-stroke-color: var(--yellow-d);
}

/* Service icon — black square */
.service-icon {
  width: clamp(44px, 6vw, 52px);
  height: clamp(44px, 6vw, 52px);
  background: var(--black);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  color: #fff;
  transition: background .28s, transform .28s var(--ease-spring);
}
.service-icon svg,
.service-icon img { width: 22px; height: 22px; object-fit: contain; color: #fff; }
.service-card:hover .service-icon {
  background: var(--yellow);
  transform: scale(1.08);
}
.service-card:hover .service-icon svg,
.service-card:hover .service-icon img { color: var(--black); }

.service-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  letter-spacing: -.02em;
  color: var(--text-dark);
  margin: 0 0 1.1rem;
  line-height: 1.2;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 0;
  padding: 0;
}
.service-list li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  font-size: clamp(.87rem, 1.8vw, .96rem);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.service-list li::before {
  content: '';
  flex-shrink: 0;
  width: 5px; height: 5px;
  background: var(--black);
  border-radius: 50%;
  margin-top: .65em;
}
.services-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

/* ══════════════════════════════════════
   ABOUT — cream bg, black icons
══════════════════════════════════════ */
.about {
  padding: var(--section-pad) 0;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.about-lines {
  position: absolute;
  right: -5%; top: 10%;
  width: min(55%, 600px);
  height: 80%;
  opacity: .03;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: clamp(2.5rem, 6vw, 4rem); }
  .about-visual { order: -1; }
}
.about-visual {
  position: relative;
  overflow: visible;
  padding-bottom: 2rem;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,31,38,.06) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(.5) brightness(.82);
  transition: filter .5s var(--ease-out), transform .6s var(--ease-out);
  display: block;
}
.about-img-wrap:hover img {
  filter: saturate(.7) brightness(.9);
  transform: scale(1.03);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1rem;
  z-index: 10;
  background: var(--black);
  color: #fff;
  padding: clamp(1.1rem, 3vw, 1.4rem) clamp(1.3rem, 3vw, 1.8rem);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(.9rem, 2.5vw, 1.05rem);
  line-height: 1.2;
  box-shadow: 0 14px 40px rgba(28,31,38,.22), 0 4px 12px rgba(28,31,38,.15);
}
.about-badge span {
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(.68rem, 1.5vw, .75rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .2rem;
  color: var(--yellow-light);
}
@media (max-width: 480px) {
  .about-visual { padding-bottom: 1.5rem; }
  .about-badge { right: 0; bottom: -1rem; }
}
.perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 1.5rem);
  margin-top: 2.5rem;
}
@media (max-width: 420px) { .perks { grid-template-columns: 1fr; } }
.perk {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
/* Perk icon — black square */
.perk-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--black);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .25s, transform .25s var(--ease-spring);
}
.perk-icon svg,
.perk-icon img { width: 18px; height: 18px; object-fit: contain; color: #fff; }
.perk:hover .perk-icon {
  background: var(--yellow);
  transform: scale(1.08);
}
.perk:hover .perk-icon svg,
.perk:hover .perk-icon img { color: var(--black); }
.perk-text strong {
  display: block;
  font-weight: 600;
  font-size: clamp(.88rem, 2vw, .95rem);
  color: var(--text-dark);
  margin-bottom: .18rem;
}
.perk-text p {
  font-size: clamp(.8rem, 1.7vw, .87rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.1rem; }
  .btn { padding: .8rem 1.4rem; }
}
@media print {
  .hero-scroll { display: none; }
  .hero { min-height: auto; padding-top: 2rem; }
}

.editor-styles-wrapper .hero,
.editor-styles-wrapper .stats,
.editor-styles-wrapper .services,
.editor-styles-wrapper .about { margin-block: 0; }
.editor-styles-wrapper .hero { min-height: 620px; }
.editor-styles-wrapper .hero [contenteditable="true"],
.editor-styles-wrapper .stats [contenteditable="true"],
.editor-styles-wrapper .services [contenteditable="true"],
.editor-styles-wrapper .about [contenteditable="true"] { cursor: text; }

.bci-editor-panel-note { margin: 8px 0 12px; font-size: 12px; color: #646970; }
.bci-editor-control-gap { margin-top: 12px; }
.bci-editor-repeat-card {
  border: 1px solid #dcdcde;
  padding: 12px;
  margin-bottom: 12px;
  background: #fff;
}
.bci-editor-repeat-card strong { display: block; margin-bottom: 8px; }
.bci-editor-buttons { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.bci-editor-media-preview {
  width: 100%; height: auto; max-height: 140px;
  object-fit: cover; margin: 8px 0;
  border: 1px solid #dcdcde;
}
.bci-editor-svg-preview {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  color: #fff;
  background: #1C1F26;
  margin-bottom: 8px;
}
.bci-editor-svg-preview svg,
.bci-editor-svg-preview img { max-width: 24px; max-height: 24px; }


/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact {
  padding: var(--section-pad) 0;
  background: var(--surface-1);
  position: relative;
  overflow: hidden;
}
.contact-lines {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .03;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}
.contact-grid > *:first-child {
  position: sticky;
  top: calc(var(--header-h, 80px) + 2rem);
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > *:first-child { position: static; }
}
.contact-info-block {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
/* Contact icon — black square */
.contact-item-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--black);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background .25s, transform .25s var(--ease-spring);
}
.contact-item-icon svg { color: #fff; }
.contact-item:hover .contact-item-icon {
  background: var(--yellow);
  transform: scale(1.06);
}
.contact-item:hover .contact-item-icon svg { color: var(--black); }
.contact-item-text strong {
  display: block;
  font-weight: 600;
  font-size: clamp(.72rem, 1.4vw, .78rem);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: .3rem;
}
.contact-item-text a,
.contact-item-text p {
  font-size: clamp(.88rem, 2vw, .97rem);
  color: var(--text-mid);
  transition: color .2s;
  line-height: 1.6;
}
.contact-item-text a:hover { color: var(--black); }

.contact-form {
  background: var(--surface-card);
  border: 1px solid var(--surface-border);
  border-top: 3px solid var(--black);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(28,31,38,.08);
}
.form-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  letter-spacing: -.02em;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: clamp(.72rem, 1.4vw, .78rem);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: .45rem;
}
.req { color: var(--yellow-d); margin-left: .15rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-1);
  border: 1.5px solid var(--surface-border);
  border-radius: var(--radius);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: clamp(.88rem, 2vw, .95rem);
  padding: .85rem 1.1rem;
  transition: border-color .22s, background .22s, box-shadow .22s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231C1F26' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-color: var(--surface-1);
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: var(--surface-card);
  color: var(--text-dark);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #B5B2AC; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(28,31,38,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  border: 2px dashed var(--surface-border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 4vw, 2.2rem) 1.5rem;
  cursor: pointer;
  transition: border-color .22s, background .22s;
  background: var(--surface-1);
  text-align: center;
}
.file-upload-label:hover,
.file-upload-label.drag-over {
  border-color: var(--black);
  background: rgba(28,31,38,.03);
}
.file-upload-label .upload-icon {
  width: 40px; height: 40px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin: 0 auto;
  transition: background .22s, transform .22s var(--ease-spring);
}
.file-upload-label:hover .upload-icon { background: var(--yellow); transform: scale(1.1); }
.file-upload-label:hover .upload-icon svg { color: var(--black); }
.file-upload-label .upload-text {
  font-size: clamp(.82rem, 1.8vw, .88rem);
  color: var(--text-muted);
  line-height: 1.5;
}
.file-upload-label .upload-text strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: clamp(.88rem, 2vw, .95rem);
  margin-bottom: .15rem;
}
.file-upload-label .upload-types {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.contact input[type="file"] { display: none; }
.file-name-display {
  display: none;
  font-size: .82rem;
  color: var(--black);
  font-weight: 600;
  margin-top: .5rem;
  text-align: center;
  word-break: break-all;
}
.file-name-display.show { display: block; }

.bci-math-captcha-row {
  display: grid;
  grid-template-columns: auto minmax(100px, 1fr);
  align-items: center;
  gap: .8rem;
}
.bci-math-question {
  display: inline-flex;
  align-items: center;
  min-height: 100%;
  color: var(--black);
  font-weight: 600;
  white-space: nowrap;
}
@media (max-width: 420px) { .bci-math-captcha-row { grid-template-columns: 1fr; } }

.form-submit {
  margin-top: 1.6rem;
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: clamp(.88rem, 2vw, .95rem);
}
.form-note {
  font-size: clamp(.72rem, 1.5vw, .77rem);
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
  line-height: 1.6;
}
.form-note a { color: var(--text-dark); text-decoration: underline; }
.bci-contact-response { display: none; }
.bci-contact-response.show { display: block; }
.bci-contact-response.success { color: var(--yellow-d); font-weight: 600; }
.bci-contact-response.error { color: var(--text-dark); }
.bci-contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important; height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ── EDITOR HELPERS ── */
.bci-editor-repeat-card {
  border: 1px solid #ddd;
  padding: 12px;
  margin: 0 0 12px;
  background: #fff;
}
.bci-editor-control-gap { margin-bottom: 16px; }
.bci-editor-svg-preview {
  min-height: 36px;
  padding: 8px;
  border: 1px solid #ddd;
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bci-editor-svg-preview svg { max-width: 34px; max-height: 34px; }
.bci-editor-media-preview {
  max-width: 100%;
  height: auto;
  margin: 8px 0 10px;
}
.bci-editor-panel-note {
  color: #555;
  margin-top: 0;
}
