/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: #e7e9ec;
  color: #2c2c2c;
  font-family: "Open Sans", Arial, sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== Shell ===== */
.site-shell {
  width: min(1140px, calc(100% - 36px));
  margin: 28px auto 52px;
  background: #ffffff;
  border: 1px solid #d8dadd;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

/* ===== Header ===== */
.topbar {
  height: 92px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px 0 36px;
  border-bottom: 1px solid #e4e5e7;
}

.brand {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.25px;
  line-height: 1;
  white-space: nowrap;
}

.brand-green {
  color: #7aa648;
}

.brand-blue {
  color: #2f5f97;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav a {
  font-size: 14px;
  color: #2f2f2f;
  font-weight: 600;
  line-height: 1;
}

.main-nav a.active {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 374px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(211, 143, 58, 0.35) 0%, rgba(20, 32, 54, 0.16) 26%, rgba(18, 28, 42, 0.16) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 48px 24px;
  text-align: center;
  color: #ffffff;
}

.hero h1 {
  margin: 0 0 18px;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 38px;
  line-height: 1.45;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.28);
}

.hero p {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.24);
}

/* ===== Icon Grid ===== */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 24px 30px 26px;
  background: #ffffff;
}

.icon-card {
  min-height: 188px;
  background: #f7f6f3;
  border: 1px solid #e2dfd9;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 18px 18px 20px;
}

.icon-wrap {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
}

.icon-wrap.snowflake {
  color: #2f6ba8;
}

.icon-wrap.heart {
  color: #de4b63;
}

.icon-wrap.pin {
  color: #4e94ca;
}

.icon-wrap.truck {
  color: #2f68a8;
}

.icon-card h2 {
  margin: 0;
  color: #234f87;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 700;
}

/* ===== Intro Section ===== */
.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 34px 36px 28px;
  background: #eef4f9;
  border-top: 1px solid #e0e6eb;
  border-bottom: 1px solid #e0e6eb;
}

.intro-copy {
  padding-top: 10px;
}

.intro-copy h2 {
  margin: 0;
  color: #2b5c96;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
}

.heading-rule {
  width: 290px;
  height: 2px;
  background: #b8cde0;
  margin: 16px 0 18px;
}

.intro-copy p {
  margin: 0;
  max-width: 420px;
  color: #232323;
  font-size: 18px;
  line-height: 1.78;
  font-weight: 600;
}

.intro-image-wrap {
  display: flex;
  justify-content: flex-end;
}

.intro-image-wrap img {
  width: 100%;
  max-width: 530px;
  height: 298px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #dde2e7;
}

/* ===== Feature Grid ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 36px 36px 30px;
  background: #ffffff;
}

.feature-card {
  background: #f7f6f3;
  border: 1px solid #e1ddd6;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.feature-card img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.feature-body {
  padding: 18px 26px 24px;
}

.feature-body h2 {
  margin: 0;
  color: #2a5a94;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.feature-rule {
  width: 100%;
  height: 2px;
  background: #e1ded8;
  margin: 12px 0 16px;
}

.feature-body p {
  margin: 0;
  color: #222;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

/* ===== CTA ===== */
.cta-band {
  position: relative;
  padding: 46px 36px 58px;
  border-top: 1px solid #d9e3ec;
  background:
    linear-gradient(180deg, #eaf5fd 0%, #dbeefc 100%);
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  left: -5%;
  width: 110%;
  pointer-events: none;
}

.cta-band::before {
  top: 18px;
  height: 160px;
  background:
    radial-gradient(140% 60px at 10% 80%, rgba(125, 178, 225, 0.20) 0 40%, transparent 41%),
    radial-gradient(140% 60px at 35% 30%, rgba(125, 178, 225, 0.18) 0 40%, transparent 41%),
    radial-gradient(140% 60px at 60% 75%, rgba(125, 178, 225, 0.18) 0 40%, transparent 41%),
    radial-gradient(140% 60px at 90% 25%, rgba(125, 178, 225, 0.20) 0 40%, transparent 41%);
  opacity: 0.9;
}

.cta-band::after {
  bottom: -6px;
  height: 145px;
  background:
    radial-gradient(160% 65px at 0% 40%, rgba(102, 166, 224, 0.18) 0 42%, transparent 43%),
    radial-gradient(160% 65px at 28% 82%, rgba(102, 166, 224, 0.15) 0 42%, transparent 43%),
    radial-gradient(160% 65px at 58% 38%, rgba(102, 166, 224, 0.16) 0 42%, transparent 43%),
    radial-gradient(160% 65px at 88% 78%, rgba(102, 166, 224, 0.15) 0 42%, transparent 43%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner h2 {
  margin: 0;
  color: #2a5b95;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}

.cta-rule {
  width: 74%;
  max-width: 760px;
  height: 2px;
  background: #b7d0e5;
  margin: 18px auto 18px;
}

.cta-inner p {
  margin: 0 0 30px;
  color: #2b2b2b;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  height: 66px;
  padding: 0 30px;
  background: linear-gradient(180deg, #2f66a5 0%, #275894 100%);
  border: 1px solid #2b588e;
  border-radius: 4px;
  color: #ffffff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(40, 77, 124, 0.22);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
  .topbar {
    height: auto;
    padding: 20px 24px;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .icon-grid,
  .feature-grid,
  .intro-section {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    width: calc(100% - 20px);
    margin: 10px auto 28px;
  }

  .hero {
    height: 320px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.35;
  }

  .hero p {
    font-size: 16px;
  }

  .icon-grid,
  .intro-section,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .icon-card {
    min-height: 150px;
  }

  .intro-copy p {
    max-width: none;
  }

  .intro-image-wrap {
    justify-content: flex-start;
  }

  .intro-image-wrap img {
    max-width: none;
    height: auto;
  }

  .cta-button {
    min-width: 210px;
    height: 58px;
    font-size: 19px;
  }
}
