@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --bg: #0a0a0a;
  --bg-deep: #050505;
  --panel: #111111;
  --text: #e5e4e2;
  --muted: rgba(229, 228, 226, 0.62);
  --dim: rgba(229, 228, 226, 0.36);
  --ember: #d35400;
  --ember-dark: #8b1e10;
  --sand: #d8c3a5;
  --line: rgba(255, 255, 255, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 236px 1fr auto;
  align-items: center;
  gap: 32px;
  width: 100%;
  padding: 0 max(clamp(20px, 5vw, 64px), calc((100% - 1220px) / 2));
  transition: background 240ms ease, border-color 240ms ease, padding 240ms ease, top 240ms ease;
}

.site-nav.scrolled {
  top: 0;
  padding-block: 14px;
  background: rgba(10, 10, 10, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: block;
  width: 236px;
}

.brand img {
  width: 100%;
  max-width: none;
  transition: width 240ms ease;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: 30px;
}

.nav-links a,
.nav-cta,
.site-footer nav a {
  color: rgba(229, 228, 226, 0.72);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover,
.site-footer address a:hover {
  color: var(--ember);
}

.nav-cta {
  justify-self: end;
  padding: 11px 20px;
  color: var(--ember);
  border: 1px solid rgba(211, 84, 0, 0.6);
}

.nav-cta:hover {
  color: #fff;
  background: var(--ember);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(20px, 5vw, 64px) 72px;
}

.hero-bg,
.contact-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.94), rgba(10, 10, 10, 0.68), rgba(10, 10, 10, 0.42)),
    linear-gradient(0deg, #0a0a0a 0%, transparent 36%, rgba(10, 10, 10, 0.34) 100%);
}

.hero::after,
.advantages-section::after,
.gallery-section::after,
.quote-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(211, 84, 0, 0.24), transparent 62%);
  filter: blur(8px);
}

.hero::after {
  left: 50%;
  bottom: -260px;
  transform: translateX(-50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.hero-eyebrow {
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  z-index: 2;
  width: calc(100% - (2 * clamp(20px, 5vw, 64px)));
  max-width: 1220px;
  margin: 0 auto;
  color: var(--ember);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 22px;
  color: var(--ember);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-logo {
  width: min(520px, 88vw);
  margin: 0 0 28px;
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.48));
}

h1,
h2,
h3,
blockquote {
  font-family: var(--serif);
}

h1 {
  max-width: 640px;
  margin: 0;
  color: rgba(229, 228, 226, 0.88);
  font-size: clamp(1.5rem, 2.55vw, 2.25rem);
  font-weight: 500;
  line-height: 1.12;
}

.lead {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(229, 228, 226, 0.54);
  font-size: 1.03rem;
  font-weight: 300;
  line-height: 1.78;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid transparent;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button.primary {
  background: var(--ember);
  color: #fff;
}

.button.primary:hover {
  background: var(--ember-dark);
}

.arrow-button span {
  margin-left: 16px;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.arrow-button:hover span {
  transform: translateX(3px);
}

.button.ghost {
  border-color: rgba(229, 228, 226, 0.22);
}

.button.ghost:hover {
  border-color: rgba(211, 84, 0, 0.72);
  color: var(--ember);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 44px;
}

.hero-points span {
  color: rgba(229, 228, 226, 0.34);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: clamp(88px, 10vw, 150px) clamp(20px, 5vw, 64px);
}

.section-head {
  max-width: 760px;
  margin: 0 0 clamp(46px, 6vw, 78px);
}

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.split-section .section-head {
  max-width: 1220px;
  margin-inline: auto;
}

.split-section .section-head h2 {
  max-width: 760px;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-head.left {
  margin-inline: 0;
  text-align: left;
}

.section-head h2,
.contact-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  font-weight: 700;
  line-height: 0.98;
}

#materiales .section-head h2 {
  font-size: clamp(1.7625rem, 3.75vw, 3.45rem);
}

#ventajas .section-head h2 {
  font-size: clamp(1.7625rem, 3.75vw, 3.45rem);
}

#galeria .section-head h2 {
  font-size: clamp(1.7625rem, 3.75vw, 3.45rem);
}

.split-grid,
.configurator,
.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  max-width: 1220px;
  margin: 0 auto;
  align-items: center;
}

.gallery-section .configurator {
  max-width: none;
  width: 100%;
}

.image-stack {
  position: relative;
  min-height: 540px;
}

.image-main {
  width: 82%;
  height: 440px;
  object-fit: cover;
}

