/* ==========================================================================
   NADIIA — contacts.css
   Hero · quick contact cards · location + map · steps · FAQ · trust ·
   final CTA · compact footer · mobile sticky bar
   ========================================================================== */

/* ---------- hero ---------- */
.ct-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #F1E5D2 0%, #F5EBDB 70%, #FBF6EE 100%);
  padding: 120px clamp(24px, 7vw, 110px) 80px;
}
.ct-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0;
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  will-change: transform, opacity;
}
.ct-hero-light {
  position: absolute;
  top: -12vh; left: -14vw;
  width: 64vw; height: 100vh;
  background: radial-gradient(ellipse at center, rgba(253,250,244,.9) 0%, rgba(253,250,244,0) 65%);
  pointer-events: none;
}
.ct-hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ct-hero-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 6vw, 82px);
  line-height: 1.08;
  color: var(--text-heading);
  text-wrap: balance;
}
.ct-hero-h.is-accent { font-style: italic; color: var(--gold-500); }
.ct-hero p {
  margin: 28px 0 0;
  max-width: 460px;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--ink-500);
}
.ct-hero .btn { margin-top: 42px; }
.secflower.f-ct-hero { left: 3vw; bottom: 9vh; }

/* ---------- quick contact cards ---------- */
.ct-quick {
  position: relative;
  background: var(--cream-100);
  padding: clamp(90px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}
.ct-quick-inner { max-width: 1160px; margin: 0 auto; }
.ct-quick .eyebrow-row { margin-bottom: clamp(48px, 8vh, 80px); }

.ct-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
.ct-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: clamp(26px, 3vw, 38px);
  background: var(--cream-50);
  border: 1px solid var(--cream-400);
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(60,44,32,.05);
  transition: border-color var(--dur-medium) ease, background-color var(--dur-medium) ease;
}
a.ct-card:hover { border-color: var(--gold-300); background: var(--cream-100); }
.ct-card .icn { width: 30px; height: 30px; }
.ct-card-txt { display: flex; flex-direction: column; gap: 6px; }
.ct-card-label {
  font-size: 11px;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--ink-400);
}
.ct-card-value {
  font-size: clamp(19px, 2vw, 24px);
  color: var(--ink-900);
}

/* ---------- location ---------- */
.ct-loc {
  position: relative;
  background: linear-gradient(180deg, #FBF6EE 0%, #F6EEE0 100%);
  padding: clamp(90px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}
.ct-loc-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: clamp(16px, 2.5vw, 40px);
  align-items: center;
}
.ct-loc-info { grid-column: 1 / span 5; }
.ct-loc-info .eyebrow-row { margin-bottom: 28px; }
.ct-loc-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.08;
  color: var(--text-heading);
}
.ct-loc-h em { font-style: italic; color: var(--gold-500); }
.ct-loc-list { display: flex; flex-direction: column; gap: 22px; margin-top: 36px; }
.ct-loc-item { display: flex; gap: 16px; align-items: flex-start; }
.ct-loc-item .icn { width: 22px; height: 22px; margin-top: 2px; }
.ct-loc-item p {
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: var(--ink-700);
}
.ct-loc-info .btn { margin-top: 36px; }

.ct-map-col { grid-column: 7 / span 6; }
.ct-map-frame { position: relative; padding: clamp(10px, 1.4vw, 18px); }
.ct-map-border {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-300);
  border-radius: 8px;
  pointer-events: none;
}
.ct-map {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4 / 3.4;
  box-shadow: 0 34px 80px rgba(60,44,32,.18);
  background: var(--cream-300);
}
/* локальний фолбек лежить під iframe: видно, поки карта не завантажилась */
.ct-map-fallback { position: absolute; inset: 0; display: block; }
.ct-map-fallback img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ct-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.ct-map.is-live iframe { opacity: 1; pointer-events: auto; }
.secflower.f-ct-loc { left: 2vw; bottom: 8vh; }

/* ---------- steps ---------- */
.ct-steps {
  position: relative;
  background: var(--cream-100);
  padding: clamp(90px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}
.ct-steps-inner { max-width: 1060px; margin: 0 auto; }
.ct-steps-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(56px, 9vh, 96px);
}
.ct-h2-wrap { margin-top: 20px; }
.ct-h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: 1.08;
  color: var(--text-heading);
}
.ct-h2 em { font-style: italic; color: var(--gold-500); }

.ct-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(28px, 4vw, 56px);
  position: relative;
}
.ct-steps-line {
  position: absolute;
  top: 26px; left: 16%; right: 16%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300) 20%, var(--gold-300) 80%, transparent);
}
.ct-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.ct-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream-50);
  border: 1px solid var(--gold-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--gold-600);
  box-shadow: 0 8px 22px rgba(60,44,32,.08);
}
.ct-step h3 {
  margin: 22px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.3vw, 28px);
  color: var(--ink-900);
}
.ct-step p {
  margin: 10px 0 0;
  max-width: 260px;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: var(--ink-500);
}

