body {
    margin: 0;
    font-family: Georgia, serif;
    color: #3d3d3d;
    background: #f4f1ec;
    line-height: 1.7;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  isolation: isolate;

  height: 90vh;
  min-height: 600px;

  background-image: url("./images/hero.jpg");
  background-size: cover;
  background-position: 70% center;
  background-repeat: no-repeat;

  display: flex;
  align-items: flex-start;
  justify-content: center;

  padding-top: 140px;
}

/* LEFT SOFT OVERLAY */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to right,
    rgba(244,241,236,0.92) 0%,
    rgba(244,241,236,0.75) 35%,
    rgba(244,241,236,0.35) 55%,
    rgba(244,241,236,0.05) 70%,
    rgba(244,241,236,0) 85%
  );
}

/* BOTTOM FADE — GAP FIX */
.hero::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;

  background: linear-gradient(
    to bottom,
    rgba(244,241,236,0) 0%,
    #f4f1ec 100%
  );
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 20px;
}

/* TAG */
.hero-tag {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D50000;
  margin-bottom: 18px;
}

/* HEADLINES */
.hero h1 {
  font-size: 58px;
  line-height: 1.15;
  color: #2f2f2f;
  margin-bottom: 12px;
}

.hero h2 {
  font-size: 40px;
  font-style: italic;
  color: #5f7f6c;
  margin-bottom: 18px;
}

/* DESCRIPTION */
.hero p {
  max-width: 520px;
  font-size: 16px;
  color: #555;
}

/* MICRO TRUST LINE */
.micro-proof {
  font-size: 14px;
  color: #6a7f72;
  margin-top: 14px;
  font-style: italic;
}

/* =========================
   CONTENT
========================= */

.content {
    max-width: 760px;
    margin: auto;
    padding: 60px 20px;
}

.content h3 {
    font-style: italic;
    font-size: 26px;
    margin-top: 60px;
}

/* HERO ke baad first heading gap fix */
.content h3:first-child {
    margin-top: -30px;
}

/* IMAGE MICRO HEADLINE */
.image-note {
    text-align: center;
    font-style: italic;
    color: #6b6b6b;
    margin-bottom: 10px;
}

/* IMAGE */
.content-img {
    width: 80%;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
}

/* =========================
   CTA BUTTON
========================= */

.cta {
    text-align: center;
    margin: 40px 0;
}

.cta a {
    background: #D50000;
    color: white;
    padding: 16px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s ease;
}

.cta a:hover {
    background: #b40000;
    transform: translateY(-2px);
}

/* =========================
   SECOND SECTION
========================= */

.highlight {
    background: #cfd9d4;
}

/* =========================
   FOOTER
========================= */

footer {
    text-align: center;
    font-size: 12px;
    padding: 30px;
    background: #002D00;
    color: #FFA620;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {

  .hero {
    padding-top: 130px;
    background-position: 65% top;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }
}

/* =========================
   MOBILE OPTIMIZED
========================= */

@media (max-width: 768px) {

.hero {
  height: auto !important;
  min-height: auto !important;
  padding-top: 90px;
  padding-bottom: 40px;
  background-position: 65% top;
}

/* reduce bottom fade */
.hero::after {
  height: 40px;
}

.hero::before {
  background: linear-gradient(
    to right,
    rgba(244,241,236,0.95) 0%,
    rgba(244,241,236,0.85) 60%,
    rgba(244,241,236,0) 100%
  );
}

.hero h1 {
  font-size: 32px;
  line-height: 1.25;
}

.hero h2 {
  font-size: 22px;
}

.hero p {
  font-size: 14px;
}

.content {
  padding: 40px 18px;
}

.content h3 {
  font-size: 20px;
  margin-top: 40px;
}

.content h3:first-child {
  margin-top: 0;
}

.content-img {
  width: 100%;
  margin: 25px auto;
}

.cta a {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  font-size: 16px;
  padding: 14px 18px;
}
}
