/* ── contact.css — Europa Contact Page ── */

/* === CONTACT PAGE === */
/* Page-specific styles. Prefix: ct-. Map: PROJECT_MAP.md · Rules: CLAUDE.md */
.page-contact {
  background: #080202;
  color: var(--cream, #EFE2CF);
}

.page-contact main {
  background: #080202;
}

/* ════════════════════════════════════════════
   HERO — unified with Menu hero system
════════════════════════════════════════════ */
.ct-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: stretch;
  background: #080202;
  overflow: hidden;
}

/* Google Maps panel — matches Menu hero photo inset (22% from left) */
.ct-hero-map {
  position: absolute;
  inset: 80px 0 0 22%;
  overflow: hidden;
  background: #08090f;
}

/* Dark cinematic filter: invert → near-black bg, warm gold roads */
.ct-map-iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  filter: invert(0.92) hue-rotate(195deg) saturate(0.28) brightness(0.82);
}

/* Directions button — sits in bottom-right corner of the map */
.ct-map-directions {
  position: absolute;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.62rem 1.15rem;
  background: linear-gradient(145deg, #5c1220 0%, #7a1a2e 100%);
  border: 1px solid rgba(180,60,80,0.3);
  border-radius: 6px;
  color: #EFE2CF;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(80,10,20,0.55);
  transition: background 200ms, box-shadow 200ms;
  pointer-events: auto;
}

.ct-map-directions:hover {
  background: linear-gradient(145deg, #6e1528 0%, #8c1f35 100%);
  box-shadow: 0 6px 24px rgba(80,10,20,0.7);
}

/* Gradient overlay: blends left edge into hero content panel */
.ct-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      #080202 0%,
      #080202 4%,
      rgba(8,2,2,0.85) 18%,
      rgba(8,2,2,0.35) 40%,
      rgba(8,2,2,0.05) 65%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      rgba(8,2,2,0.72) 0%,
      rgba(8,2,2,0.12) 15%,
      transparent 35%
    ),
    linear-gradient(
      to top,
      rgba(8,2,2,0.88) 0%,
      rgba(8,2,2,0.18) 18%,
      transparent 36%
    );
}

/* Kept for gradient blend, but photo itself is gone */
.ct-hero-photo-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #080202 0%,
    #080202 6%,
    rgba(8,2,2,0.88) 22%,
    rgba(8,2,2,0.45) 48%,
    rgba(8,2,2,0.08) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.ct-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  /* Don't block iframe clicks in the transparent area to the right of the text panel */
  pointer-events: none;
}

/* Text block: 52% wide — matches Menu hero; padding matches Menu hero */
.ct-hero-content {
  width: min(52%, 560px);
  /* было (до унификации «как у главной»); вернуть для отката:
  padding: clamp(10rem, 20vh, 16rem) 0 clamp(3rem, 8vh, 6rem); */
  padding: clamp(10rem, 20vh, 16rem) 0 1.5rem;   /* как у главной */
  /* Restore interactivity for actual content (buttons, links) */
  pointer-events: auto;
}

.ct-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(201,169,110,0.65);
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}

/* H1 — 10% reduction from original clamp(3.5rem, 7vw, 6.5rem) */
.ct-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.15rem, 6.3vw, 5.85rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--cream, #EFE2CF);
  margin: 0 0 1.4rem;
  text-transform: uppercase;
}

.ct-hero-rule {
  display: block;
  width: 4rem;
  height: 1px;
  background: linear-gradient(to right, #c9a96e, rgba(201,169,110,0.2));
  margin-bottom: 1.4rem;
}

.ct-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.93rem, 1.5vw, 1.05rem);
  font-style: normal;
  font-weight: 400;
  color: rgba(239,226,207,0.58);
  line-height: 1.74;
  max-width: none;     /* заполняет колонку 560px — текст не зажат */
  margin: 0 0 2rem;
}

.ct-hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.ct-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ════════════════════════════════════════════
   INFO STRIP
════════════════════════════════════════════ */
.ct-info {
  background: #080202;
  border-top: 1px solid rgba(201,169,110,0.08);
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.ct-info-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  /* Full bleed — matches hero width */
  width: 100%;
  max-width: none;
}

.ct-info-divider {
  display: block;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,169,110,0.22) 15%, rgba(201,169,110,0.22) 85%, transparent);
  margin: 0 clamp(2rem, 4vw, 4rem);
}

.ct-info-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ct-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.2rem;
  color: rgba(201,169,110,0.7);
}

.ct-info-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.ct-info-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c9a96e;
  margin: 0 0 1.1rem;
}

/* Address — serif for warmth */
.ct-info-primary {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--cream, #EFE2CF);
  margin: 0 0 0.3rem;
  line-height: 1.25;
}

.ct-info-secondary {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(239,226,207,0.42);
  margin: 0;
  line-height: 1.5;
}

/* Push link to bottom of column */
.ct-info-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,169,110,0.6);
  text-decoration: none;
  margin-top: auto;
  padding-top: 1.6rem;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 200ms ease, border-color 200ms ease;
}

.ct-info-link:hover {
  color: #c9a96e;
  border-bottom-color: rgba(201,169,110,0.4);
}

/* Hours — dot-leader connects day to time */
.ct-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: min(100%, 15rem);
}

.ct-hours-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
}

/* dot-leader line between day and time */
.ct-hours-list li::after {
  display: none;
}

