:root {
  --ink: #17211e;
  --muted: #5d6e68;
  --paper: #fbfaf5;
  --cream: #f2eadf;
  --panel: #fffdf8;
  --forest: #225a4f;
  --forest-dark: #0f1b19;
  --accent: #b7372f;
  --accent-dark: #8e2b24;
  --line: #dfded4;
  --shadow: 0 24px 70px rgba(24, 31, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 58px);
  background: rgba(251, 250, 245, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  display: block;
  font-size: 1.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: -4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.hero {
  min-height: calc(92vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 1.08fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  padding: clamp(46px, 7vw, 94px) clamp(18px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(242, 234, 223, 0.92), rgba(251, 250, 245, 0.58)),
    var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 760px;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 5.7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.65rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 14px 0 8px;
  font-size: 1.24rem;
  line-height: 1.16;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.lead {
  margin-top: 24px;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button.primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(183, 55, 47, 0.18);
}

.button.primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.service-band .button.primary {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button.secondary {
  color: var(--forest);
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--forest);
  background: rgba(34, 90, 79, 0.06);
}

.button.disabled {
  color: #eadfd4;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  cursor: not-allowed;
}

.hero-image {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid rgba(34, 90, 79, 0.12);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: min(66vh, 700px);
  object-fit: cover;
  object-position: center;
}

.section,
.service-band {
  padding: clamp(46px, 8vw, 98px) clamp(18px, 5vw, 58px);
}

.section-heading {
  max-width: 920px;
  margin-bottom: 34px;
}

.section-heading p {
  margin-top: 16px;
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro {
  background: var(--panel);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.pillars article {
  min-height: 164px;
  padding: 24px;
  background: #fffdf8;
  border-top: 4px solid transparent;
}

.pillars article:nth-child(1) {
  border-top-color: var(--forest);
}

.pillars article:nth-child(2) {
  border-top-color: var(--accent);
}

.pillars article:nth-child(3) {
  border-top-color: #d8a648;
}

.pillars strong,
.pillars span {
  display: block;
}

.pillars strong {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.pillars span {
  color: var(--muted);
}

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

.feature {
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(24, 31, 29, 0.06);
}

.feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: var(--cream);
}

.feature-burrata img {
  object-position: center 58%;
}

.feature-mercearia img {
  object-position: center 42%;
}

.feature-queijos img {
  object-position: center;
}

.feature div {
  padding: 20px;
}

.feature .eyebrow {
  color: var(--accent);
}

.feature p:not(.eyebrow),
.service-card p,
.info-band p {
  color: var(--muted);
}

.service-band {
  color: #f9f2e9;
  background: var(--forest-dark);
}

.service-band .eyebrow,
.service-band .section-heading p {
  color: #d9c8b4;
}

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

.service-card {
  min-height: 100%;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 4px 0 rgba(183, 55, 47, 0.72);
}

.service-card p {
  margin-bottom: 24px;
  color: #d9c8b4;
}

.tag {
  display: inline-flex;
  margin-bottom: 4px;
  color: #f1d9be;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-band .button.secondary {
  color: #f9f2e9;
  border-color: rgba(255, 255, 255, 0.46);
}

.info-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: start;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 58px);
  color: #fff;
  background: var(--forest);
}

.info-band .eyebrow,
.info-band p {
  color: #eadfd4;
}

.hours {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hours h3 {
  margin-top: 0;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 58px);
  color: #f7eee5;
  background: #101817;
}

.footer strong {
  color: #fff;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.footer p {
  color: #d8c8b9;
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .info-band,
  .service-grid,
  .pillars,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-image img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
}

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

  h1 {
    font-size: clamp(2.2rem, 10.8vw, 2.9rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .lead {
    font-size: 1.05rem;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .brand span {
    font-size: 1.32rem;
  }

  .brand small {
    display: none;
  }

  .button {
    width: 100%;
  }
}
