* {
  box-sizing: border-box;
}

:root {
  --background: #f5f1eb;
  --surface: #fffdf9;
  --text: #171513;
  --muted: #7d766f;
  --line: rgba(23, 21, 19, 0.13);
  --dark: #171513;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at top,
      rgba(255,255,255,.95),
      transparent 520px
    ),
    var(--background);

  color: var(--text);

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Arial,
    sans-serif;

  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

.page {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: 0 18px 100px;
}


/* HERO */

.hero {
  padding:
    max(60px, env(safe-area-inset-top))
    6px
    48px;

  text-align: center;
}

.brand {
  font-size: clamp(2.7rem, 11vw, 5.2rem);
  font-weight: 200;
  line-height: .9;
  letter-spacing: -0.065em;
}

.eyebrow {
  margin-top: 24px;

  color: var(--muted);

  font-size: .68rem;
  font-weight: 600;

  letter-spacing: .34em;
}

.hero h1 {
  margin: 17px 0 0;

  font-size: clamp(1.4rem, 5vw, 2rem);
  font-weight: 500;

  letter-spacing: .25em;
}

.hero-text {
  max-width: 430px;
  margin: 14px auto 0;

  color: var(--muted);

  font-size: .95rem;
  line-height: 1.6;
}


/* CONTACT BUTTONS */

.contact-buttons {
  display: grid;
  gap: 10px;

  max-width: 570px;

  margin: 31px auto 0;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 64px;

  padding: 13px 20px;

  border-radius: 18px;

  color: #fff;

  text-decoration: none;

  font-size: .92rem;
  font-weight: 500;

  transition:
    transform .2s ease,
    opacity .2s ease;
}

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

.contact-button:active {
  transform: scale(.98);
}

.contact-button svg {
  width: 23px;
  height: 23px;

  margin-right: 13px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.contact-button span {
  display: flex;
  flex-direction: column;

  text-align: left;
}

.contact-button small {
  margin-bottom: 3px;

  font-size: .66rem;
  font-weight: 400;

  opacity: .7;

  letter-spacing: .08em;
}

.instagram {
  background: #211f1d;
}

.whatsapp {
  background: #6f786d;
}


/* HERO LINE */

.scroll-hint {
  display: flex;
  align-items: center;

  max-width: 570px;

  margin: 38px auto 0;

  color: var(--muted);

  font-size: .73rem;

  letter-spacing: .05em;
}

.scroll-hint .line {
  flex: 1;

  height: 1px;

  margin-left: 17px;

  background: var(--line);
}


/* SECTION HEADER */

.section-heading {
  display: flex;
  align-items: center;

  gap: 17px;

  margin:
    24px
    2px
    20px;

  padding-top: 30px;

  border-top: 1px solid var(--line);
}

.section-heading > span {
  color: #b6aea4;

  font-size: 2.8rem;
  font-weight: 200;

  line-height: 1;
}

.section-heading small {
  color: var(--muted);

  font-size: .6rem;
  font-weight: 600;

  letter-spacing: .28em;
}

.section-heading h2 {
  margin: 4px 0 0;

  font-size: 1.1rem;
  font-weight: 500;

  letter-spacing: .02em;
}


/* PRICE CARDS */

.price-list {
  display: grid;

  grid-template-columns: 1fr;

  gap: 22px;

  margin-bottom: 54px;
}

.price-card {
  display: block;

  width: 100%;

  margin: 0;
  padding: 0;

  overflow: hidden;

  border: 0;
  border-radius: 22px;

  background: var(--surface);

  box-shadow:
    0 20px 50px rgba(30, 26, 22, .07),
    0 2px 8px rgba(30, 26, 22, .03);

  cursor: zoom-in;

  appearance: none;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.price-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 25px 60px rgba(30, 26, 22, .11),
    0 3px 10px rgba(30, 26, 22, .04);
}

.price-card img {
  display: block;

  width: 100%;
  height: auto;

  background: #fff;
}


/* FINAL CTA */

.final-cta {
  margin: 72px 0 34px;

  padding: 46px 24px;

  border-radius: 26px;

  background: var(--dark);

  color: #fff;

  text-align: center;
}

.final-brand {
  margin-bottom: 27px;

  font-size: 2.2rem;
  font-weight: 200;

  letter-spacing: -.05em;

  opacity: .6;
}

.final-cta h2 {
  margin: 0;

  font-size: 1.55rem;
  font-weight: 400;
}

.final-cta p {
  max-width: 500px;

  margin: 14px auto 0;

  color: rgba(255,255,255,.66);

  font-size: .89rem;
  line-height: 1.65;
}

.compact {
  grid-template-columns: 1fr 1fr;

  margin-top: 28px;
}

.compact .contact-button {
  min-height: 52px;

  border: 1px solid rgba(255,255,255,.16);
}

.compact .instagram {
  background: rgba(255,255,255,.08);
}

.compact .whatsapp {
  background: rgba(255,255,255,.16);
}


/* FOOTER */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 21px 2px 34px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: .74rem;
}