.image-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  min-width: 230px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--bg);
}

.copy-block p {
  margin: 0;
  color: rgba(229, 228, 226, 0.7);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.86;
}

.copy-block p + p {
  margin-top: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.feature-grid div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  color: rgba(229, 228, 226, 0.66);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 180ms ease;
}

.feature-grid div:hover {
  color: rgba(229, 228, 226, 0.94);
}

.advantage {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 18px;
  border: 1px solid var(--line);
  color: rgba(229, 228, 226, 0.66);
  font-size: 0.9rem;
  line-height: 1.35;
  background: rgba(255, 255, 255, 0.018);
}

.feature-icon {
  display: inline-grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.feature-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-grid div:hover .feature-icon {
  filter: brightness(1.35) saturate(1.25);
  box-shadow: 0 0 0 1px rgba(211, 84, 0, 0.28), 0 0 18px rgba(211, 84, 0, 0.1);
}

.materials-section {
  background: #080808;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto;
}

.material-card {
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  transition: border-color 180ms ease, transform 180ms ease;
}

.material-card:hover {
  border-color: rgba(211, 84, 0, 0.32);
  transform: translateY(-2px);
}

.material-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.material-card:hover .material-image img {
  transform: scale(1.045);
}

.material-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
}

.material-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.material-card div {
  padding: 30px;
}

.material-card > div:first-child {
  padding: 0;
}

.material-card h3 {
  margin: 0 0 20px;
  font-size: 1.65rem;
  line-height: 1.1;
}

.material-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.material-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(229, 228, 226, 0.56);
  font-size: 0.9rem;
  line-height: 1.48;
}

.material-card li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: rgba(211, 84, 0, 0.7);
}

.advantages-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    var(--bg);
  background-size: 50px 50px;
}

.advantages-section::after {
  right: -270px;
  top: 40%;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 38px;
  max-width: 1220px;
  margin: 0 auto;
}

.advantage:last-child {
  grid-column: 1 / 2;
}

.advantage {
  min-height: 80px;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.advantage:hover {
  border-color: rgba(211, 84, 0, 0.45);
}

.advantage strong {
  max-width: 250px;
  color: rgba(229, 228, 226, 0.62);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.38;
  transition: color 180ms ease;
}

.advantage:hover strong {
  color: rgba(229, 228, 226, 0.96);
}

.advantage-icon {
  display: inline-grid;
  flex: 0 0 72.5px;
  width: 72.5px;
  height: 72.5px;
  place-items: center;
  transition: filter 180ms ease, box-shadow 180ms ease;
}

.advantage-icon img {
  width: 72.5px;
  height: 72.5px;
  object-fit: contain;
}

.advantage:hover .advantage-icon {
  filter: brightness(1.25) saturate(1.2);
  box-shadow: 0 0 20px rgba(211, 84, 0, 0.08);
}

.gallery-section {
  overflow: hidden;
  background: #070707;
}

.gallery-section::after {
  right: -300px;
  top: 260px;
  opacity: 0.72;
}

.configurator {
  align-items: start;
}

.config-preview {
  position: sticky;
  top: 104px;
}

.model-frame,
.grill-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}

.model-frame {
  aspect-ratio: 4 / 3;
}

.model-frame img,
.grill-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-frame::after,
.grill-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 10, 10, 0.72), transparent 52%);
  pointer-events: none;
}

.badges {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.badges span,
.grill-frame p,
.config-summary p {
  margin: 0;
  color: rgba(229, 228, 226, 0.72);
  font-size: 0.69rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.badges span {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 10, 10, 0.78);
}

#braseroBadge {
  color: var(--ember);
  border-color: rgba(211, 84, 0, 0.34);
  background: rgba(211, 84, 0, 0.16);
}

.config-summary {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(216, 195, 165, 0.14);
  background: rgba(216, 195, 165, 0.055);
}

