:root {
  --ink: #22211f;
  --muted: #675f55;
  --paper: #fbfaf6;
  --cream: #f0e5d4;
  --coffee: #5b3522;
  --coffee-dark: #321f19;
  --leaf: #3e6f58;
  --gold: #c28735;
  --line: rgba(50, 31, 25, 0.14);
  --shadow: 0 18px 55px rgba(42, 28, 18, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--coffee-dark);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(24, 17, 13, 0.82), rgba(24, 17, 13, 0.48) 45%, rgba(24, 17, 13, 0.1)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1800&q=82");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero__content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0 88px;
  color: #fffaf2;
}

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

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1;
}

h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 9.5rem);
  font-weight: 700;
}

h2 {
  max-width: 620px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
}

.hero__copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 13px 18px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary,
.button--submit {
  color: #fffaf2;
  background: var(--leaf);
}

.button--primary:hover,
.button--submit:hover {
  background: #345e4a;
}

.button--ghost {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, 0.45);
  background: rgba(255, 250, 242, 0.08);
}

.section {
  padding: 72px 0;
}

.section__inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.menu-band {
  background: var(--coffee-dark);
  color: #fffaf2;
}

.menu-band .section__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.14);
}

.menu-band article {
  min-height: 144px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  background: #241813;
}

.menu-band span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-band strong {
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.lead-section {
  background:
    linear-gradient(180deg, rgba(62, 111, 88, 0.08), transparent 42%),
    var(--paper);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 480px);
  gap: 54px;
  align-items: start;
}

.lead-copy {
  position: sticky;
  top: 28px;
}

.lead-copy p:last-child {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.08rem;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--coffee-dark);
  font-size: 0.94rem;
  font-weight: 800;
}

.lead-form label span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(91, 53, 34, 0.22);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(194, 135, 53, 0.22);
  border-color: var(--gold);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button--submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status[data-state="success"] {
  color: var(--leaf);
  font-weight: 800;
}

.form-status[data-state="error"] {
  color: #a33a2a;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  background: #1f9d58;
  box-shadow: 0 12px 30px rgba(31, 157, 88, 0.28);
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #18884a;
  box-shadow: 0 16px 34px rgba(31, 157, 88, 0.34);
}

.whatsapp-float__icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

@media (max-width: 780px) {
  .hero {
    min-height: 86vh;
  }

  .hero__content {
    padding: 96px 0 64px;
  }

  .menu-band .section__inner,
  .lead-layout {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }

  .section {
    padding: 52px 0;
  }
}
