/* wildatheart — polished appliance lead landing */
:root {
  --ink: #12161c;
  --ink-soft: #3a4450;
  --fog: #e8edf2;
  --mist: #f3f6f9;
  --paper: #fbfcfd;
  --teal: #0c8a77;
  --teal-deep: #066555;
  --amber: #c99612;
  --line: rgba(18, 22, 28, 0.1);
  --shadow: 0 18px 40px rgba(18, 22, 28, 0.12);
  --radius: 6px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --max: 1100px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(900px 480px at 8% -8%, rgba(12, 138, 119, 0.07), transparent 55%),
    radial-gradient(700px 400px at 100% 12%, rgba(201, 150, 18, 0.05), transparent 50%),
    linear-gradient(180deg, #eef2f5 0%, var(--mist) 35%, var(--paper) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.has-cookie-pad {
  padding-bottom: 6.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--teal);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  padding: 1.15rem 0;
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.3rem, 2.4vw, 1.65rem);
  letter-spacing: -0.03em;
  color: #fff;
  text-decoration: none;
  text-transform: lowercase;
}

.logo span {
  color: var(--amber);
}

.nav {
  display: flex;
  gap: 1.15rem;
  align-items: center;
}

.nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav a:hover {
  color: #fff;
}

.nav .btn-nav {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.55rem 1rem;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100svh, 900px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #12161c;
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(18, 22, 28, 0.82) 0%, rgba(18, 22, 28, 0.45) 48%, rgba(18, 22, 28, 0.55) 100%),
    linear-gradient(180deg, rgba(18, 22, 28, 0.25) 0%, rgba(18, 22, 28, 0.88) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 7.5rem 0 4.25rem;
  max-width: 36rem;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 7.5vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 0 0 1.15rem;
  text-transform: lowercase;
}

.brand-mark .accent {
  color: var(--amber);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.8vw, 1.75rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  max-width: 24ch;
}

.hero-lead {
  margin: 0 0 1.6rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  max-width: 36ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  padding: 0.88rem 1.3rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 8px 22px rgba(12, 138, 119, 0.28);
}

.btn-primary:hover {
  background: var(--teal-deep);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Sections */
section {
  padding: 4.25rem 0;
}

.section-head {
  max-width: 34rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 0.55rem;
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2rem;
  counter-reset: step;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.25rem;
  letter-spacing: -0.04em;
  color: var(--teal);
  display: block;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Atmosphere */
.atmosphere {
  padding: 0 0 3.5rem;
}

.atmosphere-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.atmosphere-shot {
  margin: 0;
  overflow: hidden;
  background: #1a222a;
  aspect-ratio: 16 / 11;
}

.atmosphere-shot:last-child {
  aspect-ratio: 4 / 5;
  align-self: stretch;
}

.atmosphere-shot img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.atmosphere-caption h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.45rem;
}

.atmosphere-caption p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 36rem;
}

/* Categories — consistent tiles */
.categories {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.categories .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  position: relative;
  z-index: 1;
}

.cat-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cat-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1c242c;
  margin-bottom: 0.85rem;
  border-radius: 2px;
}

.cat-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.cat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.2rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.cat-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Lead / form */
.lead {
  background: var(--paper);
}

.lead-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.5rem;
  align-items: start;
}

.lead-copy .section-head {
  margin-bottom: 1rem;
}

.lead-photo {
  margin: 0 0 1.25rem;
  overflow: hidden;
  border-radius: 2px;
  background: var(--fog);
  aspect-ratio: 3 / 2;
}

.lead-photo img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.lead-copy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-copy li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.lead-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--teal);
  border-radius: 1px;
}

.lead-form {
  background: #fff;
  border: 1px solid var(--line);
  padding: 1.65rem 1.5rem;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.lead-form h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin: 0 0 0.3rem;
}

.form-note {
  margin: 0 0 1.15rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.86rem;
  font-weight: 600;
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:not([type="checkbox"]):focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(12, 138, 119, 0.16);
  background: #fff;
}

.consent {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  column-gap: 0.7rem;
  align-items: start;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-top: 0.15rem;
  cursor: pointer;
  width: 100%;
}

