: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.55;
}

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

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

/* HEADER */
.tour-header{
  height:76px;
  display:flex;
  align-items:center;
  gap:30px;
  padding:0 clamp(18px,5vw,72px);
  border-bottom:1px solid #eee;
  background:#fff;
  position:sticky;
  top:0;
  z-index:50;
}

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

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

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

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

.tour-header nav a:hover{
  color:var(--red);
}

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

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

/* HERO */
.hero{
  position:relative;
  min-height:430px;
  display:flex;
  align-items:center;
  padding:90px clamp(18px,6vw,90px);
  background:url("../images/statue-sunset-cruise-01.jpg") center center / cover no-repeat;
  color:#fff;
}

.overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.35));
}

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

.eyebrow{
  display:inline-block;
  background:var(--red);
  color:#fff;
  border-radius:999px;
  padding:7px 13px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:18px;
}

.hero h1{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(44px,6vw,78px);
  line-height:.96;
  letter-spacing:-.04em;
  margin:0 0 22px;
}

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

/* FEATURED POST */
.featured-post{
  padding:82px clamp(18px,6vw,90px);
  background:#fff;
}

.featured-card{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  max-width:1180px;
  margin:0 auto;
  border:1px solid #eee;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 16px 44px rgba(0,0,0,.08);
  background:#fff;
}

.featured-image{
  min-height:330px;
}

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

.featured-content{
  padding:42px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.featured-label{
  display:inline-block;
  color:var(--red);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.1em;
  margin-bottom:12px;
}

.featured-content h2{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(32px,4vw,46px);
  line-height:1.02;
  letter-spacing:-.03em;
  margin:0 0 18px;
}

.featured-content p{
  color:#555;
  font-size:16px;
  margin:0 0 22px;
}

.read-more{
  color:var(--red);
  font-weight:900;
}

/* BLOG GRID */
.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  padding:0 clamp(18px,6vw,90px) 90px;
  max-width:1320px;
  margin:0 auto;
}

.blog-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
}

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

.blog-content{
  padding:24px;
}

.blog-content span{
  display:inline-block;
  color:var(--red);
  font-size:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.blog-content h3{
  font-family:"Playfair Display",Georgia,serif;
  font-size:25px;
  line-height:1.08;
  letter-spacing:-.02em;
  margin:0 0 12px;
}

.blog-content p{
  color:#666;
  font-size:14px;
  margin:0 0 18px;
}

.blog-content a{
  color:var(--red);
  font-weight:900;
  font-size:14px;
}

/* FOOTER */
.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;
  color:#fff;
}

.site-footer a:hover{
  color:#fff;
}

.site-footer .footer-brand{
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content:flex-start;
  gap:14px;
  color:#fff;
  width:fit-content;
  margin-bottom:18px;
  line-height:1;
}

.site-footer .footer-brand .brand-logo{
  width:76px;
  height:76px;
  object-fit:contain;
  flex:0 0 76px;
}

.site-footer .footer-brand .brand-text{
  display:block;
  font-size:22px;
  font-weight:900;
  line-height:.95;
  letter-spacing:-.6px;
  color:#fff;
  white-space:nowrap;
}

.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;
}

/* RESPONSIVE */
@media(max-width:980px){
  .tour-header nav{
    display:none;
  }

  .featured-card,
  .blog-grid{
    grid-template-columns:1fr;
  }

  .featured-image{
    min-height:260px;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:620px){
  .tour-header{
    height:68px;
  }

  .hero{
    min-height:390px;
    padding:70px 18px;
  }

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

  .featured-post{
    padding:56px 18px;
  }

  .featured-content{
    padding:28px;
  }

  .blog-grid{
    padding:0 18px 70px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    display:block;
  }

  .site-footer .footer-brand{
    gap:12px;
  }

  .site-footer .footer-brand .brand-logo{
    width:64px;
    height:64px;
    flex-basis:64px;
  }

  .site-footer .footer-brand .brand-text{
    font-size:19px;
  }
}