:root {
  --bg: #ffffff;
  --tint: #f8fcfc;
  /* matches theme-color */
  --ink: #191919;
  --ink-2: #5e5e5e;
  --brand: #161616;
  --muted: #e6e6e6;
}

/* Base */
* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Muli", sans-serif;
  margin: 0 0 .5rem
}

p {
  margin: .5rem 0 0;
  color: var(--ink-2);
  line-height: 1.6
}

/* Layout helpers */
.container {
  width: min(1160px, 92%);
  margin-inline: auto
}

/* Header */
.site-header {
  background: var(--tint);
  border-bottom: 1px solid var(--muted);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: .4px;
  text-decoration: none;
  color: inherit;
  display: inline-block
}

.brand span {
  color: teal
}

/* unified: teal everywhere */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 6px;
  border: 1px solid #dcdcdc;
  text-decoration: none;
  font-weight: 700;
  color: #1b1b1b;
  background: #fff;
}

.btn:hover {
  background: #f2f2f2
}

.btn-dark {
  background: #161616;
  color: #dbdbdb;
  border-color: #161616
}

.btn-dark:hover {
  background: #000
}

.btn-ghost {
  background: transparent
}

/* Hero */
.hero {
  background: var(--tint);
  padding: 56px 0
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center
}

.hero-copy h1 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15
}

.cta-row {
  display: flex;
  gap: 12px;
  margin-top: 16px
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px
}

/* Sections */
.section {
  padding: 56px 0
}

.section.alt {
  background: #fafafa
}

/* Old grid/card helpers (kept if you reuse later) */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.card {
  padding: 24px;
  border: 1px solid var(--muted);
  border-radius: 8px;
  background: #fff
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px
}

.list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--muted);
  border-radius: 8px;
  background: #fff
}

.list .link {
  text-decoration: none;
  font-weight: 700
}

/* Contact form */
.contact {
  max-width: 720px
}

.contact-form {
  display: grid;
  gap: 12px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--muted);
  font: inherit
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--muted);
  background: #fff;
  padding: 32px 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--ink-2);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 0
}

.site-footer a {
  color: var(--brand);
  text-decoration: none
}

.site-footer a:hover {
  text-decoration: underline
}

.site-footer .disclaimer {
  font-size: .85rem
}

/* ===== Unified info cards (both sections) ===== */
.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 18px;
}

/* Shorter, tidy rectangles */
.info-card {
  flex: 0 1 240px;
  /* consistent tile width; wraps as needed */
  max-width: 240px;
  min-height: 120px;
  /* shorter boxes */
  padding: 14px 16px;
  /* tighter padding */
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
  /* no mid-word breaks */
}

.info-card h3 {
  font-family: "Muli", "Quicksand", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #111;
}

.info-card p {
  margin: 0;
  font-size: .88rem;
  line-height: 1.4;
  color: #555;
}

/* Responsive */
@media (max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .cards {
    grid-template-columns: 1fr
  }
}