:root {
  --ink: #0d0f0d;
  --ink-soft: #171a17;
  --paper: #f5f3ee;
  --white: #fff;
  --gold: #c6a45b;
  --muted: #666a63;
  --line: rgba(13, 15, 13, 0.16);
  --header-height: 112px;
  --page: min(94vw, 1660px);
  --space: clamp(5.5rem, 9vw, 10rem);
  --radius: clamp(1.1rem, 2vw, 2rem);
  --font: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
  --ease: 450ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
::selection {
  background: var(--gold);
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
.section-pad {
  padding: var(--space) max(3vw, calc((100vw - 1660px) / 2));
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms;
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  margin: 0 0 1.25rem;
  font-size: 0.73rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow::selection {
  color: var(--ink);
}

/* Header and controlled SVG wordmark */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  width: 100%;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 1px rgba(255, 255, 255, 0.09);
  transition: box-shadow var(--ease);
}
.site-header.is-scrolled,
.site-header.is-open {
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.24),
    0 1px rgba(255, 255, 255, 0.08);
}
.header-inner {
  width: var(--page);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 4vw, 5rem);
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: clamp(18.75rem, 21vw, 23rem);
  height: auto;
  overflow: visible;
}
.brand-main,
.brand-com,
.brand-signature {
  fill: currentColor;
  font-family: var(--font);
}
.brand-main {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: -2.5px;
}
.brand-com {
  font-size: 46px;
  font-weight: 600;
  letter-spacing: -2px;
}
.brand-dot {
  fill: var(--gold);
}
.brand-signature {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.05px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.8rem, 2.3vw, 2.8rem);
}
.main-nav a {
  position: relative;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  text-decoration: none;
  white-space: nowrap;
}
.main-nav > a:not(.nav-cta):not(.nav-store)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.55rem;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms;
}
.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-store {
  min-height: 3.2rem;
  padding: 0.75rem 1.1rem;
  border: 1px solid rgba(198, 164, 91, 0.75);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  transition:
    border-color 250ms,
    background 250ms,
    color 250ms,
    transform 250ms;
}
.nav-store span {
  color: var(--gold);
}
.nav-store:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.nav-store:hover span {
  color: var(--ink);
}
.nav-cta {
  display: inline-flex;
  min-height: 3.65rem;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.45rem;
  border-radius: 100px;
  background: var(--paper);
  color: var(--ink);
  transition:
    background 250ms,
    transform 250ms;
}
.nav-cta::after {
  content: "↗";
  color: var(--gold);
}
.nav-cta:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.nav-cta:hover::after {
  color: var(--ink);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.95rem 1.35rem 0.95rem 1.65rem;
  border: 1px solid transparent;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 250ms,
    background 250ms,
    color 250ms,
    border-color 250ms;
}
.button:hover {
  transform: translateY(-2px);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.button-light:hover {
  background: var(--gold);
}
.button-outline {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(13, 15, 13, 0.18);
  color: var(--white);
}
.button-outline:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.button-gold {
  background: var(--gold);
  color: var(--ink);
}
.button-gold:hover {
  background: var(--paper);
}
.button-dark {
  background: var(--ink);
  color: var(--white);
}
.button-dark:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: max(780px, calc(100svh - var(--header-height)));
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 56% center;
  filter: saturate(0.75) contrast(1.08);
  animation: hero-in 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero-shade {
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgba(7, 9, 8, 0.93) 0%,
      rgba(7, 9, 8, 0.72) 48%,
      rgba(7, 9, 8, 0.16) 82%
    ),
    linear-gradient(0deg, rgba(7, 9, 8, 0.72), transparent 55%);
}
.hero-content {
  width: var(--page);
  margin-inline: auto;
  padding: clamp(5rem, 10vh, 8rem) 0 calc(clamp(10rem, 17vh, 12rem) + 30px);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 2vw, 2.2rem);
  color: rgba(255, 255, 255, 0.84);
  animation: rise-in 850ms 120ms both;
}
.hero-eyebrow::before {
  content: "";
  width: 2.4rem;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(4rem, 6.65vw, 8.1rem);
  line-height: 0.88;
  letter-spacing: -0.075em;
  font-weight: 650;
  text-wrap: balance;
  animation: rise-in 950ms 200ms both;
}
.hero h1 span {
  display: block;
}
.hero-copy {
  max-width: 48rem;
  margin: clamp(1.8rem, 2.5vw, 2.7rem) 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.45;
  font-weight: 500;
  animation: rise-in 950ms 300ms both;
}
.hero-support {
  max-width: 52rem;
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  animation: rise-in 950ms 380ms both;
}
.hero-actions {
  margin-top: 2.3rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: rise-in 950ms 460ms both;
}
.hero-proof {
  position: absolute;
  right: 3vw;
  bottom: 1.8rem;
  left: 3vw;
  display: flex;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Buying paths */
.buy-paths {
  background: var(--paper);
}
.buy-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.buy-heading h2,
.section-head h2,
.hospitality h2,
.custom h2,
.build h2,
.steps h2,
.aftercare h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.4vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
  font-weight: 600;
  text-wrap: balance;
}
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.buy-card {
  min-height: 34rem;
  padding: clamp(2rem, 4vw, 4rem);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.buy-card-online {
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.buy-card-budget {
  background: var(--ink);
  color: var(--white);
}
.card-index {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.buy-card-budget .card-index {
  color: rgba(255, 255, 255, 0.5);
}
.solocarpas-logo {
  width: min(100%, 19rem);
  height: auto;
  mix-blend-mode: multiply;
}
.buy-card h3 {
  max-width: 18ch;
  margin: 1.5rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 650;
}
.buy-card > p:not(.buy-kicker) {
  max-width: 31rem;
  margin: 0 0 2rem;
  color: var(--muted);
}
.buy-card-budget > p:not(.buy-kicker) {
  color: rgba(255, 255, 255, 0.68);
}
.buy-kicker {
  margin: auto 0 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Hospitality */
.hospitality {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 820px;
  background: #19352e;
  color: var(--white);
}
.hospitality-media {
  min-height: 620px;
  overflow: hidden;
}
.hospitality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}
.hospitality-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hospitality-copy > p:not(.eyebrow) {
  max-width: 37rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}
.trust-line {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.trust-line strong {
  color: var(--gold);
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  line-height: 1;
}
.trust-line span {
  max-width: 13rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Models */
.models {
  background: var(--paper);
}
.section-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4rem, 8vw, 8rem);
}
.section-head > p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
}
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 7vw, 7rem) clamp(1rem, 3vw, 3rem);
}
.model-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: inset 0 0 0 1px var(--line);
}
.model-card > img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.model-card:hover > img {
  transform: scale(1.025);
}
.model-body {
  padding: clamp(1.5rem, 3vw, 2.8rem);
}
.model-body > span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.model-body h3 {
  margin: 1.5rem 0 0.7rem;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  font-weight: 600;
}
.model-body p {
  max-width: 37rem;
  margin: 0;
  color: var(--muted);
}
.model-actions {
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.model-actions a {
  font-size: 0.78rem;
  font-weight: 800;
  text-underline-offset: 0.35rem;
}

/* Customisation */
.custom {
  background: var(--ink);
  color: var(--white);
}
.custom-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}
.custom-heading .eyebrow {
  margin-bottom: 1.5rem;
}
.custom-copy {
  max-width: 40rem;
}
.custom-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}
.custom-copy p + p {
  margin-top: 1.2rem;
}
.custom-copy .button {
  margin-top: 2rem;
}
.custom-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.5rem);
}
.custom-photo {
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.custom-photo picture,
.custom-photo img {
  display: block;
  width: 100%;
  height: 100%;
}
.custom-photo img {
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.custom-photo:hover img {
  transform: scale(1.025);
}

/* Build / steps */
.build {
  background: #e9e5dc;
}
.build-head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
}
.build-grid {
  margin-top: clamp(4rem, 8vw, 8rem);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.build-grid article {
  min-height: 23rem;
  padding: clamp(1.5rem, 2.5vw, 2.8rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.build-grid span,
.aftercare-grid span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}
.build-grid h3 {
  margin: clamp(4rem, 7vw, 7rem) 0 1rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}
.build-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.steps {
  display: grid;
  grid-template-columns: minmax(18rem, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(4rem, 10vw, 12rem);
  background: var(--paper);
}
.steps-intro {
  align-self: start;
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}
.steps-intro > p:last-child {
  max-width: 30rem;
  margin-top: 2rem;
  color: var(--muted);
}
.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.steps-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}
.steps-list li:last-child {
  border-bottom: 1px solid var(--line);
}
.steps-list span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
}
.steps-list h3 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.4rem, 2vw, 2rem);
  letter-spacing: -0.04em;
}
.steps-list p {
  margin: 0;
  color: var(--muted);
}

