/* ================================================================
   dxbprivatemodels.com — style.css
   CSS namespace: icd-
   Theme: Deep Celestial Heaven — midnight sapphire ocean, electric
          periwinkle accents, powder-ice highlights. Stars & silk.
   Fonts: Cormorant Garamond (display) + Plus Jakarta Sans (body)
   Mobile-first responsive. No frameworks.
   ================================================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap");

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Backgrounds — deep bordeaux noir */
  --icd-bg: #0a0505;
  --icd-surface: #140b0b;
  --icd-raised: #1d1212;
  --icd-card: #261818;
  --icd-glass: rgba(10, 5, 5, 0.94);

  /* Borders — muted copper/rose gold */
  --icd-border: rgba(194, 153, 138, 0.12);
  --icd-border-mid: rgba(194, 153, 138, 0.28);
  --icd-border-bright: rgba(194, 153, 138, 0.5);

  /* Text — warm silk */
  --icd-tx: #f8f2f0;
  --icd-tx-mid: #c5a9a4;
  --icd-tx-soft: #8a6a65;
  --icd-tx-dim: #4d3532;

  /* Accent — liquid rose gold */
  --icd-accent: #c2998a;
  --icd-accent-light: #e5ccc2;
  --icd-accent-dim: #7a5042;
  --icd-accent-glow: rgba(194, 153, 138, 0.16);
  --icd-accent-pulse: rgba(194, 153, 138, 0.32);

  /* Sky-ice highlights — pearlescent pink */
  --icd-ice: #f2e4e1;
  --icd-ice-dim: rgba(242, 228, 225, 0.08);

  /* Channels */
  --icd-wa: #25D366;
  --icd-tg: #229ED9;
  --icd-amber: #e6b347;

  /* Typography (рекомендую эти шрифты для этой схемы) */
  --icd-ff-display: "Cormorant Garamond", serif;
  --icd-ff-body: "Plus Jakarta Sans", sans-serif;

  /* Radii */
  --icd-r-xs: 3px;
  --icd-r-sm: 8px;
  --icd-r-md: 14px;
  --icd-r-lg: 24px;
  --icd-r-xl: 40px;

  /* Transitions */
  --icd-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --icd-t-fast: 180ms;
  --icd-t-med: 320ms;
  --icd-t-slow: 520ms;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 15px;
  scroll-behavior: smooth;
}
body {
  background: var(--icd-bg);
  color: var(--icd-tx);
  font-family: var(--icd-ff-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
button {
  font: inherit;
  border: none;
  cursor: pointer;
}
dialog {
  border: none;
  background: none;
  padding: 0;
  max-width: none;
  max-height: none;
}

strong {
  font-weight: 700;
  color: var(--icd-ice);
}

/* Screen-reader only */
.icd-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
:focus-visible {
  outline: 2px solid var(--icd-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Layout ─────────────────────────────────────────────────── */
.icd-wrap {
  width: min(1440px, 100% - 2rem);
  margin-inline: auto;
}

.contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: min(1440px, 100% - 2rem);
  margin: auto;
}

@media (min-width: 768px) {
  .contacts {
    flex-direction: row;
  }
}

/* ── Shared atmosphere helpers ──────────────────────────────── */

/* Glowing horizontal rule */
.icd-glow-rule {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    var(--icd-accent-dim) 20%,
    var(--icd-accent) 50%,
    var(--icd-accent-dim) 80%,
    transparent 100%
  );
}

/* Eyebrow label */
.icd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--icd-ff-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--icd-accent);
}
.icd-eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--icd-accent);
  flex-shrink: 0;
}

/* Display heading */
.icd-display {
  font-family: var(--icd-ff-display);
  font-size: clamp(2.2rem, 3vw, 7rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--icd-tx);
  letter-spacing: 0.01em;
}
.icd-display em {
  font-style: italic;
  color: var(--icd-accent-light);
}

/* Buttons */
.icd-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  font-family: var(--icd-ff-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--icd-r-xs);
  transition: all var(--icd-t-med) var(--icd-ease);
  cursor: pointer;
}
.icd-btn--primary {
  background: var(--icd-accent);
  color: #fff;
  border-color: var(--icd-accent);
  box-shadow: 0 0 20px var(--icd-accent-pulse);
}
.icd-btn--primary:hover {
  background: var(--icd-accent-light);
  border-color: var(--icd-accent-light);
  box-shadow: 0 0 36px var(--icd-accent-pulse);
  transform: translateY(-1px);
}
.icd-btn--ghost {
  background: transparent;
  color: var(--icd-tx);
  border-color: var(--icd-border-mid);
}
.icd-btn--ghost:hover {
  border-color: var(--icd-accent);
  color: var(--icd-accent-light);
  background: var(--icd-accent-glow);
}

