:root {
  --bg: #f4efe5;
  --surface: rgba(255, 252, 246, 0.8);
  --surface-strong: #fffaf2;
  --text: #1d2433;
  --muted: #5f6778;
  --accent: #0f766e;
  --accent-strong: #134e4a;
  --accent-soft: #cdeee5;
  --highlight: #ffb84d;
  --border: rgba(29, 36, 51, 0.1);
  --shadow: 0 24px 60px rgba(22, 31, 45, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 184, 77, 0.3), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f1e7 0%, #f4efe5 100%);
}

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

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.policy-link,
.button {
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.policy-link {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.55);
}

.policy-link:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(22, 31, 45, 0.1);
}

.hero,
.subpage-header {
  padding: 20px 0 10px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 28px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.83rem;
}

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.1rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  max-width: 12ch;
}

.lead,
.feature-card p,
.contact-card p,
.policy-block p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-copy .lead {
  max-width: 58ch;
  margin: 20px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--border);
}

.hero-card,
.feature-card,
.contact-card,
.policy-card {
  background: var(--surface);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 28px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(255, 184, 77, 0.18);
}

.card-badge {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 20px;
}

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

.info-list li {
  display: grid;
  gap: 6px;
}

.info-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.info-list strong {
  font-size: 1.08rem;
}

.section {
  padding: 72px 0 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 28px;
  border-radius: 24px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent-soft), rgba(255, 184, 77, 0.25));
  font-size: 1.6rem;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.contact-section {
  padding-bottom: 24px;
}

.contact-card,
.policy-card {
  padding: 32px;
  border-radius: 28px;
}

.email-link {
  display: inline-block;
  margin: 6px 0 14px;
  color: var(--accent-strong);
  font-weight: 700;
  word-break: break-word;
}

.address {
  margin-bottom: 0;
}

.subpage-copy {
  display: grid;
  gap: 14px;
  padding-bottom: 10px;
}

.policy-card {
  display: grid;
  gap: 26px;
}

.policy-block h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 10px;
}

@media (max-width: 920px) {
  .hero-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
  }
}

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

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

  .hero-card,
  .feature-card,
  .contact-card,
  .policy-card {
    padding: 22px;
  }

  .button,
  .policy-link {
    width: 100%;
  }
}