/* ---------- FAQ ---------- */
.ct-faq {
  position: relative;
  background: linear-gradient(180deg, #F6EEE0 0%, #FBF6EE 100%);
  padding: clamp(90px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}
.ct-faq-inner { max-width: 820px; margin: 0 auto; }
.ct-faq-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(48px, 8vh, 80px);
}
.faq-item { border-bottom: 1px solid var(--cream-400); }
.faq-q {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 2.1vw, 25px);
  color: var(--ink-900);
  transition: color .4s ease;
  text-align: left;
}
.faq-q span:first-child { flex: 1; }
.faq-q:hover { color: var(--gold-600); }
.faq-item.is-open .faq-q { color: var(--gold-600); }
.faq-plus {
  position: relative;
  width: 30px; height: 30px;
  flex: none;
  color: var(--gold-400);
  transition: transform .5s var(--ease-lux), color .4s ease;
}
.faq-plus::before, .faq-plus::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
}
.faq-plus::before { width: 14px; height: 1.5px; margin: -0.75px 0 0 -7px; }
.faq-plus::after  { width: 1.5px; height: 14px; margin: -7px 0 0 -0.75px; }
.faq-item.is-open .faq-plus { transform: rotate(45deg); color: var(--gold-600); }

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .55s var(--ease-lux), opacity .45s ease;
}
.faq-item.is-open .faq-a { grid-template-rows: 1fr; opacity: 1; }
.faq-a-clip { overflow: hidden; }
.faq-a p {
  margin: 0;
  padding: 0 44px 26px 0;
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
  color: var(--ink-500);
}
.secflower.f-ct-faq { left: 1.5vw; top: 42%; }

/* ---------- trust (dark) ---------- */
.ct-trust {
  position: relative;
  background: linear-gradient(180deg, var(--brown-700) 0%, var(--brown-600) 100%);
  padding: clamp(90px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}
.ct-trust-ghost {
  position: absolute;
  top: 4vh; right: -2vw;
  font-family: var(--font-display);
  font-size: clamp(140px, 22vw, 360px);
  line-height: 1;
  color: rgba(251, 246, 238, 0.02);
  pointer-events: none;
  user-select: none;
}
.ct-trust-inner { max-width: 1160px; margin: 0 auto; }
.ct-trust .eyebrow { color: var(--gold-300); }
.ct-trust .eyebrow-row { margin-bottom: 28px; }
.ct-trust .eyebrow-row .rule { background: var(--gold-400); opacity: .35; }
.ct-trust-h-wrap { margin-bottom: clamp(56px, 9vh, 90px); }
.ct-trust-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.08;
  color: var(--cream-100);
}
.ct-trust-h em { font-style: italic; color: var(--gold-300); }

.ct-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
}
.ct-trust-card {
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(251,246,238,.14);
  border-radius: 14px;
}
.ct-trust-card .icn { width: 30px; height: 30px; display: block; background: var(--gold-300); }
.ct-trust-card h3 {
  margin: 20px 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 2.5vw, 32px);
  color: var(--cream-100);
}
.ct-trust-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(251,246,238,.6);
}

/* ---------- final CTA ---------- */
.ct-final {
  position: relative;
  background: var(--cream-100);
  padding: clamp(120px, 18vh, 200px) clamp(24px, 7vw, 110px);
  overflow: hidden;
  text-align: center;
}
.ct-final-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ct-final .icn-lotus { width: 30px; height: 30px; margin-bottom: 34px; }
.ct-final-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.1;
  color: var(--text-heading);
  text-wrap: balance;
}
.ct-final-h.is-accent { font-style: italic; color: var(--gold-500); }
.ct-final .btn { margin-top: 46px; }
.ct-final-insta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  text-decoration: none;
  color: var(--gold-600);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold-300);
  padding-bottom: 9px;
  transition: color var(--dur-fast) ease;
}
.ct-final-insta:hover { color: var(--gold-700); }
.ct-final-insta .icn { width: 18px; height: 18px; background: var(--gold-600); }
.secflower.f-ct-final { left: 3vw; bottom: 10vh; }

/* ---------- compact footer ---------- */
.ct-footer {
  background: linear-gradient(180deg, var(--brown-700) 0%, var(--brown-800) 100%);
  color: var(--cream-100);
  padding: clamp(70px, 10vh, 110px) var(--pad-x) 0;
}
.ct-footer-inner { max-width: 1160px; margin: 0 auto; }
.ct-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: clamp(44px, 6vh, 64px);
  border-bottom: 1px solid rgba(251,246,238,.1);
  align-items: start;
}
.ct-footer-brand { display: flex; flex-direction: column; gap: 18px; }
.ct-footer-brand img { width: min(230px, 60vw); height: auto; display: block; }
.ct-footer-brand p {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251,246,238,.45);
}
.ct-footer-col { display: flex; flex-direction: column; gap: 12px; }
.ct-footer-label {
  font-size: 10.5px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold-300);
}
.ct-footer-col p, .ct-footer-col a {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(251,246,238,.75);
  text-decoration: none;
}
.ct-footer-col a:hover { color: var(--cream-50); }
.ct-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 26px 0 30px;
}
.ct-footer-bottom span, .ct-footer-bottom a {
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(251,246,238,.35);
  text-decoration: none;
}

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .ct-cards { grid-template-columns: 1fr; }
  .ct-loc-info, .ct-map-col { grid-column: 1 / -1; }
  .ct-map-col { margin-top: 48px; }
  .ct-steps-grid { grid-template-columns: 1fr; row-gap: 44px; }
  .ct-steps-line { display: none; }
  .ct-trust-grid { grid-template-columns: 1fr; }
}
