:root {
  --bg: #f5f1e8;
  --bg-deep: #e3ddd0;
  --paper: rgba(255, 252, 246, 0.82);
  --paper-strong: #fffdf8;
  --text: #171717;
  --muted: #5f5b53;
  --line: rgba(23, 23, 23, 0.12);
  --accent: #0f6a63;
  --accent-strong: #0b4d48;
  --warm: #c96c3b;
  --shadow: 0 24px 60px rgba(44, 34, 18, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(201, 108, 59, 0.18), transparent 32%),
    radial-gradient(circle at 85% 20%, rgba(15, 106, 99, 0.16), transparent 28%),
    linear-gradient(180deg, var(--bg) 0%, #f9f6ef 100%);
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.hero,
.section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 24px;
  padding: 36px;
}

.hero::after,
.section::after {
  content: "";
  position: absolute;
  inset: auto auto -40px -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 108, 59, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(3.2rem, 8vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover {
  background: var(--accent-strong);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.hero-panel {
  display: grid;
  gap: 14px;
}

.panel-grid,
.cards {
  display: grid;
  gap: 14px;
}

.panel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel-card,
.info-card,
.statement-card,
.contact-card,
.about-quote {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper-strong);
}

.panel-card {
  padding: 18px;
}

.panel-card-large {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(15, 106, 99, 0.06), rgba(255, 253, 248, 1)),
    var(--paper-strong);
}

.panel-label,
.metric {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--warm);
  font-weight: 700;
}

.panel-card h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.panel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.metric {
  font-size: 1.2rem;
}

.section {
  margin-top: 20px;
  padding: 28px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 18px;
}

.section-head h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.statement-card,
.contact-card {
  padding: 22px;
}

.info-card h3,
.statement-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.info-card p,
.statement-card p,
.contact-card p,
.about-copy,
.about-quote p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.section-accent {
  background:
    radial-gradient(circle at right top, rgba(15, 106, 99, 0.12), transparent 30%),
    var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.about-copy {
  font-size: 1rem;
}

.about-quote {
  padding: 24px;
}

.about-quote p {
  font-family: "Instrument Serif", serif;
  font-size: 1.8rem;
  line-height: 1.08;
  color: var(--text);
}

.contact-section {
  margin-bottom: 20px;
}

.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.contact-card p {
  max-width: 720px;
}

@media (max-width: 960px) {
  .hero,
  .about-layout,
  .three-up,
  .two-up {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 20px;
  }

  .hero,
  .section {
    padding: 20px;
    border-radius: 22px;
  }

  h1 {
    font-size: 3.3rem;
  }
}
