.pellet-page {
  background: #fffaf3;
}

.pellet-site-header {
  background: rgba(28, 18, 11, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.pellet-hero {
  padding: 138px 0 88px;
  color: var(--cream);
  background:
    radial-gradient(circle at 78% 22%, rgba(200, 151, 82, 0.23), transparent 30%),
    linear-gradient(120deg, #1c120b 0%, #3a2416 100%);
}

.pellet-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 38px;
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.88rem;
}

.pellet-breadcrumb a:hover {
  color: var(--gold);
}

.pellet-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.pellet-hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.98;
}

.pellet-hero-copy > p {
  max-width: 700px;
  color: rgba(247, 239, 228, 0.82);
  font-size: 1.08rem;
}

.pellet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 18px;
}

.pellet-call {
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

.pellet-call:hover {
  color: var(--wood-950);
  background: var(--cream);
}

.pellet-hero-copy .pellet-note {
  max-width: 650px;
  color: rgba(247, 239, 228, 0.62);
  font-size: 0.86rem;
}

.pellet-hero-visual {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: rgba(255, 250, 243, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.pellet-hero-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  object-fit: cover;
  background: #ead9c3;
}

.pellet-location {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 20px 8px 6px;
}

.pellet-location strong {
  color: var(--gold);
}

.pellet-location span {
  color: rgba(247, 239, 228, 0.72);
  font-size: 0.9rem;
}

.pellet-section {
  padding: 100px 0;
}

.pellet-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
  gap: 68px;
}

.pellet-main-copy h2,
.pellet-contact-card h2,
.pellet-faq h2 {
  margin: 16px 0 22px;
  color: var(--wood-950);
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
  line-height: 1.08;
}

.pellet-main-copy > p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}

.pellet-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.pellet-benefits > div,
.pellet-faq-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(45, 26, 12, 0.07);
}

.pellet-benefits strong,
.pellet-benefits span {
  display: block;
}

.pellet-benefits strong {
  margin-bottom: 8px;
  color: var(--wood-950);
}

.pellet-benefits span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pellet-contact-card {
  position: sticky;
  top: 122px;
  padding: 34px;
  border-radius: 28px;
  color: var(--cream);
  background: var(--wood-950);
  box-shadow: var(--shadow);
}

.pellet-contact-card h2 {
  color: var(--cream);
  font-size: 2.35rem;
}

.pellet-contact-card > p {
  margin-bottom: 24px;
  color: rgba(247, 239, 228, 0.7);
}

.pellet-contact-card > a {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  transition: 0.2s ease;
}

.pellet-contact-card > a:hover {
  border-color: rgba(200, 151, 82, 0.5);
  background: rgba(200, 151, 82, 0.12);
}

.pellet-contact-card a strong {
  color: var(--gold);
}

.pellet-contact-card a span {
  color: rgba(247, 239, 228, 0.75);
  font-size: 0.9rem;
}

.pellet-faq {
  padding: 96px 0 110px;
  background: var(--cream);
}

.pellet-faq .section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.pellet-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pellet-faq-grid h3 {
  margin-bottom: 12px;
  color: var(--wood-950);
  font-size: 1.12rem;
}

.pellet-faq-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

@media (max-width: 900px) {
  .pellet-hero-grid,
  .pellet-content-grid {
    grid-template-columns: 1fr;
  }

  .pellet-hero-grid {
    gap: 40px;
  }

  .pellet-benefits,
  .pellet-faq-grid {
    grid-template-columns: 1fr;
  }

  .pellet-contact-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .pellet-hero {
    padding: 118px 0 64px;
  }

  .pellet-breadcrumb {
    margin-bottom: 26px;
  }

  .pellet-hero-copy h1 {
    font-size: clamp(2.75rem, 15vw, 4.4rem);
  }

  .pellet-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pellet-actions .btn {
    width: 100%;
    text-align: center;
  }

  .pellet-section,
  .pellet-faq {
    padding: 72px 0;
  }

  .pellet-contact-card {
    padding: 26px 22px;
  }
}
