:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f8f6ef;
  color: #1e2d2f;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #f8f6ef;
}

a {
  color: inherit;
}

.site-header {
  min-height: 72px;
  padding: 0 clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  background: rgba(255, 252, 245, 0.94);
  border-bottom: 1px solid #ddd4c0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.brand,
.site-nav,
.hero-actions,
.contact-actions {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 11px;
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2f6864;
  color: #fffaf0;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.site-nav {
  gap: 20px;
  color: #526264;
  font-size: 0.94rem;
  font-weight: 800;
}

.site-nav a,
.primary-action,
.secondary-action {
  text-decoration: none;
}

.primary-action,
.secondary-action {
  min-height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 900;
}

.primary-action {
  background: #2f6864;
  color: #ffffff;
}

.secondary-action {
  background: #efe5d2;
  color: #1e2d2f;
}

.hero {
  min-height: calc(100vh - 72px);
  max-height: 880px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 64px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(248, 246, 239, 0.98) 0%, rgba(248, 246, 239, 0.82) 56%, rgba(219, 235, 232, 0.92) 100%),
    radial-gradient(circle at 85% 15%, #ffd17a 0 18%, transparent 19%),
    linear-gradient(160deg, #dbeae8, #f8f6ef);
}

.hero-copy {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #7f5132;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-lede {
  max-width: 650px;
  color: #4e5f61;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  line-height: 1.6;
}

.hero-actions,
.contact-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-art {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 0 22%, #447c78 22% 100%),
    linear-gradient(135deg, transparent 0 50%, #315f5c 51% 100%);
  clip-path: polygon(50% 0, 100% 28%, 100% 100%, 0 100%, 0 28%);
  box-shadow: 0 26px 90px rgba(47, 104, 100, 0.22);
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  background: #fff8e8;
}

.hero-art::before {
  width: 52%;
  height: 26%;
  left: 24%;
  top: 32%;
  border-radius: 8px;
}

.hero-art::after {
  width: 24%;
  height: 38%;
  left: 38%;
  bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #1e2d2f;
}

.window {
  position: absolute;
  width: 18%;
  height: 16%;
  bottom: 21%;
  border-radius: 8px;
  background: #f4c45f;
  z-index: 2;
}

.window-one {
  left: 13%;
}

.window-two {
  right: 13%;
}

.path {
  position: absolute;
  width: 46%;
  height: 30%;
  left: 27%;
  bottom: -24%;
  background: #d2b48c;
  transform: perspective(220px) rotateX(48deg);
  z-index: 3;
}

.notice,
.section-band,
.split-section,
.contact-band {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 64px);
}

.notice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #1e2d2f;
  color: #fffaf0;
}

.notice p {
  max-width: 760px;
  color: #dfe8e4;
  line-height: 1.65;
}

.section-band,
.contact-band {
  background: #fffaf0;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

.card-grid,
.support-list {
  display: grid;
  gap: 16px;
}

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

.card-grid article,
.support-list article {
  border: 1px solid #ddd4c0;
  border-radius: 8px;
  background: #ffffff;
}

.card-grid article {
  min-height: 240px;
  padding: 26px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #2f6864;
}

.support-icon {
  background: #7f5132;
}

.dignity-icon {
  background: #f4c45f;
}

.card-grid p,
.support-list p,
.contact-band p {
  color: #526264;
  line-height: 1.62;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 6vw, 72px);
  background: #eef5f2;
}

.support-list article {
  padding: 24px;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.contact-band > div:first-child {
  max-width: 780px;
}

.site-footer {
  padding: 24px clamp(18px, 5vw, 64px);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #dfe8e4;
  background: #1e2d2f;
}

@media (max-width: 920px) {
  .site-header,
  .notice,
  .contact-band,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .site-header {
    position: static;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .card-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-art {
    min-height: 320px;
    order: -1;
  }
}

@media (max-width: 560px) {
  .primary-action,
  .secondary-action {
    width: 100%;
  }
}