/* Pill badge */
.icd-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.7rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}
.icd-pill--blue {
  background: var(--icd-accent-glow);
  border: 1px solid var(--icd-border-mid);
  color: var(--icd-accent-light);
}
.icd-pill--white {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
}
.icd-pill--amber {
  background: rgba(255, 184, 77, 0.1);
  border: 1px solid rgba(255, 184, 77, 0.3);
  color: var(--icd-amber);
}

/* ================================================================
   HEADER
   ================================================================ */
.icd-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--icd-glass);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--icd-border);
}
.icd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.icd-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.icd-logo__wordmark {
  font-family: var(--icd-ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--icd-tx);
}
.icd-logo__wordmark span {
  color: var(--icd-accent);
}
.icd-logo__tagline {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--icd-tx-soft);
}

.icd-nav {
  display: none;
  gap: 2.5rem;
}
.icd-nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--icd-tx-mid);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--icd-t-fast);
}
.icd-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--icd-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--icd-t-med) var(--icd-ease);
}
.icd-nav a:hover {
  color: var(--icd-accent-light);
}
.icd-nav a:hover::after {
  transform: scaleX(1);
}

.icd-header-cta {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 1.1rem;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--icd-accent);
  border: 1px solid var(--icd-border-mid);
  border-radius: var(--icd-r-xs);
  background: var(--icd-accent-glow);
  transition: all var(--icd-t-fast);
}
.icd-header-cta:hover {
  background: var(--icd-accent-pulse);
  box-shadow: 0 0 18px var(--icd-accent-glow);
}
.icd-header-cta svg {
  flex-shrink: 0;
}

/* ================================================================
   HERO
   ================================================================ */
.icd-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Deep space background — layered radial gradients */
.icd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 15%,
      rgba(91, 143, 255, 0.09) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 50% 40% at 10% 80%,
      rgba(30, 70, 160, 0.07) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 40% 30% at 50% 110%,
      rgba(91, 143, 255, 0.06) 0%,
      transparent 50%
    );
}

/* Star-field dot-grid */
.icd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(200, 220, 255, 0.5) 1px, transparent 1px),
    radial-gradient(circle, rgba(91, 143, 255, 0.28) 1px, transparent 1px);
  background-size:
    42px 42px,
    107px 107px;
  background-position:
    0 0,
    21px 21px;
  opacity: 0.38;
}

/* Vertical aurora lines */
.icd-hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.icd-hero-aurora span {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--icd-border) 20%,
    var(--icd-border-mid) 50%,
    var(--icd-border) 80%,
    transparent 100%
  );
}
.icd-hero-aurora span:nth-child(1) {
  left: 16.6%;
}
.icd-hero-aurora span:nth-child(2) {
  left: 33.3%;
}
.icd-hero-aurora span:nth-child(3) {
  left: 50%;
}
.icd-hero-aurora span:nth-child(4) {
  left: 66.6%;
}
.icd-hero-aurora span:nth-child(5) {
  left: 83.3%;
}

.icd-hero__content {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .icd-hero__content {
            display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
  }
}

.icd-hero__eyebrow {
  margin-bottom: 1.4rem;
  animation: icdRise 0.6s var(--icd-ease) both;
}
.icd-hero__title {
  width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
  font-family: var(--icd-ff-display);
  font-size: clamp(2.8rem, 10vw, 7.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--icd-tx);
  margin-bottom: 1.6rem;
  animation: icdRise 0.65s 0.08s var(--icd-ease) both;
}
.icd-hero__title em {
  font-style: italic;
  color: var(--icd-accent-light);
}
.icd-hero__title strong {
  font-weight: 600;
  color: var(--icd-ice);
  display: block;
}

.icd-hero__lead {
  max-width: 78ch;
  font-size: 1.3rem;
  color: var(--icd-tx-mid);
  margin-bottom: 2.5rem;
  animation: icdRise 0.65s 0.18s var(--icd-ease) both;
}
.icd-hero__actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  animation: icdRise 0.65s 0.28s var(--icd-ease) both;
}
.icd-hero__stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--icd-border);
  animation: icdRise 0.65s 0.38s var(--icd-ease) both;
}
.icd-hero__stat-n {
  font-family: var(--icd-ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--icd-accent-light);
  line-height: 1;
}
.icd-hero__stat-l {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--icd-tx-soft);
  margin-top: 4px;
}

