:root {
  --page-green: #0d382d;
  --page-green-light: #176e53;
  --page-orange: #c75b17;
  --page-cream: #f7efe6;
  --page-paper: #fcf8f3;
  --page-ink: #211b18;
}

.service-page {
  background: var(--page-paper);
  color: var(--page-ink);
}

.service-hero {
  min-height: 660px;
  padding: 170px clamp(24px, 8vw, 120px) 90px;
  color: #fff;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
  position: relative;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 34, 27, .94), rgba(13, 56, 45, .76) 55%, rgba(13, 56, 45, .28));
}

.service-hero__content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.service-hero h1 {
  max-width: 13ch;
  margin: 0;
  font: 400 clamp(48px, 6.5vw, 88px)/.98 Georgia, serif;
  letter-spacing: -.045em;
}

.service-hero__lead {
  max-width: 680px;
  margin: 28px 0 32px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
}

.service-hero--restaurant { background-image: url('/pratos/hero-prato-real.webp'); }
.service-hero--delivery { background-image: url('/pratos/marmita-fit-real.webp'); }
.service-hero--business { background-image: url('/ambiente/fachada-real.webp'); }
.service-hero--events { background-image: url('/em-casa/mesa-evento-real.webp'); }

.service-section {
  padding: 100px clamp(24px, 8vw, 120px);
}

.service-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.service-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .8fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}

.service-intro h2,
.service-heading h2,
.service-faq h2,
.service-cta h2 {
  margin: 0;
  color: var(--page-green);
  font: 400 clamp(38px, 4.6vw, 64px)/1.05 Georgia, serif;
  letter-spacing: -.035em;
}

.service-copy p {
  margin: 0 0 18px;
  color: #5e5852;
  font-size: 16px;
  line-height: 1.8;
}

.service-facts {
  margin: 0;
  padding: 28px;
  background: #efe4d6;
  border-top: 4px solid var(--page-orange);
}

.service-facts li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(13, 56, 45, .15);
  color: #3f4e47;
  font-weight: 700;
  line-height: 1.5;
}

.service-facts li:last-child { border-bottom: 0; }

.service-section--dark {
  background: var(--page-green);
  color: #fff;
}

.service-section--dark .service-heading h2 { color: #fff; }
.service-section--dark .service-heading p { color: rgba(255,255,255,.68); }

.service-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 35px;
  margin-bottom: 42px;
}

.service-heading p {
  max-width: 470px;
  margin: 0;
  color: #6a635c;
  line-height: 1.75;
}

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

.service-card {
  padding: 30px;
  background: #fff;
  border: 1px solid #eadfd2;
}

.service-section--dark .service-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}

.service-card span {
  color: var(--page-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 12px 0 10px;
  color: var(--page-green);
  font: 400 25px/1.2 Georgia, serif;
}

.service-section--dark .service-card h3 { color: #fff; }

.service-card p {
  margin: 0;
  color: #716962;
  font-size: 14px;
  line-height: 1.7;
}

.service-section--dark .service-card p { color: rgba(255,255,255,.66); }

.service-gallery {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 12px;
}

.service-gallery figure {
  height: 360px;
  margin: 0;
  overflow: hidden;
  background: #ddd0c1;
}

.service-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-faq {
  width: min(900px, 100%);
  margin: 0 auto;
}

.service-faq h2 { margin-bottom: 35px; }

.service-faq details {
  border-bottom: 1px solid #d9cdbf;
  padding: 20px 0;
}

.service-faq summary {
  color: var(--page-green);
  cursor: pointer;
  font: 400 21px/1.4 Georgia, serif;
}

.service-faq details p {
  margin: 14px 0 0;
  color: #625b55;
  line-height: 1.75;
}

.service-cta {
  padding: 95px 24px;
  text-align: center;
  background: #efe4d6;
}

.service-cta p {
  max-width: 650px;
  margin: 20px auto 30px;
  color: #625b55;
  line-height: 1.7;
}

.breadcrumb {
  padding: 108px clamp(24px, 8vw, 120px) 20px;
  background: var(--page-green);
  color: rgba(255,255,255,.68);
  font-size: 12px;
}

.breadcrumb a { color: #fff; }

.service-page .nav {
  background: rgba(8, 38, 31, .97);
}

.service-page .site-footer { margin-top: 0; }

@media (max-width: 900px) {
  .service-hero { min-height: 610px; padding-top: 150px; }
  .service-intro { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-heading { align-items: start; flex-direction: column; }
  .service-gallery { grid-template-columns: 1fr 1fr; }
  .service-gallery figure:first-child { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .service-hero { min-height: 570px; padding: 130px 20px 70px; }
  .service-hero h1 { font-size: clamp(43px, 13vw, 58px); }
  .service-section { padding: 72px 20px; }
  .service-gallery { grid-template-columns: 1fr; }
  .service-gallery figure,
  .service-gallery figure:first-child { grid-column: auto; height: 300px; }
  .breadcrumb { padding: 92px 20px 16px; }
}