.ct-hours-list li span:first-child {
  color: rgba(239,226,207,0.5);
  white-space: nowrap;
}

/* dot track */
.ct-hours-list li span.ct-hours-dots {
  border-bottom: 1px dotted rgba(201,169,110,0.2);
  margin-bottom: 3px;
}

.ct-hours-list li span:last-child {
  color: var(--cream, #EFE2CF);
  white-space: nowrap;
  text-align: right;
}

/* Phone — larger, more presence */
.ct-info-phone {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream, #EFE2CF);
  text-decoration: none;
  line-height: 1.2;
  transition: color 200ms ease;
}

.ct-info-phone:hover {
  color: #c9a96e;
}

.ct-info-email {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(239,226,207,0.42);
  text-decoration: none;
  margin-top: 0.35rem;
  transition: color 200ms ease;
}

.ct-info-email:hover {
  color: rgba(201,169,110,0.8);
}

/* Push social icons to bottom of column */
.ct-info-social {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1.6rem;
}

.ct-info-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,0.28);
  color: rgba(201,169,110,0.58);
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease;
}

.ct-info-social-icon:hover {
  color: #c9a96e;
  border-color: rgba(201,169,110,0.65);
  background: rgba(201,169,110,0.06);
}



/* ════════════════════════════════════════════
   MAP SECTION  (Find Us — full-width embed)
════════════════════════════════════════════ */


/* .ct-map-embed {
  position: relative;
  width: 100%;
  height: clamp(340px, 52vh, 600px);
  overflow: hidden;
}

.ct-map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  /* Same cinematic filter as hero map */
  /* filter: invert(0.92) hue-rotate(195deg) saturate(0.28) brightness(0.82); 
} */


/* ════════════════════════════════════════════
   MOBILE  (≤ 767px)
════════════════════════════════════════════ */
/* === MOBILE: CONTACT === */
@media (max-width: 767px) {

  /* Hero — map card stacks below text */
  .ct-hero {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .ct-hero-map {
    position: static;
    order: 2;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 2.5rem;
    height: 44vh;
    border-radius: 22px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(201,169,110,0.12);
  }

  .ct-map-overlay {
    background:
      linear-gradient(to bottom, rgba(8,2,2,0.45) 0%, transparent 20%),
      linear-gradient(to top, rgba(8,2,2,0.6) 0%, transparent 22%);
  }

  .ct-hero-photo-vignette { display: none; }

  .ct-hero-inner {
    order: 1;
    position: relative;
    z-index: 2;
    align-items: flex-start;
    padding: 0 1.5rem;
    width: 100%;
  }

  .ct-hero-content {
    width: 100%;
    min-height: 42svh;
    padding: 5rem 0 2rem;
  }

  .ct-eyebrow { display: none; }

  .ct-hero-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 7vw;
  }

  .ct-hero-sub br { display: none; }
  .ct-hero-sub {
    font-size: 1.12rem;
    line-height: 1.72;
    max-width: 18rem;
    margin-bottom: 7vw;
    color: rgba(239,226,207,0.82);
    text-shadow: 0 1px 12px rgba(0,0,0,0.65), 0 2px 28px rgba(0,0,0,0.45);
  }

  .ct-hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    width: min(272px, calc(100vw - 2.5rem));
  }

  .ct-hero-actions .button {
    width: 100%;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    padding: 1.1rem 1.5rem;
    border-radius: 10px;
    text-align: center;
    justify-content: center;
  }

  .ct-hero-actions .button-primary {
    background: linear-gradient(160deg, #5a1120 0%, #7a1d30 55%, #5a1120 100%);
    border: 1px solid rgba(122,29,48,0.55);
    box-shadow: 0 6px 28px rgba(70,12,24,0.58), 0 1px 6px rgba(0,0,0,0.32);
  }

  .ct-hero-actions .button-outline,
  .ct-call-btn {
    background: rgba(8,2,2,0.28);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(239,226,207,0.24);
    color: rgba(239,226,207,0.74);
  }

  /* Info strip — stacked cards */
  .ct-info {
    padding: 2.5rem 0;
    border-top: none;
  }

  .ct-info .ct-info-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    /* width:auto — иначе к width:100% (выше в этом файле) прибавляются боковые
       поля и страница уезжает вбок */
    width: auto;
    margin: 0 1.5rem;
    border: 1px solid rgba(201,169,110,0.12);
    border-radius: 20px;
    overflow: hidden;
  }

  .ct-info-col {
    padding: 1.75rem 1.5rem;
    border-bottom: 1px solid rgba(201,169,110,0.08);
    background: rgba(46,8,16,0.18);
    align-items: flex-start;
    text-align: left;
  }

  .ct-info-col:last-child { border-bottom: none; }
  .ct-info-divider { display: none; }

  .ct-info-link,
  .ct-info-social {
    margin-top: 1rem;
    padding-top: 0;
  }

  /* Map section — mobile */
  .ct-map-section {
    padding: 0 1.5rem 3rem;
  }

  .ct-map-embed {
    height: 42vh;
    border-radius: 20px;
  }

}


/* ════════════════════════════════════════════
   Адрес и телефон — тем же шрифтом, что в футерах
   остальных страниц (Inter). У Cormorant цифры
   старого стиля: 4-3-1-8 «пляшут» по высоте.
════════════════════════════════════════════ */
.ct-info-primary {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

.ct-info-phone {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