/* ================================================================
   ABOUT
   ================================================================ */

@media (min-width: 768px) {
  .icd-about__h2 {
  justify-self: center;
  justify-content: center;
  width: 100%;
  display: flex;
  gap: 10px;
}
}

.icd-about {
  padding: 6rem 0;
  background: var(--icd-surface);
  border-top: 1px solid var(--icd-border);
  border-bottom: 1px solid var(--icd-border);
}
.icd-about__grid {
  display: grid;
  /* grid-template-columns: 1fr; */
  gap: 3rem;
}
.icd-about__eyebrow {
  margin-bottom: 0.9rem;
}
.icd-about__body {
  color: var(--icd-tx-mid);
  font-size: 1.3rem;
  margin-top: 1.25rem;
}
.icd-about__body + .icd-about__body {
  margin-top: 0.7rem;
}

.icd-about__features {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2.25rem;
}
.icd-about__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  color: var(--icd-tx-mid);
  line-height: 1.6;
}
.icd-about__feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--icd-accent);
  box-shadow: 0 0 7px var(--icd-accent);
  margin-top: 0.55em;
}

.icd-about__panel {
  background: var(--icd-raised);
  border: 1px solid var(--icd-border-mid);
  border-radius: var(--icd-r-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.icd-about__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--icd-accent) 40%,
    var(--icd-accent-light) 60%,
    transparent
  );
}
.icd-about__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 65% 50% at 50% 0%,
    rgba(91, 143, 255, 0.05) 0%,
    transparent 60%
  );
}
.icd-about__quote {
  font-family: var(--icd-ff-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--icd-ice);
  line-height: 1.7;
  padding-left: 1.3rem;
  border-left: 2px solid var(--icd-accent);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.icd-about__promises {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  z-index: 1;
}
.icd-about__promise {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--icd-tx-mid);
}
.icd-about__promise svg {
  color: var(--icd-accent);
  flex-shrink: 0;
}

/* ================================================================
   PROFILES SECTION
   ================================================================ */
.icd-profiles {
  padding: 5.5rem 0 7rem;
}
.icd-profiles__head {
  margin-bottom: 2.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.icd-profiles__subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icd-tx-soft);
}
.icd-profiles__rule {
  height: 1px;
  background: var(--icd-border);
  margin-bottom: 0.5rem;
}

/* ── Grid — mobile-first ─────────────────────────────────── */
.icd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* ── Profile card ────────────────────────────────────────── */
.icd-profile-card {
  background: var(--icd-card);
  border: 1px solid var(--icd-border);
  border-radius: var(--icd-r-md);
  overflow: hidden;
  transition:
    transform var(--icd-t-med) var(--icd-ease),
    border-color var(--icd-t-fast),
    box-shadow var(--icd-t-med) var(--icd-ease);
  cursor: pointer;
}
.icd-profile-card:hover {
  transform: translateY(-8px);
  border-color: var(--icd-accent-dim);
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.5),
    0 0 40px var(--icd-accent-glow);
}
.icd-profile-card--vip {
  border-color: var(--icd-accent-dim);
  box-shadow: 0 0 0 1px var(--icd-accent-dim);
}

/* Card figure */
.icd-card-figure {
  position: relative;
  margin: 0;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--icd-raised);
}
.icd-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--icd-t-slow) var(--icd-ease);
}
.icd-profile-card:hover .icd-card-photo {
  transform: scale(1.06);
}

.icd-card-empty {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--icd-tx-dim);
}

/* Photo overlay gradient */
.icd-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 11, 24, 0.88) 0%,
    rgba(7, 11, 24, 0.25) 45%,
    transparent 65%
  );
}

/* Badges top-left */
.icd-card-badges {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}
.icd-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.18rem 0.6rem;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
}
.icd-badge--vip {
  background: var(--icd-accent);
  color: #fff;
  box-shadow: 0 0 12px rgba(91, 143, 255, 0.5);
}
.icd-badge--verified {
  background: rgba(7, 11, 24, 0.75);
  border: 1px solid var(--icd-border-mid);
  color: var(--icd-accent-light);
}

