:root{
  --red:#ef2f24;
  --red-dark:#ba1913;
  --cream:#fff7eb;
  --cream-2:#f7efe3;
  --black:#050505;
  --text:#171717;
  --muted:#666;
  --white:#fff;
  --shadow:0 22px 55px rgba(0,0,0,.14);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

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

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

.blog-hero{
  position:relative;
  min-height:520px;
  background:
    linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.28)),
    url('../images/statue-of-liberty-cruises-01.jpg') center/cover no-repeat;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:110px 22px 80px;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.15);
}

.blog-nav{
  position:absolute;
  top:0;
  left:0;
  right:0;
  z-index:5;
  display:flex;
  align-items:center;
  gap:30px;
  padding:22px clamp(18px,5vw,72px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  line-height:1;
  color:#fff;
}

.brand img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.brand span{
  font-size:14px;
  text-align:left;
}

.nav-links{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:24px;
  font-size:13px;
  font-weight:800;
}

.book-btn{
  background:var(--red);
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  box-shadow:0 10px 25px rgba(239,47,36,.25);
}

.book-btn:hover{
  background:var(--red-dark);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:920px;
}

.eyebrow{
  display:inline-block;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:11px;
  font-weight:900;
  color:#ffbd31;
  margin-bottom:12px;
}

.eyebrow.red{
  color:var(--red);
}

.blog-hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(42px,6vw,76px);
  line-height:.95;
  letter-spacing:-.04em;
  margin:0 0 18px;
}

.blog-hero p{
  max-width:720px;
  margin:0 auto;
  font-size:18px;
  color:#f1f1f1;
}

.post-meta{
  display:flex;
  justify-content:center;
  gap:26px;
  padding:16px 18px;
  border-bottom:1px solid #eee;
  font-size:12px;
  font-weight:700;
  color:#777;
}

.post-meta a{
  color:#111;
}

.blog-main{
  background:#fff;
}

.intro-section{
  max-width:860px;
  margin:0 auto;
  padding:64px 18px 70px;
}

.intro-section img{
  width:100%;
  height:360px;
  object-fit:cover;
  border-radius:18px;
  box-shadow:var(--shadow);
  margin-bottom:34px;
}

.intro-section h2,
.content-wrap h2,
.final-cta h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(34px,4vw,52px);
  line-height:1.03;
  letter-spacing:-.035em;
  margin:0 0 18px;
}

.intro-section p,
.content-wrap p,
.final-cta p{
  color:#444;
  font-size:16px;
}

.blog-section,
.cream-section{
  padding:80px 18px;
}

.cream-section{
  background:var(--cream-2);
}

.content-wrap{
  max-width:980px;
  margin:0 auto;
}

.feature-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:18px;
  padding:28px;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  margin-top:28px;
}

.number{
  display:inline-block;
  color:var(--red);
  font-weight:900;
  font-size:20px;
  margin-bottom:8px;
}

.feature-card h3,
.info-card h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:25px;
  line-height:1.1;
  margin:0 0 12px;
}

.cards{
  display:grid;
  gap:22px;
  margin-top:30px;
}

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

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

.info-card{
  background:#fff;
  border:1px solid #e7e0d5;
  border-radius:16px;
  padding:26px;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
}

.info-card p{
  font-size:14px;
  color:#555;
}

.cta-band{
  margin-top:28px;
  background:linear-gradient(90deg,var(--red),#ff7b20);
  color:#fff;
  border-radius:18px;
  padding:24px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  box-shadow:0 18px 38px rgba(239,47,36,.22);
}

.cta-band span{
  display:block;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:900;
  margin-bottom:4px;
}

.cta-band h3{
  margin:0;
  font-size:22px;
}

.cta-band a{
  background:#fff;
  color:var(--red);
  padding:11px 18px;
  border-radius:999px;
  font-weight:900;
  white-space:nowrap;
}

.final-cta{
  max-width:860px;
  margin:0 auto;
  text-align:center;
  padding:90px 18px 110px;
}

.final-cta a{
  display:inline-block;
  margin-top:18px;
  background:var(--red);
  color:#fff;
  padding:14px 24px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 12px 28px rgba(239,47,36,.25);
}

.final-cta a:hover{
  background:var(--red-dark);
}

.site-footer{
  background:#050505;
  color:#fff;
  padding:64px clamp(18px,6vw,90px) 26px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1fr;
  gap:34px;
}

.site-footer p,
.site-footer a{
  display:block;
  color:#aaa;
  font-size:14px;
  margin:8px 0;
}

.site-footer h4{
  margin:0 0 12px;
}

.footer-brand{
  color:#fff;
  margin-bottom:14px;
}

.brand-logo{
  width:48px;
  height:48px;
  object-fit:contain;
  flex-shrink:0;
}

.brand-text{
  font-size:14px;
  letter-spacing:.2px;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:42px;
  padding-top:22px;
  color:#777;
  font-size:12px;
}

@media(max-width:900px){
  .nav-links{
    display:none;
  }

  .post-meta{
    flex-wrap:wrap;
  }

  .cards.two,
  .cards.three,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .cta-band{
    display:block;
  }

  .cta-band a{
    display:inline-block;
    margin-top:16px;
  }

  .footer-bottom{
    display:block;
  }
}

@media(max-width:560px){
  .blog-hero{
    min-height:520px;
    padding:105px 18px 70px;
  }

  .blog-hero h1{
    font-size:40px;
  }

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

  .intro-section img{
    height:250px;
  }

  .blog-section,
  .cream-section{
    padding:64px 18px;
  }

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