:root {
  --bg: #f6efe5;
  --surface: #fffaf2;
  --surface-strong: #1f382d;
  --text: #1c1915;
  --muted: #665f55;
  --line: rgba(28, 25, 21, 0.1);
  --accent: #d9822b;
  --accent-dark: #9b5417;
  --whatsapp: #1fa855;
  --shadow: 0 24px 80px rgba(31, 56, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 130, 43, 0.15), transparent 30%),
    linear-gradient(180deg, #f5ecdd 0%, #fffaf3 55%, #f3eadf 100%);
}

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

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

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #111111;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero__image-link {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 12, 10, 0.18) 0%, rgba(10, 12, 10, 0.52) 100%),
    linear-gradient(120deg, rgba(31, 56, 45, 0.45), rgba(217, 130, 43, 0.18));
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100%, calc(100% - 2rem));
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
}

.hero__content .button {
  pointer-events: auto;
}

.eyebrow,
.section__label {
  margin: 0 0 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.77rem;
  font-weight: 800;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
}

.hero__text,
.section p,
.card p,
.feature p,
.contact-note {
  line-height: 1.7;
  font-size: 1rem;
}

.section {
  display: flex;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button--primary {
  background: var(--accent);
  color: #fff8f1;
  box-shadow: 0 12px 32px rgba(217, 130, 43, 0.35);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fffdf8;
}

.button--whatsapp {
  background: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(31, 168, 85, 0.25);
  align-self: flex-start;
}

main {
  padding: 0 1rem 4rem;
}

.section {
  width: min(1180px, 100%);
  margin: 1rem auto 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  flex-direction: column;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.8);
  backdrop-filter: blur(10px);
}

.section--intro {
  margin-top: -4rem;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
}

.section__copy {
  max-width: 68ch;
}

.section h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.section p {
  margin: 0;
  color: var(--muted);
}

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

.card,
.feature,
.contact-panel {
  border-radius: 24px;
}

.card {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.section--band {
  background: linear-gradient(135deg, #20392e 0%, #2d5141 55%, #173229 100%);
  color: #fff8f1;
}

.section--band p,
.section--band .section__label {
  color: rgba(255, 248, 241, 0.82);
}

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

.feature {
  padding: 1.35rem;
  border: 1px solid rgba(255, 248, 241, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.feature span {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.section--contact {
  background:
    radial-gradient(circle at top right, rgba(217, 130, 43, 0.15), transparent 26%),
    #fff9f0;
}

.contact-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero__content {
    padding: 1.4rem;
  }

  .card-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .section--intro {
    margin-top: -2rem;
  }
}

@media (max-width: 560px) {
  .hero__content,
  .section {
    width: min(100%, calc(100% - 1rem));
  }

  .hero__content {
    align-items: flex-end;
    padding: 1rem;
  }

  .button {
    width: 100%;
  }
}