/* Name tag at bottom of photo */
.icd-card-nametag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 0.85rem 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.icd-card-name {
  font-family: var(--icd-ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  line-height: 1;
}
.icd-card-age {
  font-size: 11px;
  color: rgba(200, 220, 255, 0.7);
  line-height: 1;
}

/* Card body */
.icd-card-body {
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid var(--icd-border);
}
.icd-card-meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 11.5px;
  color: var(--icd-tx-mid);
  margin-bottom: 0.3rem;
}
.icd-card-meta:last-child {
  margin-bottom: 0;
}
.icd-card-meta svg {
  color: var(--icd-accent-dim);
  flex-shrink: 0;
}

/* Card footer */
.icd-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
}
.icd-card-price-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icd-tx-dim);
}
.icd-card-price-value {
  font-family: var(--icd-ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--icd-accent-light);
}
.icd-card-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--icd-tx-soft);
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--icd-border);
  border-radius: 100px;
  transition: all var(--icd-t-fast);
}
.icd-profile-card:hover .icd-card-open-btn {
  border-color: var(--icd-accent-dim);
  color: var(--icd-accent-light);
}

/* ================================================================
   SERVICES SECTION
   ================================================================ */
.icd-seo {
  padding: 6rem;
  display: grid;
  grid-template-rows: 1.1fr 1fr;
}

.icd-seo h2 {
  color: var(--icd-accent);
  margin-bottom: 0.7rem;
}


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.icd-services {
  padding: 6rem 0;
  background: var(--icd-surface);
  border-top: 1px solid var(--icd-border);
  border-bottom: 1px solid var(--icd-border);
}
.icd-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
.icd-service-card {
  background: var(--icd-raised);
  border: 1px solid var(--icd-border);
  border-radius: var(--icd-r-md);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--icd-t-fast),
    box-shadow var(--icd-t-med);
}
.icd-service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--icd-accent),
    transparent
  );
  opacity: 0;
  transition: opacity var(--icd-t-med);
}
.icd-service-card:hover {
  border-color: var(--icd-border-mid);
}
.icd-service-card:hover::before {
  opacity: 1;
}
.icd-service-card__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icd-accent-glow);
  border: 1px solid var(--icd-border-mid);
  border-radius: var(--icd-r-sm);
  color: var(--icd-accent);
  margin-bottom: 1.25rem;
}
.icd-service-card__title {
  font-family: var(--icd-ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--icd-tx);
  margin-bottom: 0.5rem;
}
.icd-service-card__body {
  font-size: 0.85rem;
  color: var(--icd-tx-mid);
  line-height: 1.75;
}

/* ================================================================
   CONTACT SECTION
   ================================================================ */
.icd-contact {
  padding: 6rem 0 7rem;
}
.icd-contact__grid {
  display: grid;
  /* grid-template-columns: 1fr; */
  gap: 3rem;
  margin-top: 2.5rem;
}
.icd-contact__lead {
  color: var(--icd-tx-mid);
  font-size: 1.3rem;
  margin-bottom: 2.25rem;
}

/* Contact channel rows */
.icd-contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.icd-contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--icd-raised);
  border: 1px solid var(--icd-border);
  border-radius: var(--icd-r-sm);
  color: var(--icd-tx-mid);
  transition: all var(--icd-t-fast);
}
.icd-contact-channel:hover {
  border-color: var(--icd-border-mid);
  color: var(--icd-tx);
  box-shadow: 0 0 24px var(--icd-accent-glow);
}
.icd-contact-channel__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icd-accent-glow);
  border: 1px solid var(--icd-border-mid);
  border-radius: var(--icd-r-sm);
  color: var(--icd-accent);
}
.icd-contact-channel__label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--icd-tx);
}
.icd-contact-channel__sub {
  font-size: 0.78rem;
  color: var(--icd-tx-soft);
  margin-top: 1px;
}

