/* ── CONTACTS PAGE ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { overflow-x: hidden; background: #F7F4EB; }

/* ── HERO ── */
.cnt-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: #000;
}
.cnt-hero-bg {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('/assets/uploads/178.jpg');
  background-size: cover; background-position: center;
  opacity: 0.66;
}
.cnt-hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.28); }
.cnt-hero-content {
  position: relative; z-index: 2; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 36px;
}
.cnt-hero-title {
  font-family: 'Quattrocento', serif;
  font-size: 80px; font-weight: 400;
  text-transform: uppercase; letter-spacing: 6px;
  color: #fff; opacity: 0; transform: translateY(30px);
}
.cnt-hero-divider { width: 60px; height: 1px; background: rgba(255,255,255,0.5); opacity: 0; }
.cnt-hero-tabs { display: flex; gap: 48px; justify-content: center; opacity: 0; transform: translateY(16px); }
.cnt-tab {
  font-family: 'Quattrocento', serif; font-size: 16px; letter-spacing: 3px;
  text-transform: uppercase; color: #fff; text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.55); padding-bottom: 5px;
  opacity: 0.85; transition: opacity 0.2s, border-color 0.2s;
}
.cnt-tab:hover { opacity: 1; border-color: #fff; }

/* ── WRITE US — 50/50 ── */
.cnt-write { background: #F7F4EB; display: flex; align-items: stretch; flex-wrap: wrap; min-height: 100vh; }
.cnt-write-info {
  width: 50%; padding: 10vh 5vw 10vh 8vw;
  display: flex; flex-direction: column; justify-content: center;
}
.cnt-write-form {
  width: 50%; padding: 10vh 8vw 10vh 4vw;
  display: flex; flex-direction: column; justify-content: center;
}

/* Heading + line pattern */
.cnt-gh-wrap { display: flex; align-items: center; gap: 24px; margin-bottom: 24px; }
.cnt-gh-wrap h2 {
  font-family: 'Quattrocento', serif; font-size: 52px; font-weight: 400;
  color: var(--brown); line-height: 1.1; flex-shrink: 0;
}
.cnt-gh-line { flex: 1; height: 1px; background: var(--brown); opacity: 0.22; }

.cnt-deco-icon { color: var(--gold); font-size: 24px; margin-bottom: 20px; opacity: 0.75; }
.cnt-write-info p {
  font-family: 'Quattrocento', serif; font-size: 16px; line-height: 1.78; color: var(--brown-body);
}

/* ── INDICATIONS — 50/50 ── */
.cnt-indications { display: flex; align-items: stretch; flex-wrap: wrap; min-height: 100vh; }
.cnt-map { width: 50%; position: relative; min-height: 400px; }
.cnt-map iframe { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; border: none; display: block; }

/* Address column */
.cnt-address {
  width: 50%; background: #F7F4EB;
  padding: 8vh 7vw 8vh 5vw;
  display: flex; flex-direction: column; justify-content: center;
  border-left: 1px solid rgba(165,147,80,0.15);
}
.cnt-address h3 {
  font-family: 'Quattrocento', serif; font-size: 46px; font-weight: 400;
  color: var(--brown); line-height: 1.15; margin-bottom: 18px;
}
.cnt-address .cnt-maps-note {
  font-family: 'Quattrocento', serif; font-size: 16px; line-height: 1.78;
  color: var(--brown-body); margin-bottom: 0;
}

/* Divider */
.cnt-sep {
  width: 100%; height: 1px; margin: 22px 0;
  background: linear-gradient(to right, var(--gold) 0%, rgba(165,147,80,0.12) 100%);
}

/* Icon rows */
.cnt-row {
  display: flex; align-items: flex-start; gap: 14px;
  font-family: 'Quattrocento', serif; font-size: 16px;
  line-height: 1.7; color: var(--brown-body); margin-bottom: 10px;
}
.cnt-row:last-child { margin-bottom: 0; }
.cnt-row i {
  color: var(--gold); font-size: 13px; width: 16px; text-align: center;
  flex-shrink: 0; margin-top: 3px;
}
.cnt-row strong { color: var(--brown); font-weight: 700; }
.cnt-row a { color: var(--gold); text-decoration: none; }
.cnt-row a:hover { text-decoration: underline; }
.cnt-firm { font-weight: 700; color: var(--brown); font-size: 16px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cnt-hero-title { font-size: 52px; letter-spacing: 4px; }
  .cnt-write-info { width: 100%; padding: 60px 6vw 32px; }
  .cnt-write-form { width: 100%; padding: 0 6vw 60px; }
  .cnt-gh-wrap h2 { font-size: 38px; }
  .cnt-map { width: 100%; min-height: 60vw; }
  .cnt-address { width: 100%; padding: 48px 6vw 60px; border-left: none; border-top: 1px solid rgba(165,147,80,0.15); }
  .cnt-address h3 { font-size: 36px; }
}
