:root {
  --green: #4b8b26;
  --green-deep: #243f14;
  --green-soft: #6aa43c;
  --orange: #f7941e;
  --orange-deep: #c56a0a;
  --cream: #f6efe4;
  --paper: #fbf7f0;
  --ink: #1c1915;
  --ink-soft: #5c5348;
  --line: rgba(28, 25, 21, 0.12);
  --whatsapp: #25d366;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  background: #f7f0e4;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 76% 66% at 50% 48%, #ffffff 0%, #fffdf8 36%, rgba(255, 253, 248, 0.72) 56%, transparent 76%),
    radial-gradient(ellipse 90% 70% at 108% -8%, rgba(247, 148, 30, 0.26), rgba(247, 148, 30, 0.06) 42%, transparent 68%),
    radial-gradient(ellipse 80% 65% at -12% 108%, rgba(75, 139, 38, 0.18), rgba(75, 139, 38, 0.04) 46%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 82% 88%, rgba(196, 163, 90, 0.12), transparent 62%),
    linear-gradient(145deg, #fff8ee 0%, #f8ead0 30%, #f4ecde 55%, #eaf0d8 80%, #f6efe4 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.wash {
  position: fixed;
  inset: -20%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 64% 54% at 50% 48%, #ffffff 0%, rgba(255, 253, 248, 0.7) 44%, transparent 72%),
    linear-gradient(115deg, rgba(247, 148, 30, 0.09) 0%, transparent 42%, rgba(75, 139, 38, 0.07) 100%);
  animation: wash 18s var(--ease) infinite alternate;
}

@keyframes wash {
  from { transform: translate3d(-4%, -2%, 0) scale(1); }
  to { transform: translate3d(5%, 3%, 0) scale(1.06); }
}

::selection {
  background: var(--orange);
  color: #2a1600;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.sun-bar {
  position: relative;
  z-index: 3;
  height: 7px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 52%, #c43c28 100%);
}

.blob {
  position: fixed;
  z-index: 1;
  width: 58vw;
  height: 58vw;
  max-width: 720px;
  max-height: 720px;
  border-radius: 46% 54% 42% 58%;
  filter: blur(70px);
  opacity: 0.22;
  pointer-events: none;
  animation: drift 22s var(--ease) infinite alternate;
}

.blob-a {
  top: -18%;
  right: -16%;
  background: radial-gradient(circle at 35% 40%, #f7941e 0%, #f3c27a 48%, transparent 72%);
}

.blob-b {
  bottom: -22%;
  left: -18%;
  background: radial-gradient(circle at 60% 45%, #4b8b26 0%, #8fb86a 46%, transparent 74%);
  animation-delay: -8s;
}

.blob-c {
  top: 22%;
  left: 22%;
  width: 56vw;
  height: 56vw;
  max-width: 680px;
  max-height: 680px;
  opacity: 0.5;
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, #fffdf8 38%, rgba(255, 253, 248, 0.4) 62%, transparent 78%);
  animation-delay: -12s;
}

@keyframes drift {
  from { transform: translate(0, 0) rotate(0deg) scale(1); }
  to { transform: translate(-46px, 38px) rotate(16deg) scale(1.08); }
}

.page {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 7px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 56px 24px;
}

.lang {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 4;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(251, 247, 240, 0.72);
  backdrop-filter: blur(8px);
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font: 500 12px/1 var(--sans);
  letter-spacing: 0.14em;
  padding: 8px 12px;
  cursor: pointer;
}

.lang button.is-active {
  background: var(--green-deep);
  color: var(--paper);
}

.logo {
  width: min(320px, 78vw);
  height: auto;
  margin-bottom: 40px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.kicker::before,
.kicker::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--orange);
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--green-deep);
  max-width: 18ch;
  margin-bottom: 24px;
}

h1 em {
  font-style: italic;
  color: var(--orange-deep);
}

.lede {
  max-width: 46ch;
  color: var(--ink-soft);
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  display: grid;
  gap: 16px;
}

.closing {
  color: var(--green-deep);
  font-weight: 400;
}

.contact {
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.65;
}

.company {
  color: var(--green-deep);
  font-weight: 400;
}

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

.contact p a {
  display: block;
}

.phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 12px;
}

.phones a {
  display: inline;
}

.phones span {
  color: var(--orange);
  opacity: 0.7;
}

.contact a:hover {
  color: var(--green-deep);
}

.whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px auto 0;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--whatsapp);
  color: #fff !important;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.35s var(--ease), filter 0.35s var(--ease);
}

.whatsapp svg {
  width: 20px;
  height: 20px;
}

.whatsapp:hover {
  color: #fff !important;
  filter: brightness(0.95);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .page {
    padding: 72px 20px 40px;
  }

  .lang {
    top: 16px;
    right: 16px;
  }

  h1 {
    max-width: 18ch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