/* Booking panel */
.icd-booking-panel {
  background: var(--icd-raised);
  border: 1px solid var(--icd-border-mid);
  border-radius: var(--icd-r-lg);
  padding: 2.75rem 2.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.icd-booking-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    var(--icd-accent) 35%,
    var(--icd-accent-light) 65%,
    transparent
  );
}
.icd-booking-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse 70% 55% at 50% 0%,
    rgba(91, 143, 255, 0.06) 0%,
    transparent 60%
  );
}
.icd-booking-panel__mark {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--icd-accent);
  margin-bottom: 1.1rem;
  position: relative;
  z-index: 1;
}
.icd-booking-panel__city {
  font-family: var(--icd-ff-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--icd-tx);
  position: relative;
  z-index: 1;
  margin-bottom: 0.4rem;
}
.icd-booking-panel__sub {
  font-size: 0.83rem;
  color: var(--icd-tx-mid);
  margin-bottom: 2.25rem;
  position: relative;
  z-index: 1;
}
.icd-booking-panel__btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ── Contact link / blur ────────────────────────────────── */
.icd-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--icd-ff-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--icd-r-xs);
  border: none;
  cursor: pointer;
  transition:
    filter var(--icd-t-fast),
    transform var(--icd-t-fast),
    box-shadow var(--icd-t-fast);
}
.icd-contact-link:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.icd-contact-link--wa {
  background: var(--icd-wa);
  color: #fff;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.22);
}
.icd-contact-link--tg {
  background: var(--icd-tg);
  color: #fff;
  box-shadow: 0 0 18px rgba(34, 158, 217, 0.22);
}
/* Smaller variant used on cards / inside modals */
.icd-contact-link--sm {
  padding: 0.55rem 1.1rem;
  font-size: 11px;
}

/* Blur effect on placeholder text */
.icd-contact-blur {
  display: inline-block;
  filter: blur(4px);
  user-select: none;
  transition: filter 0.28s ease;
}
.icd-contact-link:hover .icd-contact-blur,
.icd-contact-channel:hover .icd-contact-blur {
  filter: blur(2px);
}
.icd-contact-blur.icd-unblurred {
  filter: none !important;
}

/* ================================================================
   FOOTER
   ================================================================ */
.icd-footer {
  background: var(--icd-surface);
  border-top: 1px solid var(--icd-border);
  padding: 2.5rem 0;
}
.icd-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
.icd-footer__brand {
  font-family: var(--icd-ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--icd-accent-light);
}
.icd-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  justify-content: center;
}
.icd-footer-nav a {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icd-tx-soft);
  transition: color var(--icd-t-fast);
}
.icd-footer-nav a:hover {
  color: var(--icd-accent-light);
}
.icd-footer__copy {
  font-size: 11px;
  color: var(--icd-tx-dim);
  text-align: center;
}

/* ================================================================
   MODAL / BACKDROP
   ================================================================ */
.icd-backdrop {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(4, 7, 18, 0.82);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}
.icd-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.icd-modal {
  display: none;
  width: min(980px, 100%);
  background: var(--icd-card);
  border: 1px solid var(--icd-border-mid);
  border-radius: var(--icd-r-lg);
  overflow: hidden;
  position: relative;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.65),
    0 0 60px rgba(91, 143, 255, 0.06);
}
.icd-modal.is-visible {
  display: block;
}

/* Top accent line */
.icd-modal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 5;
  background: linear-gradient(
    to right,
    transparent,
    var(--icd-accent) 30%,
    var(--icd-accent-light) 70%,
    transparent
  );
}

/* Close button */
.icd-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 20;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--icd-raised);
  border: 1px solid var(--icd-border-mid);
  border-radius: 50%;
  color: var(--icd-tx-mid);
  transition: all var(--icd-t-fast);
}
.icd-modal-close:hover {
  border-color: var(--icd-accent);
  color: var(--icd-accent-light);
  box-shadow: 0 0 16px var(--icd-accent-glow);
}

/* ── Modal two-column layout ─────────────────────────────── */
.icd-modal-grid {
  display: flex;
  flex-direction: column;
}

/* Gallery pane */
.icd-modal-gallery {
  background: var(--icd-raised);
  border-bottom: 1px solid var(--icd-border);
}
.icd-gallery-main {
  margin: 0;
}
.icd-gallery-main-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.icd-gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.65rem;
  border-top: 1px solid var(--icd-border);
}
.icd-gallery-thumb {
  width: 58px;
  flex-shrink: 0;
  margin: 0;
  border-radius: var(--icd-r-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.4;
  border: 2px solid transparent;
  transition:
    opacity var(--icd-t-fast),
    border-color var(--icd-t-fast);
}
.icd-gallery-thumb:hover {
  opacity: 0.72;
}
.icd-gallery-thumb--active {
  opacity: 1 !important;
  border-color: var(--icd-accent);
}
.icd-gallery-thumb img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* Detail pane */
.icd-modal-detail {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  overflow-y: auto;
}
.icd-modal-name {
  font-family: var(--icd-ff-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--icd-tx);
}
.icd-modal-tagline {
  font-size: 0.82rem;
  color: var(--icd-tx-soft);
  margin-top: 0.3rem;
  letter-spacing: 0.06em;
}

/* Section label inside modal */
.icd-modal-section-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--icd-accent);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.icd-modal-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--icd-border);
}

