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

:root {
  --charcoal:  #232528;
  --blue:      #138CEC;
  --red:       #AC3931;
  --navy:      #2A2A72;
  --mint:      #B8EBE1;
  --lavender:  #E8E6F2;
  --purple:    #B594C4;
  --slate:     #565173;

  --text:      #232528;
  --muted:     #565173;
  --bg:        #f7f7fb;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Header ── */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 3rem;
  background: var(--navy);
}

.logo {
  font-family: 'Lora', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo span {
  color: var(--mint);
}

.header-link {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.header-link:hover {
  color: #fff;
}

/* ── Main / Hero ── */
.main {
  flex: 1;
  display: flex;
  align-items: stretch;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

/* subtle left-side lavender wash */
.hero-decoration {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--lavender) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* ── Left: content ── */
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 3rem 5rem 4rem;
  gap: 1.5rem;
}

.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--blue);
}

.body-text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
  max-width: 38ch;
}

/* contact block */
.contact-block {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-top: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--lavender);
  border-left: 3px solid var(--blue);
  border-radius: 10px;
  max-width: 360px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  stroke: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  margin-bottom: 0.2rem;
}

.contact-email {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}

.contact-email:hover {
  color: var(--blue);
  text-decoration: underline;
}

/* ── Right: decorative graphic ── */
.hero-graphic {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.ring-1 {
  width: 340px;
  height: 340px;
  border-color: rgba(42, 42, 114, 0.10);
}

.ring-2 {
  width: 240px;
  height: 240px;
  border-color: rgba(19, 140, 236, 0.18);
  background: rgba(19, 140, 236, 0.03);
}

.ring-3 {
  width: 140px;
  height: 140px;
  border-color: rgba(19, 140, 236, 0.25);
  background: rgba(184, 235, 225, 0.25);
}

.graphic-badge {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: var(--navy);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(42, 42, 114, 0.3);
}

.graphic-badge svg {
  width: 34px;
  height: 34px;
  stroke: #fff;
}

/* ── Footer ── */
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  background: var(--charcoal);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-weight: 600;
}

.footer a:hover {
  color: #fff;
}

.footer-tagline {
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .header {
    padding: 1.25rem 1.5rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-graphic {
    display: none;
  }

  .hero-content {
    padding: 3.5rem 1.5rem;
  }

  .contact-block {
    max-width: 100%;
  }

  .footer {
    flex-direction: column;
    gap: 0.375rem;
    text-align: center;
    padding: 1rem 1.5rem;
  }
}
