:root{
  --yellow: #ffd84d;
  --yellow-strong:#ffcc00;
  --white:#ffffff;
  --ink:#111111;
  --muted:#4b4b4b;
  --card:#fff9dd;
  --shadow: 0 10px 30px rgba(0,0,0,.12);
  --radius: 18px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, var(--white), #fff7cf);
}

/* Layout helpers */
.container{
  width: min(1100px, 92vw);
  margin: 0 auto;
}
.section{
  padding: 64px 0;
}
.grid{
  display:grid;
  gap: 22px;
}
.grid--intro{
  grid-template-columns: 1.2fr .9fr;
}
@media (max-width: 860px){
  .grid--intro{ grid-template-columns: 1fr; }
}

/* Hero */
.hero{
  position: relative;
  height: 78vh;
  min-height: 520px;
  overflow: hidden;
}
.hero__slider{
  height: 100%;
  background: #222;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.25)),
    linear-gradient(180deg, rgba(255,216,77,.25), rgba(255,255,255,.05));
}
.hero__content{
  position: relative;
  height: 100%;
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 0;
}
.hero__tag{
  display:inline-block;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,216,77,.92);
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: .3px;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.hero__title{
  margin: 14px 0 8px;
  font-size: clamp(34px, 4.2vw, 62px);
  color: var(--white);
  line-height: 1.05;
}
.hero__subtitle{
  margin: 0 0 22px;
  color: rgba(255,255,255,.88);
  max-width: 58ch;
  font-size: 16px;
}

/* Buttons */
.hero__cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  border: 2px solid transparent;
  transition: transform .15s ease, opacity .15s ease;
}
.btn:hover{ transform: translateY(-1px); opacity: .95; }
.btn--primary{
  background: var(--yellow-strong);
  color: #111;
}
.btn--ghost{
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.35);
}

/* Cards / content */
.card{
  background: var(--card);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.section__title{
  margin: 0 0 12px;
  font-size: 26px;
}
.section__text{
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

/* Highlight */
.highlight{
  margin-top: 18px;
  padding: 14px 14px;
  background: rgba(255,216,77,.35);
  border: 1px dashed rgba(0,0,0,.25);
  border-radius: 14px;
}
.highlight strong{ color: #000; }

/* Image card */
.card--image{
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.image-wrap{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.image-wrap img{
  width: 100%;
  height: 340px;
  object-fit: cover;
  display:block;
}
.image-caption{
  margin: 0;
  color: #222;
  font-weight: 800;
}

/* Footer */
.footer{
  padding: 26px 0;
  background: #111;
  color: #fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer__name{
  margin: 0;
  font-weight: 900;
  letter-spacing: .2px;
}
.footer__small{
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
}
.footer__right{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
}
.social{
  color: var(--yellow);
  text-decoration: none;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,216,77,.08);
  border: 1px solid rgba(255,216,77,.25);
}
.social:hover{
  background: rgba(255,216,77,.18);
}