.config-summary strong,
.config-summary span,
.grill-frame strong {
  color: rgba(229, 228, 226, 0.76);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.grill-frame {
  aspect-ratio: 1 / 0.55;
  margin-top: 14px;
}

.grill-frame div {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
}

.grill-frame p {
  color: rgba(211, 84, 0, 0.72);
  margin-bottom: 5px;
}

.config-controls {
  display: grid;
  gap: 34px;
}

.option-group h3 {
  margin: 0 0 14px;
  color: rgba(229, 228, 226, 0.66);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.option-group h3 svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: var(--ember);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.option-group h3:nth-of-type(3) svg {
  fill: var(--ember);
  stroke-width: 0;
}

.option-row {
  display: grid;
  gap: 12px;
}

.option-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.option {
  position: relative;
  min-height: 98px;
  padding: 16px 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: rgba(229, 228, 226, 0.74);
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.option:hover,
.option.active {
  border-color: rgba(211, 84, 0, 0.72);
  background: rgba(211, 84, 0, 0.06);
  color: var(--ember);
}

.option.active::after {
  content: "✓";
  position: absolute;
  top: 11px;
  right: 11px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  background: var(--ember);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1;
}

.option span,
.option small {
  display: block;
}

.option small {
  display: inline;
  margin-top: 0;
  margin-left: 8px;
  color: rgba(229, 228, 226, 0.34);
  font-size: 0.73rem;
}

.option span {
  margin-top: 8px;
  color: rgba(229, 228, 226, 0.42);
  font-size: 0.76rem;
  line-height: 1.35;
}

.quote-section {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 140px) 20px;
  text-align: center;
  background: var(--bg);
}

.quote-section::before {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.quote-section blockquote {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  color: rgba(229, 228, 226, 0.9);
  font-size: clamp(1.35rem, 2.7vw, 2.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.16;
}

.quote-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.quote-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 34px;
  place-items: center;
}

.quote-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.quote-stars {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 34px;
  color: var(--ember);
  font-size: 1.35rem;
  line-height: 1;
}

.quote-inner p {
  display: block;
  margin: 24px 0 0;
  color: rgba(229, 228, 226, 0.4);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(88px, 10vw, 156px) clamp(20px, 5vw, 72px);
}

.contact-result {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(211, 84, 0, 0.16), transparent 34%),
    var(--bg);
}

.contact-result .section-head {
  max-width: 760px;
}

.contact-result .section-head p:not(.kicker) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.62), rgba(10, 10, 10, 0.82)),
    linear-gradient(0deg, var(--bg), rgba(10, 10, 10, 0.1), var(--bg));
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 980px;
  text-align: center;
}

.contact-copy p:not(.kicker) {
  max-width: 600px;
  margin: 26px auto 0;
  color: rgba(229, 228, 226, 0.62);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.75;
}

.contact-copy h2 {
  max-width: 920px;
  margin-inline: auto;
  font-size: clamp(1.95rem, 4.05vw, 3.75rem);
}

.contact-copy h2 span {
  color: var(--ember);
}

.contact-copy .kicker {
  margin-bottom: 24px;
}

.contact-actions {
  justify-content: center;
  margin-top: 42px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.78);
  backdrop-filter: blur(12px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(229, 228, 226, 0.62);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form .wide,
.form-submit {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  padding: 14px 13px;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(211, 84, 0, 0.76);
  background: rgba(255, 255, 255, 0.075);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding: 64px clamp(20px, 5vw, 72px) 36px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.site-footer img {
  width: 110px;
}

.site-footer p,
.site-footer address span,
.copyright {
  color: rgba(229, 228, 226, 0.28);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 13px;
  font-style: normal;
}

.site-footer h2 {
  margin: 0 0 16px;
  color: var(--ember);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-footer nav a {
  color: rgba(229, 228, 226, 0.44);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.site-footer address a {
  color: rgba(229, 228, 226, 0.44);
  font-size: 0.9rem;
  transition: color 180ms ease;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.copyright {
  margin: 0;
  text-transform: none;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.legal-links a {
  color: rgba(229, 228, 226, 0.28);
  font-size: 0.78rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.legal-links a:hover {
  color: rgba(229, 228, 226, 0.56);
}

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

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: auto auto;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
    display: grid;
    gap: 6px;
    width: 40px;
    height: 40px;
    place-content: center;
    border: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.4);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text);
  }

  .site-nav.open .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 20px;
    padding: 28px;
    border-top: 1px solid var(--line);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(16px);
  }

  .split-grid,
  .configurator,
  .contact-inner,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .config-preview {
    position: static;
  }

  .material-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage:last-child {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 760px;
  }

  .hero-actions,
  .button,
  .full-mobile {
    width: 100%;
  }

  .image-stack {
    min-height: 420px;
  }

  .image-main {
    width: 100%;
    height: 330px;
  }

  .image-float {
    width: 54%;
    min-width: 190px;
  }

  .feature-grid,
  .option-row.two,
  .option-row.three,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-links {
    justify-content: flex-start;
  }

  .contact-form {
    padding: 22px;
  }
}
