@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,500;1,300&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f7f6f3;
  --white: #ffffff;
  --ink: #0a0908;
  --ink-soft: #2e2c2a;
  --ink-muted: #6b6760;
  --red: #c0392b;
  --red-2: #e74c3c;
  --border: rgba(15,14,12,0.08);
  --border-hover: rgba(192,57,43,0.3);
}

.contact-section {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  min-height: calc(100vh - 60px);
  padding: 5rem 2rem;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.c-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.c-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}

.c-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  display: block;
}

.c-eyebrow span {
   font-size: 1.5rem ;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

.c-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 5.8rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.05;
}

.c-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.c-head-right { text-align: right; }

.c-org {
  font-size: 0.9rem;
  color: var(--ink-muted);
  font-weight: 400;
  line-height: 1.8;
}

.c-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 1px;
}

.c-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background 0.25s;
  cursor: default;
}

.c-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.c-card:hover { background: #fdfcfc; }
.c-card:hover::before { transform: scaleX(1); }
.c-card:hover::after { opacity: 1; }

.c-card:hover .c-icon {
  border-color: var(--border-hover);
  background: linear-gradient(135deg, rgba(192,57,43,0.08), rgba(231,76,60,0.04));
}

.c-card:hover .c-icon svg {
  stroke: var(--red);
}

.c-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.25s;
  background: var(--bg);
}

.c-icon svg {
  width: 17px;
  height: 17px;
  stroke: var(--ink-muted);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}

.c-label {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  font-weight: 500;
}

.c-text {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.9;
  font-weight: 400;
}

.c-link {
  display: block;
  font-size: 1rem;
  color: var(--ink-soft);
  text-decoration: none;
  line-height: 2;
  font-weight: 400;
  position: relative;
  width: fit-content;
  transition: color 0.2s;
}

.c-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--red), var(--red-2));
  transition: width 0.28s ease;
}

.c-link:hover { color: var(--red); }
.c-link:hover::after { width: 100%; }

.c-num {
  position: absolute;
  bottom: 1.5rem;
  right: 1.75rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(15,14,12,0.04);
  line-height: 1;
  transition: color 0.3s;
  user-select: none;
}

.c-card:hover .c-num { color: rgba(192,57,43,0.06); }

.c-bar {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-bar-text {
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-weight: 400;
}

.c-map-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.c-map-link svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.c-map-link:hover { color: var(--red); }

@media (max-width: 700px) {
  .c-head { grid-template-columns: 1fr; }
  .c-head-right { text-align: left; }
  .c-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 3rem 1rem; }
  .c-eyebrow span { font-size: 0.85rem; letter-spacing: 0.12em; }
  .c-title { font-size: clamp(2rem, 9vw, 3rem); }
  .c-card { padding: 1.25rem; }
  .c-num { font-size: 2.4rem; right: 1rem; bottom: 1rem; }
  .c-bar { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}