/* Stats grid */
.icd-modal-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.icd-stat-cell {
  background: var(--icd-raised);
  border: 1px solid var(--icd-border);
  border-radius: var(--icd-r-sm);
  padding: 0.7rem 0.8rem;
}
.icd-stat-cell--wide {
  grid-column: span 3;
}
.icd-stat-cell dt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--icd-tx-dim);
  margin-bottom: 0.2rem;
}
.icd-stat-cell dd {
  font-size: 0.87rem;
  color: var(--icd-tx);
}

/* Rates */
.icd-modal-rates {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.icd-rate-cell {
  flex: 1;
  min-width: 76px;
  text-align: center;
  background: var(--icd-raised);
  border: 1px solid var(--icd-border);
  border-radius: var(--icd-r-sm);
  padding: 0.65rem 0.55rem;
}
.icd-rate-cell dt {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--icd-tx-dim);
  margin-bottom: 0.25rem;
}
.icd-rate-cell dd {
  font-family: var(--icd-ff-display);
  font-size: 1.05rem;
  color: var(--icd-accent-light);
  font-weight: 400;
}
.icd-rate-cell__currency {
  font-size: 0.68em;
  color: var(--icd-tx-soft);
  margin-left: 2px;
}

/* Services tags */
.icd-services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.icd-service-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.7rem;
  font-size: 11px;
  background: var(--icd-raised);
  border: 1px solid var(--icd-border);
  border-radius: 100px;
  color: var(--icd-tx-mid);
  transition: all var(--icd-t-fast);
}
.icd-service-tag:hover {
  border-color: var(--icd-accent-dim);
  color: var(--icd-accent-light);
}
.icd-service-tag svg {
  color: var(--icd-accent-dim);
}

/* Bio */
.icd-modal-bio {
  font-size: 0.85rem;
  color: var(--icd-tx-mid);
  line-height: 1.8;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 0.4rem;
}
.icd-modal-bio h1,
.icd-modal-bio h2,
.icd-modal-bio h3 {
  font-family: var(--icd-ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--icd-ice);
  margin-bottom: 0.5rem;
}
.icd-modal-bio p {
  margin-bottom: 0.55rem;
}
.icd-modal-bio p:last-child {
  margin-bottom: 0;
}

/* Modal contact buttons */
.icd-modal-contacts {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

/* ================================================================
   REVIEWS
   ================================================================ */
.icd-reviews-section {
  padding: 2rem;
  border-top: 1px solid var(--icd-border);
}
.icd-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  max-height: 320px;
  overflow-y: auto;
  padding-right: 0.35rem;
}
.icd-review {
  background: var(--icd-raised);
  border: 1px solid var(--icd-border);
  border-radius: var(--icd-r-sm);
  padding: 1.1rem;
}
.icd-review__header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.icd-review__author {
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--icd-tx);
}
.icd-review__stars {
  display: flex;
  gap: 2px;
  color: var(--icd-amber);
}
.icd-review__date {
  font-size: 10px;
  color: var(--icd-tx-dim);
  margin-left: auto;
}
.icd-review__body {
  font-size: 0.84rem;
  color: var(--icd-tx-mid);
  line-height: 1.72;
  border-left: 2px solid var(--icd-accent-dim);
  padding-left: 0.85rem;
}
.icd-review__body p {
  margin-bottom: 0.4rem;
}
.icd-review__body p:last-child {
  margin-bottom: 0;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (min-width: 480px) {
  .icd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 720px) {
  .icd-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .icd-about__grid {
    grid-template-columns: 1fr 1fr;
  }
  .icd-services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  /* .icd-contact__grid { grid-template-columns: 1.1fr 1fr; } */
  .icd-footer__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 840px) {
  .icd-nav {
    display: flex;
  }
  /* Modal: two-column when wide enough */
  .icd-modal-grid {
    flex-direction: row;
  }
  .icd-modal-gallery {
    width: 340px;
    flex-shrink: 0;
    border-bottom: none;
    border-right: 1px solid var(--icd-border);
  }
  .icd-gallery-main-img {
    aspect-ratio: 3/4;
  }
  .icd-modal-detail {
    max-height: 80vh;
    flex: 1;
  }
}

@media (min-width: 1100px) {
  .icd-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1400px) {
  .icd-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--icd-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--icd-accent-dim);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--icd-accent);
}

/* ================================================================
   ANIMATIONS
   ================================================================ */
@keyframes icdRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
