:root {
  --bg: #f7f3ee;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-solid: #fffdf9;
  --text: #16110f;
  --muted: #665a54;
  --line: rgba(62, 41, 31, 0.12);
  --accent: #d7643a;
  --accent-deep: #a93820;
  --accent-soft: rgba(215, 100, 58, 0.12);
  --shadow: 0 20px 50px rgba(46, 24, 14, 0.08);
  --shadow-strong: 0 22px 65px rgba(50, 24, 12, 0.2);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100vw - 32px));
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(215, 100, 58, 0.12), transparent 28%),
    radial-gradient(circle at bottom left, rgba(190, 72, 40, 0.07), transparent 24%),
    var(--bg);
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 50;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface-solid);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 14px 0;
  backdrop-filter: blur(16px);
  background: rgba(247, 243, 238, 0.72);
  border-bottom: 1px solid rgba(62, 41, 31, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 12px 24px rgba(169, 56, 32, 0.2);
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__tagline {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

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

.button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(215, 100, 58, 0.18);
  outline-offset: 2px;
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 40px rgba(169, 56, 32, 0.24);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 22px 44px rgba(169, 56, 32, 0.28);
}

.button--secondary,
.button--ghost {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.button--ghost {
  min-height: 46px;
  padding: 0 16px;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button--compact {
  min-height: 46px;
}

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

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.media-section {
  position: relative;
  overflow: clip;
  isolation: isolate;
  background: #191210;
}

.media-section__image,
.media-section__scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.media-section__image {
  object-fit: cover;
}

.media-section__scrim {
  background: rgba(0, 0, 0, 0.45);
}

.media-section__scrim--soft {
  background:
    linear-gradient(180deg, rgba(9, 6, 5, 0.16), rgba(9, 6, 5, 0.46)),
    linear-gradient(120deg, rgba(28, 18, 12, 0.06), rgba(28, 18, 12, 0.44));
}

.hero {
  min-height: calc(100vh - var(--header-height));
}

.hero__content,
.showcase__content,
.statement__content,
.seller-band__content {
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  align-items: flex-end;
  min-height: calc(100vh - var(--header-height));
  padding: 88px 0 44px;
}

.hero__panel,
.seller-band__panel {
  width: min(100%, 690px);
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(11, 8, 7, 0.34);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(10px);
  color: #fff;
}

.hero h1,
.showcase h2,
.statement h2,
.section h2,
.seller-band h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.045em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.75rem, 9vw, 5.3rem);
  line-height: 0.96;
}

.hero__copy {
  max-width: 36ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2.3vw, 1.14rem);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.media-section__image--hero {
  object-position: center center;
}

.showcase {
  min-height: 72vh;
}

.showcase__content {
  display: flex;
  align-items: flex-end;
  min-height: 72vh;
  padding: 36px 0;
}

.glass-card {
  width: min(100%, 560px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.glass-card h2,
.statement h2,
.section h2,
.seller-band h2 {
  font-size: clamp(1.95rem, 5vw, 3.2rem);
}

.glass-card p:last-child,
.section-heading p,
.seller-band__panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.media-section__image--city {
  object-position: center 28%;
}

.section {
  padding: 84px 0;
}

.section-heading {
  max-width: 660px;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-heading p {
  font-size: 1.02rem;
}

.section--features {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.feature-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.feature-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.statement {
  min-height: 62vh;
}

.statement__content {
  display: flex;
  align-items: flex-end;
  min-height: 62vh;
  padding: 34px 0;
}

.statement__panel {
  width: min(100%, 650px);
  color: #fff;
}

.statement__panel .eyebrow {
  color: rgba(255, 231, 220, 0.92);
}

.statement__panel h2 {
  max-width: 14ch;
  color: #fff;
}

.media-section__image--statue {
  object-position: center center;
}

.offer-card {
  display: grid;
  gap: 22px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(215, 100, 58, 0.08), rgba(255, 255, 255, 0.7)),
    var(--surface-solid);
  box-shadow: var(--shadow);
}

.offer-card h2 {
  max-width: 14ch;
}

.section--form {
  padding-top: 24px;
}

.form-layout {
  display: grid;
  gap: 28px;
}

.section-heading--sticky {
  align-self: start;
}

.notify-form {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.form-content {
  display: grid;
  gap: 18px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  font-weight: 700;
}

.field-group input {
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(61, 42, 33, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field-group input:hover,
.field-group input:focus-visible {
  border-color: rgba(169, 56, 32, 0.34);
  box-shadow: 0 0 0 4px rgba(215, 100, 58, 0.08);
}

.field-group input.is-invalid {
  border-color: rgba(169, 56, 32, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 100, 58, 0.1);
}

.form-note,
.form-feedback {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

.form-feedback[data-state="error"] {
  color: var(--accent-deep);
}

.form-feedback[data-state="success"] {
  color: #23613a;
}

.seller-form {
  margin-top: 24px;
}

@keyframes successScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.seller-band {
  min-height: 68vh;
}

.seller-band__content {
  display: flex;
  align-items: flex-end;
  min-height: 68vh;
  padding: 36px 0;
}

.media-section__image--night {
  object-position: center center;
}

.seller-band__panel .eyebrow,
.hero__panel .eyebrow {
  color: rgba(255, 233, 222, 0.95);
}

.seller-band__panel p {
  color: rgba(255, 255, 255, 0.86);
}

.seller-band__panel {
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 20px;
}

.seller-band__panel h2,
.seller-band__panel p {
  color: #ffffff;
}

.seller-band__panel .notify-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.seller-band__panel .form-content {
  display: grid;
  gap: 18px;
}

.seller-band__panel label {
  color: rgba(255, 255, 255, 0.9);
}

.seller-band__panel input {
  min-height: 48px;
  background: #ffffff;
  color: #111;
  border-radius: 12px;
  padding: 12px;
  border: none;
  font-weight: 500;
}

.seller-band__panel input::placeholder {
  color: #777;
}

.seller-band__panel input:hover,
.seller-band__panel input:focus-visible {
  border: none;
  box-shadow: 0 0 0 4px rgba(255, 106, 61, 0.2);
}

.seller-band__panel input.is-invalid {
  box-shadow: 0 0 0 4px rgba(216, 76, 42, 0.28);
}

.seller-band__panel button {
  background: linear-gradient(135deg, #ff6a3d, #d84c2a);
  color: white;
  border-radius: 999px;
  padding: 12px;
  font-weight: 600;
  border: none;
}

.seller-band__panel button:hover,
.seller-band__panel button:focus-visible {
  filter: brightness(1.03);
  box-shadow: 0 16px 32px rgba(216, 76, 42, 0.24);
}

.seller-band__panel .form-feedback {
  color: rgba(255, 255, 255, 0.82);
}

.seller-band__panel .form-feedback[data-state="error"] {
  color: #ffd0c4;
}

.form-success-message {
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 180px;
  border-radius: 16px;
  background: #ffffff;
  color: #111;
  font-weight: 600;
  font-size: 18px;
  padding: 24px;
  border: 1px solid rgba(61, 42, 33, 0.08);
  box-shadow: var(--shadow);
  animation: successScale 400ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.form-success-message p {
  margin: 0;
  color: #111;
  line-height: 1.6;
}

.site-footer {
  padding: 24px 0 96px;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
}

.sticky-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 0 18px 36px rgba(169, 56, 32, 0.35);
  font-weight: 800;
}

.sticky-whatsapp__icon {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
}

.sticky-whatsapp__icon::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

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

  .offer-card {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .site-footer__inner,
  .site-footer__links {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .site-nav {
    display: inline-flex;
  }

  .hero__content {
    padding: 110px 0 58px;
  }

  .hero__panel,
  .seller-band__panel {
    padding: 36px;
  }

  .glass-card,
  .notify-form {
    padding: 32px;
  }

  .form-layout {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }

  .section-heading--sticky {
    position: sticky;
    top: calc(var(--header-height) + 30px);
  }
}

@media (min-width: 1100px) {
  .media-section__image--hero {
    object-position: center 54%;
  }

  .media-section__image--city {
    object-position: center 38%;
  }

  .media-section__image--statue {
    object-position: center 34%;
  }
}

@media (max-width: 719px) {
  .button--compact {
    display: none;
  }

  .brand__tagline {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}
