:root {
  --greige: #d2c8b9;
  --greige-dark: #b8aa98;
  --paper: #f5efe4;
  --ink: #2f2822;
  --muted: #685d52;
  --orange: #d95f0e;
  --orange-deep: #a83d08;
  --yellow: #f5bf27;
  --lime: #688e34;
  --shadow: 0 20px 60px rgba(47, 40, 34, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--greige);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(245, 239, 228, 0.88);
  border-bottom: 1px solid rgba(47, 40, 34, 0.1);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 180ms ease, background 180ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  background: rgba(245, 239, 228, 0.96);
  box-shadow: 0 10px 30px rgba(47, 40, 34, 0.12);
}

.brand {
  align-items: center;
  color: var(--orange);
  display: inline-flex;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--yellow);
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange-deep);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2vw, 30px);
}

.site-nav a {
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 700;
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 36px;
  padding: 0;
  width: 36px;
}

.menu-toggle span {
  background: var(--orange);
  display: block;
  height: 2px;
  margin: 8px auto;
  width: 24px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(47, 40, 34, 0.72), rgba(47, 40, 34, 0.2)),
    url("assets/images/hero-preparados.png") center / cover;
  inset: 0;
  position: absolute;
  transform: scale(1.02);
}

.hero-content {
  color: var(--paper);
  max-width: 720px;
  padding: 170px clamp(20px, 5vw, 72px) 110px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.8rem, 8vw, 6.9rem);
  letter-spacing: 0;
  line-height: 0.92;
  margin-bottom: 22px;
}

h1 span,
h2 span {
  color: var(--yellow);
}

h2 {
  color: var(--orange);
  font-size: clamp(2rem, 4vw, 4.2rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 18px;
}

h3 {
  color: var(--orange);
  font-size: 1.25rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: clamp(1.02rem, 2vw, 1.25rem);
  max-width: 590px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button,
.text-button {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.text-button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--orange);
  border: 2px solid var(--orange);
  color: #fff8eb;
}

.button.ghost {
  border: 2px solid var(--yellow);
  color: var(--yellow);
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 980px;
}

.section-heading.split,
.two-column,
.contact-section {
  align-items: start;
  display: grid;
  gap: clamp(26px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.section-heading.split p,
.two-column p,
.contact-section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-strip {
  background: var(--paper);
}

.stats-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 980px;
}

.stats-grid article {
  border-left: 4px solid var(--yellow);
  padding: 8px 18px;
}

.stats-grid strong,
.stats-grid span {
  display: block;
}

.stats-grid strong {
  color: var(--orange);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1;
}

.stats-grid span {
  color: var(--muted);
  margin-top: 8px;
}

.menu-slider {
  padding-bottom: 62px;
}

.swiper-slide {
  height: auto;
}

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

.card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.promo-card {
  background: var(--paper);
  border: 1px solid rgba(47, 40, 34, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 100%;
  overflow: hidden;
}

.info-card img,
.promo-card img {
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.card-body,
.promo-card {
  padding: 22px;
}

.info-card p,
.promo-card p {
  color: var(--muted);
}

.text-button {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  min-height: 42px;
  padding-inline: 14px;
}

.slider-controls {
  align-items: center;
  bottom: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
}

.slider-button {
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 42px;
  position: relative;
  width: 42px;
}

.slider-button::before {
  border-right: 3px solid #fff8eb;
  border-top: 3px solid #fff8eb;
  content: "";
  height: 10px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 10px;
}

.slider-button.prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.slider-button.next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.swiper-pagination {
  position: static;
  width: auto;
}

.swiper-pagination-bullet-active {
  background: var(--orange);
}

.warm-band {
  background: #e6dece;
}

.map-card {
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 380px;
  overflow: hidden;
}

.map-card iframe {
  border: 0;
  height: 100%;
  min-height: 380px;
  width: 100%;
}

.hours-band {
  background: var(--ink);
  color: var(--paper);
}

.hours-band h2,
.hours-band .eyebrow {
  color: var(--yellow);
}

.hours-panel {
  align-items: center;
  display: grid;
  font-size: clamp(1.7rem, 6vw, 5rem);
  font-weight: 900;
  gap: 22px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1050px;
}

.hours-line {
  background: linear-gradient(90deg, var(--orange), var(--yellow), var(--lime));
  height: 8px;
}

.feature-row {
  align-items: stretch;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
}

.feature-row img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-copy {
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
}

.promo-band {
  background: #ece3d3;
}

.contact-section {
  background: var(--paper);
}

.contact-form {
  background: #fff8eb;
  border: 1px solid rgba(47, 40, 34, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.contact-form label {
  color: var(--orange);
  display: grid;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  padding: 13px 14px;
  resize: vertical;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  outline: 2px solid rgba(245, 191, 39, 0.28);
}

.form-status {
  color: var(--lime);
  font-weight: 800;
  min-height: 24px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 72px);
}

.site-footer span:first-child {
  color: var(--yellow);
  font-weight: 900;
}

.info-dialog {
  background: var(--paper);
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--ink);
  max-width: min(520px, calc(100vw - 40px));
  padding: 34px;
}

.info-dialog::backdrop {
  background: rgba(47, 40, 34, 0.58);
}

.dialog-close {
  background: var(--orange);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  height: 34px;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
}

.dialog-close::before,
.dialog-close::after {
  background: #fff8eb;
  content: "";
  height: 2px;
  left: 9px;
  position: absolute;
  top: 16px;
  width: 16px;
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    background: var(--paper);
    border-bottom: 1px solid rgba(47, 40, 34, 0.1);
    display: none;
    flex-direction: column;
    left: 0;
    padding: 18px 20px 24px;
    position: absolute;
    right: 0;
    top: 70px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 820px;
  }

  .section-heading.split,
  .two-column,
  .contact-section,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .card-grid,
  .card-grid.compact {
    grid-template-columns: 1fr;
  }

  .hours-panel {
    grid-template-columns: 1fr;
  }

  .hours-line {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding-top: 130px;
  }

  h1 {
    font-size: 3.05rem;
  }

  .button,
  .text-button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
