:root {
  --o: #f47b20;
  --d: #17110d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--d);
}

a {
  text-decoration: none;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 9;
  background: #fffefcf2;
  backdrop-filter: blur(15px);
  border-bottom: 1px solid #eee;
}

.wrap {
  max-width: 1180px;
  margin: auto;
  padding: 0 22px;
}

.navin {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 58px;
}

.links a {
  margin-left: 24px;
  color: #322720;
  font-weight: 800;
}

.links a:hover {
  color: var(--o);
}

.btn {
  display: inline-block;
  background: var(--o);
  color: #fff;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 900;
}

.nav-contact {
  padding: 9px 15px;
  font-size: .9rem;
}

.hero {
  min-height: 720px;
  background: radial-gradient(circle at 85% 20%, #ffd5b0, transparent 28%), linear-gradient(120deg, #fff, #fff6ee);
  display: flex;
  align-items: center;
}

.grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(54px, 7vw, 100px);
  line-height: .88;
  letter-spacing: -6px;
  margin: 15px 0;
}

.orange {
  color: var(--o);
}

.poster {
  width: 100%;
  border: 10px solid white;
  border-radius: 34px;
  box-shadow: 0 35px 80px #4d260d30;
  transform: rotate(2deg);
}

.section {
  padding: 90px 0;
  scroll-margin-top: 88px;
}

.dark {
  background: var(--d);
  color: white;
}

.k {
  color: #c6530b;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px;
}

.h2 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 950;
  letter-spacing: -3px;
  margin: 8px 0 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

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

.card {
  border: 1px solid #eee;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 35px #00000009;
  transition: .25s;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px #0002;
}

.art {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.body {
  padding: 20px;
}

.pill {
  background: #fff0e3;
  color: #b84d08;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 900;
}

.muted {
  color: #746961;
  line-height: 1.7;
}

.news {
  border-left: 5px solid var(--o);
  background: #fff8f2;
  padding: 25px;
  border-radius: 18px;
  height: 100%;
}

.news-card {
  background: #fff;
  border: 1px solid #f1e7df;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(24, 19, 15, 0.06);
  height: 100%;
}

.news-thumb-link {
  display: block;
}

.news-thumb {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-copy {
  padding: 20px;
}

.news-copy h3 {
  margin: 10px 0;
  font-size: 1.25rem;
}

.news-copy h3 a {
  color: var(--d);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.gallery img {
  width: 100%;
  border-radius: 16px;
}

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

.footer {
  background: #fffaf7;
  border-top: 1px solid #eee;
  padding: 30px 0 40px;
}

.footer-grid {
  grid-template-columns: 1.3fr .7fr;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 12px;
}

.social-links a,
.social-links-dark a {
  color: var(--o);
  font-weight: 700;
}

.social-links-dark a {
  color: #fff;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.news-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  align-items: center;
}

.news-detail-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(31, 20, 14, 0.15);
}

.news-detail-body {
  background: #fff8f2;
  border: 1px solid #f1e5d7;
  border-radius: 24px;
  padding: 28px;
}

@media (max-width: 900px) {
  .grid,
  .cards,
  .cards-news,
  .footer-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 60px 0;
  }

  .navin {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 0;
  }

  .links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .links a {
    margin-left: 0;
  }
}
