/*
  Fast & Friendly — Coming Soon
  WCAG 2.2 AA: normal text ≥4.5:1 vs its background; large text ≥3:1;
  UI borders / focus vs adjacent ≥3:1 where applicable.
*/

:root {
  --bg-deep: #050505;
  --bg-panel: #0f0f0f;
  --bg-elevated: #141414;
  --text-primary: #f2f2f2;
  --text-body: #d6d6d6;
  --text-secondary: #bdbdbd;
  --text-muted: #a8a8a8;
  --text-on-light: #141414;
  --link: #ffc1b8;
  --link-hover: #ffe4df;
  --accent-line: #e85547;
  --border-ui: #4f4f4f;
  --border-ui-strong: #656565;
  --focus-ring: #fff8e6;
  --btn-call: #e64a3d;
  --btn-call-hover: #ff6b5e;
  --btn-call-text: #0a0a0a;
  --btn-wa: #1fb855;
  --btn-wa-hover: #25d366;
  --btn-wa-text: #0a0a0a;
  --card-solid: #121212;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --space: clamp(0.65rem, 2vw, 1rem);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (prefers-contrast: more) {
  :root {
    --text-body: #ececec;
    --text-secondary: #d0d0d0;
    --text-muted: #c4c4c4;
    --border-ui: #6e6e6e;
    --border-ui-strong: #8a8a8a;
    --link: #ffe0dc;
    --bg-panel: #121212;
  }
}

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

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text-body);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(232, 85, 71, 0.09), transparent 55%),
    radial-gradient(ellipse 70% 60% at 100% 20%, rgba(31, 184, 85, 0.06), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(255, 255, 255, 0.03), transparent 45%);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--link);
  text-underline-offset: 0.15em;
}

a.btn,
a.btn:link,
a.btn:visited {
  color: var(--btn-call-text);
  text-decoration: none;
}

a.btn--wa,
a.btn--wa:link,
a.btn--wa:visited {
  color: var(--btn-wa-text);
}

a:hover {
  color: var(--link-hover);
}

a.btn:hover,
a.btn--call:hover,
a.btn--wa:hover {
  color: var(--btn-call-text);
}

a.btn--wa:hover {
  color: var(--btn-wa-text);
}

a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
  border-radius: 2px;
}

.btn:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.65rem 1rem;
  font-weight: 600;
  background: var(--bg-elevated);
  color: var(--text-primary);
  border: 2px solid var(--border-ui-strong);
  text-decoration: none;
  border-radius: var(--radius-sm);
}

.skip-link:focus-visible {
  left: 0.75rem;
  top: 0.75rem;
}

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: var(--space) 0;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space);
  align-items: start;
  text-align: left;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
    grid-template-rows: auto auto auto auto;
    gap: 0.55rem clamp(1.5rem, 3.5vw, 2.75rem);
    align-items: center;
    min-height: calc(100dvh - 2 * var(--space));
  }

  .slot--brand {
    grid-column: 1;
    grid-row: 1;
  }

  .slot--intro {
    grid-column: 1;
    grid-row: 2;
  }

  .slot--actions {
    grid-column: 1;
    grid-row: 3;
  }

  .slot--review {
    grid-column: 1;
    grid-row: 4;
  }

  .slot--visual {
    grid-column: 2;
    grid-row: 1 / -1;
    align-self: stretch;
    min-height: 0;
  }

  .slot--brand,
  .slot--intro,
  .slot--actions,
  .slot--review {
    justify-self: start;
    width: 100%;
  }
}

.hero__brand {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.hero__areas {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.slot--intro {
  position: relative;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 4px solid var(--accent-line);
  background: linear-gradient(90deg, var(--bg-panel) 0%, transparent 100%);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.slot--intro h1 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.4rem, 2.8vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.14;
  color: var(--text-primary);
  max-width: 22ch;
}

@media (min-width: 900px) {
  .slot--intro h1 {
    max-width: 17ch;
  }
}

.hero__copy {
  margin: 0 0 0.5rem;
}

.hero__copy p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-body);
  max-width: 40ch;
}

.hero__copy p:last-child {
  margin-bottom: 0;
}

.hero__trust {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.slot--actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .slot--actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 14px 22px;
  font-size: 0.9375rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  width: 100%;
  transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

@media (min-width: 480px) {
  .btn {
    width: auto;
  }
}

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

.btn:active {
  transform: scale(0.99);
}

@media (prefers-reduced-motion: reduce) {
  .btn:active {
    transform: none;
  }
}

.btn--call {
  background: var(--btn-call);
  color: var(--btn-call-text);
  border-color: #c73d32;
}

.btn--call:hover {
  background: var(--btn-call-hover);
  border-color: #e85547;
}

.btn--wa {
  background: var(--btn-wa);
  color: var(--btn-wa-text);
  border-color: #178a45;
}

.btn--wa:hover {
  background: var(--btn-wa-hover);
  border-color: #1ea34a;
}

.hero__visual {
  position: relative;
  height: 100%;
  min-height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-ui);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 48px -20px rgba(0, 0, 0, 0.85);
}

@media (min-width: 900px) {
  .hero__visual {
    min-height: min(520px, calc(100dvh - 3rem));
  }
}

.hero__photos {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  width: 100%;
  min-height: 200px;
}

@media (min-width: 900px) {
  .hero__photos {
    position: absolute;
    inset: 0;
    min-height: 100%;
    height: 100%;
  }
}

.hero__img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero__badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.35rem 0.65rem;
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-ui);
}

.hero__badge-text {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-on-light);
}

.hero__card {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.65rem 0.85rem;
  background: var(--card-solid);
  border: 2px solid var(--border-ui-strong);
  border-radius: var(--radius-sm);
}

.hero__card-text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-primary);
}

.review {
  margin: 0.15rem 0 0;
  padding: 0.85rem 1rem;
  background: var(--bg-panel);
  border: 2px solid var(--border-ui);
  border-radius: var(--radius-md);
  max-width: 42rem;
}

.review__heading {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.review__figure {
  margin: 0;
}

.review__quote {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--text-body);
}

.review__quote p {
  margin: 0;
  color: var(--text-body);
}

.review__figcaption {
  margin-top: 0.65rem;
  padding-top: 0.65rem;
  border-top: 2px solid var(--border-ui);
  font-size: 0.9375rem;
}

.review__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.review__link:focus-visible {
  border-radius: var(--radius-sm);
}

@media (max-width: 899px) {
  .hero__visual {
    margin-top: 0.25rem;
    max-height: 42vh;
  }

  .hero__photos {
    max-height: 42vh;
  }

  .hero__img {
    min-height: 100px;
  }
}