.consent input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  padding: 0;
  border: none;
  border-radius: 2px;
  background: #fff;
  box-shadow: none;
  flex-shrink: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.consent input[type="checkbox"]:focus {
  outline: 2px solid rgba(12, 138, 119, 0.35);
  outline-offset: 2px;
  box-shadow: none;
  background: #fff;
}

.consent > span {
  min-width: 0;
  display: block;
}

.form-actions {
  margin-top: 1rem;
}

.form-actions .btn {
  width: 100%;
}

.form-success,
.form-error {
  display: none;
  margin-top: 0.85rem;
  padding: 0.8rem 1rem;
  font-size: 0.94rem;
  border-radius: var(--radius);
}

.form-success {
  background: rgba(12, 138, 119, 0.12);
  color: var(--teal-deep);
}

.form-error {
  background: rgba(180, 40, 40, 0.08);
  color: #8a1f1f;
}

.form-success.is-shown,
.form-error.is-shown {
  display: block;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem 2rem;
}

.trust-item h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.trust-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Contact */
.contact {
  background: var(--mist);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.55rem;
}

.contact > .wrap > div > p,
.contact-layout > div > p {
  color: var(--ink-soft);
  margin: 0;
}

.contact-address {
  font-style: normal;
  margin: 1.15rem 0;
  line-height: 1.55;
}

.contact-links {
  margin: 0;
}

.contact-links a {
  font-weight: 600;
}

.contact-map-visual {
  margin: 0;
  overflow: hidden;
  background: #1a222a;
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}

.contact-map-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.footer-address {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 42rem;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 1.05rem 1.75rem 1.05rem 0;
  list-style: none;
  letter-spacing: -0.01em;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 1.05rem;
  color: var(--teal);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.1rem;
  color: var(--ink-soft);
  padding-right: 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  color: #fff;
  text-transform: lowercase;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.footer-brand span {
  color: var(--amber);
}

.site-footer h3 {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 0.85rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  font-size: 0.86rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  justify-content: space-between;
}

/* Legal */
.legal-hero {
  background: var(--ink);
  color: #fff;
  padding: 6.5rem 0 2.75rem;
}

.legal-hero .logo {
  display: inline-block;
  margin-bottom: 1.75rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.45rem;
}

.legal-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.legal-body {
  padding: 2.75rem 0 4rem;
  max-width: 44rem;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  margin: 1.85rem 0 0.55rem;
  letter-spacing: -0.02em;
}

.legal-body p,
.legal-body li {
  color: var(--ink-soft);
}

.legal-body ul {
  padding-left: 1.2rem;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-bottom: 1.35rem;
  font-size: 0.9rem;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: auto;
  bottom: 1rem;
  z-index: 200;
  width: min(400px, calc(100vw - 2rem));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner p {
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.cookie-actions .btn {
  padding: 0.58rem 0.85rem;
  font-size: 0.88rem;
}

.btn-secondary {
  background: var(--ink);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--ink-soft);
  color: #fff;
}

.btn-text {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

/* Responsive */
@media (max-width: 980px) {
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .atmosphere-strip {
    grid-template-columns: 1fr 1fr;
  }

  .atmosphere-shot,
  .atmosphere-shot:last-child {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 900px) {
  .steps,
  .trust-grid,
  .lead-layout,
  .footer-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: auto;
    width: min(260px, calc(100vw - 2.5rem));
    background: rgba(18, 22, 28, 0.97);
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    z-index: 40;
  }

  .nav.is-open a {
    padding: 0.55rem 0.65rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hero-content {
    padding-top: 6.5rem;
  }
}

@media (max-width: 600px) {
  .form-grid,
  .cat-grid,
  .atmosphere-strip {
    grid-template-columns: 1fr;
  }

  .wrap {
    width: min(100% - 1.75rem, var(--max));
  }

  .hero {
    min-height: 92svh;
  }

  .hero-content {
    padding-bottom: 3rem;
  }

  .lead-form {
    padding: 1.25rem 1.1rem;
  }

  .cookie-banner {
    left: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