footer small {
  opacity: .65;

  text-transform: uppercase;

  letter-spacing: .17em;
}


/* MOBILE CONTACT DOCK */

.mobile-contact-dock {
  position: fixed;

  left: 12px;
  right: 12px;

  bottom:
    max(
      12px,
      env(safe-area-inset-bottom)
    );

  z-index: 20;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;

  padding: 7px;

  border:
    1px solid
    rgba(255,255,255,.7);

  border-radius: 20px;

  background:
    rgba(245,241,235,.88);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 13px 40px
    rgba(23,21,19,.14);
}

.mobile-contact-dock a {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  border-radius: 14px;

  color: #fff;

  background: #211f1d;

  text-decoration: none;

  font-size: .8rem;
  font-weight: 500;
}

.mobile-contact-dock a:last-child {
  background: #6f786d;
}


/* LIGHTBOX */

dialog {
  width: 100vw;
  max-width: none;

  height: 100dvh;
  max-height: none;

  margin: 0;

  padding: 18px;

  border: 0;

  background:
    rgba(16,15,14,.96);
}

dialog::backdrop {
  background:
    rgba(16,15,14,.96);
}

dialog[open] {
  display: flex;

  align-items: center;
  justify-content: center;
}

#lightbox-image {
  max-width:
    min(
      100%,
      1080px
    );

  max-height:
    calc(
      100dvh - 36px
    );

  object-fit: contain;
}

.close {
  position: fixed;

  top:
    max(
      15px,
      env(safe-area-inset-top)
    );

  right: 15px;

  z-index: 2;

  width: 46px;
  height: 46px;

  border:
    1px solid
    rgba(255,255,255,.2);

  border-radius: 50%;

  background:
    rgba(0,0,0,.5);

  color: white;

  font:
    300
    32px/1
    Arial,
    sans-serif;

  cursor: pointer;
}


/* DESKTOP */

@media (min-width: 760px) {

  .contact-buttons {
    grid-template-columns:
      1fr
      1fr;
  }

}


@media (min-width: 900px) {

  .page {
    width: min(100%, 1450px);

    padding:
      0
      34px
      40px;
  }

  .hero {
    padding-top: 80px;
    padding-bottom: 60px;
  }

  .price-list {
    grid-template-columns:
      repeat(
        2,
        minmax(0, 1fr)
      );

    align-items: start;

    gap: 28px;
  }

  .section-heading {
    margin-top: 42px;
  }

  .mobile-contact-dock {
    display: none;
  }

  .final-cta {
    max-width: 800px;

    margin-left: auto;
    margin-right: auto;

    padding: 60px;
  }

}


/* REDUCED MOTION */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .price-card,
  .contact-button {
    transition: none;
  }

}
