/* ======================================================
   CONTACTS PREMIUM
   Quiet luxury · Editorial · Material design
====================================================== */

:root {
  /* BRAND */
  --black: #353535;
  --olive: #8DAC99;

  /* LIGHT */
  --bg: #F6F6F5;
  --card: #FFFFFF;
  --text: #353535;
  --muted: #7A7A7A;
  --border: rgba(0,0,0,.08);

  --radius: 20px;
}

html[data-theme="dark"] {
  --bg: #121212;
  --card: #1C1C1C;
  --text: #EDEDED;
  --muted: #A0A0A0;
  --border: rgba(255,255,255,.12);
}

/* BASE */
.contacts-premium {
  background: var(--bg);
  color: var(--text);
  padding-bottom: 120px;
  position: relative;
}

/* SUBTLE GRAIN */
.bg-grain {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* HERO */
.cp-hero {
  padding: 120px 24px 80px;
  position: relative;
  z-index: 1;
}

.cp-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.cp-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.cp-status {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cp-status i {
  width: 7px;
  height: 7px;
  background: var(--olive);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(141,172,153,.18);
}

.cp-theme-toggle {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  padding: 10px 12px;
  cursor: pointer;
}

/* TYPOGRAPHY */
.cp-hero h1 {
  font-size: clamp(44px, 6vw, 84px);
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.cp-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
}

/* CONTENT */
.cp-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 900px) {
  .cp-content {
    grid-template-columns: 1fr;
  }
}

/* CARDS */
.cp-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
}

/* INFO */
.cp-card h2 {
  margin: 0 0 32px;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.cp-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  font-size: 16px;
}

.cp-row span {
  color: var(--muted);
}

.cp-row a {
  color: var(--text);
  text-decoration: none;
}

.cp-row a:hover {
  color: var(--olive);
}

/* FORM */
.cp-form {
  margin-top: 40px;
}

.cp-form input,
.cp-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  margin-bottom: 28px;
  color: var(--text);
  font-size: 16px;
}

.cp-form textarea {
  resize: none;
  min-height: 100px;
}

.cp-form button {
  background: var(--olive);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

/* MAP */
.cp-map {
  overflow: hidden;
  border-radius: var(--radius);
  filter: grayscale(100%) contrast(1.05);
  margin-bottom: 28px;
}

.cp-map iframe {
  width: 100%;
  height: 420px;
  border: none;
}

.cp-route {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
}
