@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --dark:        #fef5f2;
  --dark-border: #f0d5cc;
  --light:       #fdf6f6;
  --white:       #ffffff;
  --text:        #1a0404;
  --muted:       #6b4444;
  --border:      #e8d0d0;
  --accent:      #cc1111;
  --accent-dk:   #3d0000;
  --accent-lt:   #fdeaea;
  --max:         960px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }

/* ── Alternating section backgrounds ── */
.bg-light { background-color: var(--light); }
.bg-white  { background-color: var(--white); }

/* ── Responsive content wrapper ── */
.page {
  width: min(var(--max), 100% - 3rem);
  margin: 0 auto;
}

/* ──────────────────────────
   HEADER
────────────────────────── */
.site-header {
  padding: 3.5rem 1.5rem 3rem;
  text-align: center;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}

.header-logo {
  height: 148px;
  width: auto;
  display: block;
  margin: 0 auto 1.5rem;
}

.header-company-name {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.header-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ──────────────────────────
   PREMISE STRIP
────────────────────────── */
.premise-section {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.premise-tagline {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.premise-statement {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 1.75rem;
  line-height: 1.65;
}

.company-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 2.5rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.company-facts span {
  white-space: nowrap;
  padding: 0.2rem 0;
}

.company-facts strong {
  color: var(--text);
  font-weight: 600;
}

/* ──────────────────────────
   DIVISION SECTIONS
────────────────────────── */
.division-section {
  padding: 2.75rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.division-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
}

.division-accent-bar {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.1rem;
}

.division-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 720px;
}

.division-link {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.division-link a {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.15s;
}

.division-link a:hover {
  color: var(--accent-dk);
  text-decoration: underline;
}

.division-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 1rem;
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  letter-spacing: 0.02em;
}

.division-more-link:hover {
  background: var(--accent);
  color: #ffffff;
  text-decoration: none;
}

/* ──────────────────────────
   COMING SOON BADGE
────────────────────────── */
.coming-soon-badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.7rem;
  background: var(--accent-lt);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ──────────────────────────
   CONTACT SECTION
────────────────────────── */
.contact-section {
  padding: 2.75rem 1.5rem 3rem;
}

.contact-section-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.35rem;
}

.contact-section-bar {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 1.75rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-company-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-address {
  font-style: normal;
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.05rem;
}

.contact-text {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.4;
}

.contact-text strong {
  display: block;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.1rem;
}

.contact-text a {
  color: var(--accent);
}

.contact-text a:hover { text-decoration: underline; }

/* Map styled like Neuroglia — full-height iframe in a rounded container */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  height: 280px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ──────────────────────────
   LEGAL BAR
────────────────────────── */
.legal-bar {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--light);
}

.legal-bar a { color: var(--muted); transition: color 0.15s; }
.legal-bar a:hover { color: var(--accent); }

/* ──────────────────────────
   INNER PAGE HEADER
────────────────────────── */
.inner-header {
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-border);
}

.inner-header a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.15s;
}

.inner-header a:hover { color: var(--accent); }

.inner-logo-wrap { margin-top: 1.25rem; }
.inner-logo-wrap img { height: 44px; width: auto; }

/* ──────────────────────────
   RESPONSIVE: TABLET
────────────────────────── */
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .map-container { height: 240px; }
}

/* ──────────────────────────
   RESPONSIVE: MOBILE
────────────────────────── */
@media (max-width: 600px) {
  .site-header { padding: 2rem 1rem 1.75rem; }
  .header-company-name { font-size: 1.6rem; color: var(--text); }
  .header-logo { height: 90px; }
  .page { width: 100%; padding: 0 1rem; }
  .premise-section,
  .division-section,
  .contact-section { padding-left: 1rem; padding-right: 1rem; }
  .company-facts { gap: 0.25rem 1.5rem; }
  .map-container { height: 200px; }
  .legal-bar { flex-direction: column; align-items: flex-start; gap: 0.35rem; padding: 1.25rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; }
}
