:root {
  --green: #173c2c;
  --green-light: #285a41;
  --cream: #f5f0e4;
  --gold: #c89c48;
  --ink: #203229;
  --white: #fffdf8;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(200, 156, 72, .18), transparent 28rem),
    linear-gradient(135deg, #eee6d4, var(--cream));
  font-family: Arial, Helvetica, sans-serif;
  display: grid;
  grid-template-rows: 1fr auto;
}

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

.card {
  min-height: 610px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 70px rgba(34, 50, 39, .18);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
}

.visual {
  min-height: 430px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--green) url("../images/botellas.jpg") center / cover no-repeat;
}

.visual::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  background: rgba(13, 43, 30, .72);
  backdrop-filter: blur(12px);
}

.visual::after {
  content: "";
  position: absolute;
  inset: clamp(28px, 4vw, 58px);
  background: url("../images/botellas.jpg") center / contain no-repeat;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .24));
}

.content {
  padding: clamp(44px, 6vw, 82px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--green-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin: 0;
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .98;
}

.intro {
  max-width: 570px;
  margin: 30px 0 32px;
  color: #536158;
  font-size: 1.08rem;
  line-height: 1.7;
}

.button {
  width: fit-content;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 24px rgba(23, 60, 44, .2);
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  background: var(--green-light);
  box-shadow: 0 15px 30px rgba(23, 60, 44, .28);
  transform: translateY(-2px);
}

.button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

.button span { font-size: 1.4rem; line-height: 1; }

.address {
  margin: 27px 0 0;
  color: #768078;
  font-size: .86rem;
  line-height: 1.55;
}

.address strong { color: var(--green); }

footer {
  padding: 0 20px 25px;
  color: #637067;
  display: flex;
  justify-content: center;
  gap: 9px;
  font-size: .78rem;
  text-align: center;
}

@media (max-width: 820px) {
  .landing { width: min(620px, calc(100% - 28px)); padding-top: 22px; }
  .card { min-height: 0; border-radius: 20px; grid-template-columns: 1fr; }
  .visual {
    min-height: 310px;
    background-position: center;
  }
  .visual::before,
  .visual::after { display: none; }
  .content { padding: 40px 30px 46px; }
  h1 { font-size: clamp(2.35rem, 11vw, 3.6rem); }
}

@media (max-width: 430px) {
  .visual { min-height: 245px; }
  .content { padding: 34px 24px 38px; }
  .intro { margin: 24px 0 27px; font-size: 1rem; }
  .button { width: 100%; justify-content: center; }
  footer { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  .button { transition: none; }
}