/* Aftercare */
.aftercare {
  background: #183029;
  color: var(--white);
}
.aftercare-head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem clamp(3rem, 9vw, 10rem);
  align-items: end;
}
.aftercare-head .eyebrow,
.aftercare-head h2 {
  grid-column: 1;
}
.aftercare-head > p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}
.aftercare-head blockquote {
  grid-column: 2;
  margin: 1rem 0 0;
  color: var(--gold);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  letter-spacing: -0.04em;
}
.aftercare-grid {
  margin: clamp(4rem, 7vw, 7rem) 0 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
.aftercare-grid article {
  min-height: 20rem;
  padding: clamp(1.7rem, 3vw, 3.2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.aftercare-grid h3 {
  margin: clamp(3rem, 6vw, 6rem) 0 0.8rem;
  font-size: clamp(1.5rem, 2.5vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}
.aftercare-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 9vw, 11rem);
  background: var(--paper);
}
.faq-intro > p:last-child {
  max-width: 25rem;
  margin-top: 2rem;
  color: var(--muted);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  position: relative;
  padding: 1.5rem 3rem 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms;
}
.faq-list summary span::after {
  content: "";
  top: 0;
  transform: rotate(90deg);
}
.faq-list details[open] summary span::after {
  transform: rotate(0);
}
.faq-list details p {
  max-width: 48rem;
  margin: -0.25rem 3rem 1.6rem 0;
  color: var(--muted);
}

/* Form */
.contact {
  display: grid;
  grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(4rem, 9vw, 11rem);
  background: #e9e5dc;
}
.contact-copy > p:not(.eyebrow) {
  max-width: 32rem;
  margin: 2rem 0;
  color: var(--muted);
}
.phone-link {
  display: inline-flex;
  flex-direction: column;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 650;
  text-decoration: none;
}
.phone-link span {
  margin-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.project-form {
  align-self: start;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius);
  background: var(--white);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1.2rem;
}
.field-wide {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 1px var(--ink);
}
.field input:user-invalid,
.field select:user-invalid,
.field textarea:user-invalid {
  border-bottom-color: #9d2e25;
}
.check-field {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.9rem;
  align-items: start;
  margin: 2rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(13, 15, 13, 0.15);
  border-radius: 0.9rem;
  background: #f8f6f0;
  color: #343832;
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 650;
  line-height: 1.45;
  cursor: pointer;
}
.check-field input {
  width: 1.3rem;
  height: 1.3rem;
  margin: 0.08rem 0 0;
  accent-color: var(--ink);
}
.check-field a {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2rem;
}
.check-field:has(input:focus-visible) {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.recaptcha-slot {
  position: absolute;
  left: -99999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
.grecaptcha-badge {
  visibility: hidden !important;
}
.form-footer {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.form-status {
  flex: 1 0 100%;
  min-width: 0;
  margin: 0;
  padding: 1rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 0.9rem;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  font-weight: 750;
  line-height: 1.45;
  box-shadow: 0 10px 28px rgba(13, 15, 13, 0.08);
}
.form-status:empty {
  display: none;
}
.form-status.is-error {
  border-color: rgba(157, 46, 37, 0.28);
  background: #fff0ed;
  color: #81251e;
}
.form-status.is-error::before {
  content: "Atención · ";
  font-weight: 850;
}
.form-status.is-success {
  border-color: rgba(23, 104, 59, 0.25);
  background: #eaf7ef;
  color: #12552f;
}
.form-status.is-success::before {
  content: "✓ ";
  font-size: 1.2em;
  font-weight: 900;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
}
.footer-main {
  padding: clamp(4rem, 7vw, 7rem) max(3vw, calc((100vw - 1660px) / 2));
  display: grid;
  grid-template-columns: 2fr repeat(3, 0.7fr);
  gap: 4rem;
}
.brand-footer {
  margin-bottom: 1.5rem;
}
.footer-brand p {
  max-width: 30rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}
.footer-nav h2,
.footer-contact h2 {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-nav a,
.footer-contact a {
  font-size: 0.83rem;
  text-decoration: none;
}
.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--gold);
}
.footer-bottom {
  margin: 0 max(3vw, calc((100vw - 1660px) / 2));
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom nav {
  display: flex;
  gap: 1.4rem;
}
.footer-bottom a {
  text-decoration: none;
}
.legal-link,
.cookie-settings {
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}
.legal-link:hover,
.cookie-settings:hover,
.footer-blog-link:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}
.sombralia-band {
  padding: 1.35rem max(3vw, calc((100vw - 1660px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 1.35rem;
  align-items: center;
  justify-content: center;
  background: #080a08;
}
.sombralia-band a {
  display: inline-flex;
  width: fit-content;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.sombralia-band img {
  width: 75px;
  height: 36px;
  object-fit: contain;
}
.sombralia-band .footer-logo-sunbreta {
  width: 79px;
  height: 45px;
}

/* Floating return-to-top control */
.scroll-top {
  position: fixed;
  z-index: 120;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  border: 1px solid rgba(198, 164, 91, 0.62);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(13, 15, 13, 0.94);
  color: var(--white);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  cursor: pointer;
  transform: translateY(0.9rem) scale(0.92);
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 220ms ease,
    background-color 180ms ease,
    color 180ms ease;
}
.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}
.scroll-top:hover {
  background: var(--gold);
  color: var(--ink);
}
.scroll-top:active {
  transform: scale(0.94);
}
.scroll-top svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  z-index: 250;
  bottom: 1.25rem;
  left: 50%;
  width: min(1120px, calc(100% - 2.5rem));
  border: 1px solid rgba(198, 164, 91, 0.35);
  border-radius: 1.15rem;
  background: rgba(13, 15, 13, 0.98);
  color: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translate(-50%, 1.25rem);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.cookie-inner {
  min-width: 0;
  padding: clamp(1.35rem, 2.5vw, 2.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}
.cookie-copy {
  min-width: 0;
  max-width: 680px;
  overflow-wrap: anywhere;
}
.cookie-kicker {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cookie-copy h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}
.cookie-copy > p:not(.cookie-kicker) {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.55;
}
.cookie-more {
  margin-top: 0.85rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--white);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-underline-offset: 0.25rem;
  cursor: pointer;
}
.cookie-actions {
  min-width: 14rem;
  display: grid;
  gap: 0.55rem;
}
.cookie-button {
  min-height: 2.85rem;
  padding: 0.7rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    border-color 180ms,
    background-color 180ms,
    color 180ms;
}
.cookie-button:hover {
  border-color: var(--gold);
}
.cookie-accept {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}
.cookie-accept:hover {
  border-color: var(--gold);
  background: var(--gold);
}
.cookie-reject {
  border-color: transparent;
  color: rgba(255, 255, 255, 0.6);
}
.cookie-button:focus-visible,
.cookie-more:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Legal and privacy dialog */
.legal-dialog {
  width: min(92vw, 760px);
  max-height: min(88svh, 900px);
  margin: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}
.legal-dialog::backdrop {
  background: rgba(4, 6, 5, 0.78);
  backdrop-filter: blur(6px);
}
.legal-dialog-inner {
  max-height: min(88svh, 900px);
  overflow-y: auto;
}
.legal-dialog-head {
  position: sticky;
  z-index: 2;
  top: 0;
  padding: 1rem 1rem 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 238, 0.96);
  backdrop-filter: blur(12px);
}
.legal-dialog-head p {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.legal-close {
  width: 2.65rem;
  height: 2.65rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: transparent;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.legal-close:hover {
  background: var(--ink);
  color: var(--white);
}
.legal-dialog-content {
  padding: clamp(2rem, 5vw, 4rem);
}
.legal-dialog-content > h2 {
  max-width: 10ch;
  margin: 0 0 3rem;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}
.legal-dialog-content section {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}
.legal-dialog-content h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  letter-spacing: -0.025em;
}
.legal-dialog-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.legal-dialog-content p + p {
  margin-top: 0.85rem;
}
.legal-dialog-content a {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 0.22rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 850ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 850ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1550px) {
  .brand-mark {
    width: clamp(17rem, 21vw, 19rem);
  }
  .main-nav {
    gap: clamp(1.2rem, 1.7vw, 1.8rem);
  }
  .main-nav a {
    font-size: clamp(0.95rem, 1.08vw, 1.02rem);
  }
  .nav-cta {
    min-height: 3.25rem;
    padding-inline: 1.1rem;
  }
}

@media (min-width: 801px) and (max-height: 850px) {
  .hero-content {
    padding-top: 3.5rem;
    padding-bottom: calc(clamp(13rem, 27vh, 14rem) + 30px);
  }
  .hero-copy {
    margin-top: 1.35rem;
  }
  .hero-actions {
    margin-top: 1.5rem;
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 92px;
  }
  .brand-mark {
    width: clamp(16rem, 34vw, 19rem);
  }
  .menu-toggle {
    display: inline-flex;
    width: auto;
    min-width: 7.2rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 100px;
  }
  .menu-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .menu-icon,
  .menu-icon::before {
    display: block;
    width: 1.25rem;
    height: 1.5px;
    background: currentColor;
    transition: transform 250ms;
  }
  .menu-icon {
    position: relative;
    flex: 0 0 auto;
  }
  .menu-icon::before {
    content: "";
    position: absolute;
    top: -0.42rem;
  }
  .menu-toggle[aria-expanded="true"] .menu-icon {
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .menu-icon::before {
    top: 0;
    transform: rotate(90deg);
  }
  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 6vw;
    background: var(--ink);
    color: var(--white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition:
      opacity 250ms,
      transform 250ms,
      visibility 250ms;
  }
  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .main-nav > a {
    font-size: clamp(1.8rem, 6vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.055em;
    font-weight: 650;
  }
  .main-nav .nav-store {
    min-height: 3.2rem;
    margin-top: 0.7rem;
    padding: 0.85rem 1.3rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .main-nav .nav-cta {
    margin-top: 1.2rem;
    padding: 0.95rem 1.3rem;
    font-size: 1rem;
    letter-spacing: 0;
  }
  .buy-heading,
  .build-head {
    grid-template-columns: 1fr;
  }
  .hospitality {
    grid-template-columns: 1fr;
  }
  .hospitality-media {
    min-height: min(66vw, 680px);
  }
  .custom-intro {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .build-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }
  .footer-contact {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  .section-pad {
    padding-inline: 6vw;
  }
  .hero {
    min-height: max(760px, calc(100svh - var(--header-height)));
  }
  .hero-content {
    width: 88vw;
    padding-top: 4.5rem;
    padding-bottom: 9rem;
  }
  .hero h1 {
    max-width: 12ch;
    font-size: clamp(3.3rem, 11.5vw, 5.7rem);
    line-height: 0.91;
  }
  .hero h1 span {
    display: inline;
  }
  .hero-image {
    object-position: 62% center;
  }
  .hero-copy {
    font-size: 1rem;
  }
  .hero-support {
    font-size: 0.88rem;
  }
  .hero-proof {
    flex-direction: column;
    gap: 0.3rem;
  }
  .buy-grid,
  .model-grid {
    grid-template-columns: 1fr;
  }
  .buy-card {
    min-height: 30rem;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .custom-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .custom-gallery {
    grid-template-columns: 1fr;
  }
  .custom-photo {
    aspect-ratio: 4 / 3;
  }
  .build-grid {
    grid-template-columns: 1fr 1fr;
  }
  .steps,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }
  .steps-intro {
    position: static;
  }
  .aftercare-head {
    display: block;
  }
  .aftercare-head > p {
    margin-top: 2rem;
  }
  .aftercare-head blockquote {
    margin-top: 1.5rem;
  }
  .aftercare-grid {
    grid-template-columns: 1fr;
  }
  .aftercare-grid article {
    min-height: auto;
  }
  .aftercare-grid h3 {
    margin-top: 2.5rem;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-inline: 6vw;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .footer-contact {
    grid-column: auto;
  }
  .footer-bottom {
    margin-inline: 6vw;
  }
  .cookie-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
  .cookie-actions {
    min-width: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  :root {
    --header-height: 82px;
    --page: 88vw;
  }
  .brand-mark {
    width: 13.3rem;
  }
  .menu-toggle {
    width: 3rem;
    min-width: 3rem;
    padding: 0;
    border-radius: 50%;
  }
  .menu-label {
    display: none;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding-top: 3.5rem;
    padding-bottom: 8.5rem;
  }
  .hero-eyebrow {
    font-size: 0.61rem;
    letter-spacing: 0.15em;
  }
  .hero-eyebrow::before {
    width: 1.5rem;
  }
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 13.2vw, 4rem);
    letter-spacing: -0.07em;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
  }
  .hero-proof {
    bottom: 1.2rem;
    font-size: 0.56rem;
  }
  .buy-heading h2,
  .section-head h2,
  .hospitality h2,
  .custom h2,
  .build h2,
  .steps h2,
  .aftercare h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.45rem, 11.5vw, 3.6rem);
  }
  .buy-card {
    min-height: 27rem;
    padding: 1.5rem;
  }
  .buy-card .button,
  .custom-copy .button,
  .aftercare > .button {
    width: 100%;
  }
  .hospitality-media {
    min-height: 95vw;
  }
  .hospitality-copy {
    padding-block: 5rem;
  }
  .model-body h3 {
    font-size: 3rem;
  }
  .model-actions {
    flex-direction: column;
  }
  .custom-photo {
    aspect-ratio: 4 / 3;
  }
  .build-grid {
    grid-template-columns: 1fr;
  }
  .build-grid article {
    min-height: 18rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field-wide {
    grid-column: auto;
  }
  .project-form {
    padding: 1.4rem;
  }
  .form-footer .button {
    width: 100%;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-brand,
  .footer-contact {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .footer-bottom nav {
    flex-wrap: wrap;
  }
  .cookie-banner {
    bottom: 0.65rem;
    width: calc(100% - 1.3rem);
    max-height: calc(100svh - 1.3rem);
    overflow-y: auto;
  }
  .scroll-top {
    width: 3.15rem;
    height: 3.15rem;
  }
  .cookie-inner {
    padding: 1.25rem;
    gap: 1.1rem;
  }
  .cookie-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-mark {
    width: 11.7rem;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 13.5vw, 3.1rem);
  }
  .hero-copy {
    font-size: 0.92rem;
  }
  .hero-support {
    font-size: 0.82rem;
  }
  .button {
    padding-inline: 1rem;
    gap: 1rem;
    font-size: 0.82rem;
  }
}

@media (min-width: 1800px) {
  .hero h1 {
    font-size: min(6.65vw, 8.25rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
