/*
Theme Name: Urban Aluminium Systems
Theme URI: https://urbanaluminiumsystems.co.uk/
Author: Codex
Description: A luxury one-page WordPress theme for Urban Aluminium Systems, direct manufacturers of aluminium bifold and patio door systems for UK homeowners and trade partners.
Version: 1.0.5
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: urban-aluminium-systems
*/

:root {
  --ink: #081018;
  --ink-2: #0e1a23;
  --charcoal: #151719;
  --graphite: #232629;
  --bronze: #d9a15a;
  --bronze-deep: #a86f32;
  --ivory: #f5f1ea;
  --paper: #fffaf1;
  --mist: #d8d2c8;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --max: 1240px;
  --urban-header-height: 102px;
  --urban-header-offset: 128px;
  --urban-hero-content-width: 480px;
  --urban-mobile-hero-content-width: 330px;
  --urban-mobile-hero-focus: 67%;
  --urban-about-text-width: 450px;
  --urban-section-title-width: 720px;
  --urban-mobile-hero-title: 36px;
  --urban-mobile-section-title: 32px;
  --urban-mobile-body: 15px;
  --urban-mobile-button: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--urban-header-offset);
}

body {
  margin: 0;
  padding-top: var(--urban-header-height);
  color: var(--ivory);
  background: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  color: var(--ink);
  background: var(--bronze);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  width: auto;
  height: auto;
  clip: auto;
  white-space: normal;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--bronze);
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  top: 0;
  z-index: 80;
  background: rgba(3, 9, 14, 0.94);
  border-bottom: 1px solid rgba(217, 161, 90, 0.28);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: var(--urban-header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  min-width: 150px;
  padding: 6px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(217, 161, 90, 0.06));
  border: 1px solid rgba(217, 161, 90, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.brand__logo {
  width: 100%;
  height: auto;
  max-height: 94px;
  object-fit: contain;
  filter: brightness(1.14) contrast(1.08);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--ivory);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.site-header.is-open .nav-toggle span {
  background: transparent;
}

.site-header.is-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 46px;
  padding: 0.85rem 1.28rem;
  color: var(--ink);
  background: var(--bronze);
  border: 1px solid var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  background: #efbf79;
  border-color: #efbf79;
}

.button--ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.54);
}

.button--ghost:hover,
.button--ghost:focus {
  color: var(--ink);
  background: var(--ivory);
  border-color: var(--ivory);
}

.button--dark {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.site-main {
  overflow: hidden;
}

.section {
  position: relative;
  padding: 92px 0;
  scroll-margin-top: var(--urban-header-offset);
}

.section__inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.eyebrow {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-title,
.hero__title {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.section-title {
  max-width: min(var(--urban-section-title-width), 100%);
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.section-title--dark {
  color: var(--ink);
}

.lead {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.hero {
  position: relative;
  min-height: clamp(650px, calc(100svh - var(--urban-header-height)), 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-image: linear-gradient(90deg, rgba(3, 9, 14, 0.95) 0%, rgba(3, 9, 14, 0.88) 24%, rgba(3, 9, 14, 0.42) 52%, rgba(3, 9, 14, 0.08) 100%), var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(0deg, var(--ink) 0%, rgba(8, 16, 24, 0) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: clamp(92px, 10vh, 118px) 0 150px;
}

.hero__content {
  width: min(var(--urban-hero-content-width), 100%);
}

.hero__title {
  max-width: min(var(--urban-hero-content-width), 100%);
  font-size: clamp(3rem, 3.9vw, 4.55rem);
  line-height: 1.18;
  text-wrap: balance;
}

.hero__copy {
  width: min(calc(var(--urban-hero-content-width) - 50px), 100%);
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2.05rem;
}

.hero__actions .button {
  min-width: 178px;
}

.hero .eyebrow {
  position: relative;
  margin-bottom: 1.4rem;
}

.hero .eyebrow::before,
.hero .eyebrow::after {
  content: "";
  display: block;
  width: 54px;
  height: 2px;
  margin-bottom: 0.8rem;
  background: var(--bronze);
}

.hero .eyebrow::after {
  width: 0;
  height: 0;
  margin: 0;
}

.hero-proof {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  width: min(calc(100% - 40px), var(--max));
  transform: translateX(-50%);
  background: rgba(8, 16, 24, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.hero-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-proof__item {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.3;
  text-align: left;
}

.hero-proof__item + .hero-proof__item {
  border-left: 1px solid rgba(217, 161, 90, 0.2);
}

.hero-proof__icon {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--bronze);
  border: 1px solid rgba(217, 161, 90, 0.56);
}

.hero-proof__icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof {
  margin-top: -1px;
  padding: 44px 0;
  background: linear-gradient(120deg, #07131d 0%, #0a1b25 56%, #081018 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.proof__inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.proof__label {
  margin: 0 0 30px;
  color: var(--bronze);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.proof-item {
  min-height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
}

.proof-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
  color: var(--bronze);
  border: 1px solid rgba(217, 161, 90, 0.5);
}

.proof-item__text {
  display: block;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.about {
  color: var(--ink);
  background: var(--paper);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, var(--urban-about-text-width)) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
}

.about__text {
  max-width: min(var(--urban-about-text-width), 100%);
}

.about__text p {
  color: rgba(8, 16, 24, 0.76);
}

.page-content {
  max-width: 840px;
  margin-top: 2rem;
  color: rgba(8, 16, 24, 0.76);
}

.page-content a {
  color: var(--bronze-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.about__media {
  position: relative;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  border: 1px solid rgba(168, 111, 50, 0.3);
}

.about__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.52;
  object-fit: cover;
  box-shadow: 0 22px 70px rgba(8, 16, 24, 0.18);
}

.products {
  background: radial-gradient(circle at 24% 20%, rgba(217, 161, 90, 0.1), transparent 36%), linear-gradient(135deg, #06111a 0%, #0b1e29 58%, #071018 100%);
}

.products__header {
  margin-bottom: 42px;
  text-align: center;
}

.products__header .section-title {
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product-card {
  display: grid;
  gap: 18px;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1.58;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.product-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-card p {
  margin: -8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus::after {
  transform: translateX(4px);
}

.why {
  color: var(--ink);
  background: var(--ivory);
}

.why__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(30px, 6vw, 88px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  color: rgba(8, 16, 24, 0.78);
}

.check-list li::before {
  content: "✓";
  color: var(--bronze-deep);
  font-weight: 900;
}

.split-feature {
  background: #101416;
}

.split-feature__grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(34px, 5vw, 72px);
  align-items: stretch;
}

.split-feature__image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.spec-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 70px);
  background: linear-gradient(150deg, rgba(217, 161, 90, 0.09), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.spec {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.spec strong {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}

.spec span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.gallery {
  color: var(--ink);
  background: var(--paper);
}

.gallery__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.gallery__header p {
  width: min(460px, 100%);
  margin: 0;
  color: rgba(8, 16, 24, 0.68);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.82fr;
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-grid__stack {
  display: grid;
  gap: 20px;
}

.gallery-grid__large {
  min-height: 560px;
}

.gallery-grid__stack img {
  min-height: 270px;
}

.quote {
  background: linear-gradient(130deg, rgba(3, 9, 14, 0.9), rgba(6, 17, 26, 0.78)), var(--quote-image);
  background-position: center;
  background-size: cover;
}

.quote__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.quote__intro {
  position: sticky;
  top: 120px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  background: rgba(8, 16, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  color: #173018;
  background: #dff2db;
  border-left: 4px solid #67b764;
}

.form-status--error {
  color: #401914;
  background: #f6ded9;
  border-left-color: #c86454;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.field label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  outline: none;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--bronze);
}

.site-footer {
  background: #071018;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta {
  padding: 54px 0;
  background: linear-gradient(90deg, rgba(217, 161, 90, 0.1), rgba(255, 255, 255, 0.03));
}

.footer-cta__inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.footer-cta h2 {
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.footer-cta p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.8fr) 1fr;
  gap: 36px;
}

.footer-main h3,
.footer-main h4 {
  margin: 0 0 1rem;
}

.footer-main h4 {
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main p,
.footer-main a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.footer-main a:hover,
.footer-main a:focus {
  color: var(--bronze);
}

.footer-list {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  body {
    padding-top: 88px;
  }

  .site-header__inner {
    min-height: 88px;
  }

  .brand {
    width: 128px;
    min-width: 128px;
  }

  .brand__logo {
    max-height: 78px;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    width: 100%;
    padding: 22px 20px 28px;
    background: rgba(5, 12, 18, 0.98);
    border-bottom: 1px solid rgba(217, 161, 90, 0.22);
  }

  .site-header.is-open .site-nav {
    display: grid;
    gap: 18px;
  }

  .site-nav ul {
    display: grid;
    gap: 8px;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .site-nav .button {
    width: max-content;
  }

  .hero {
    min-height: 710px;
  }

  .about__grid,
  .why__grid,
  .split-feature__grid,
  .quote__grid,
  .footer-cta__inner {
    grid-template-columns: 1fr;
  }

  .quote__intro {
    position: static;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  :root {
    --urban-header-height: 70px;
    --urban-header-offset: 104px;
  }

  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    padding-top: var(--urban-header-height);
  }

  .site-header__inner {
    min-height: 70px;
    gap: 14px;
  }

  .site-header__inner,
  .section__inner,
  .hero__inner,
  .proof__inner,
  .footer-cta__inner,
  .footer-main,
  .footer-bottom__inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand {
    width: 82px;
    min-width: 82px;
    padding: 2px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  .brand__logo {
    width: auto;
    max-width: 100%;
    max-height: 52px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    background: var(--bronze);
  }

  .section {
    padding: 44px 0;
    scroll-margin-top: var(--urban-header-offset);
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0;
    background-image:
      linear-gradient(90deg, rgba(3, 9, 14, 0.94) 0%, rgba(3, 9, 14, 0.86) 34%, rgba(3, 9, 14, 0.42) 62%, rgba(3, 9, 14, 0.06) 100%),
      linear-gradient(180deg, rgba(3, 9, 14, 0.08) 0%, rgba(3, 9, 14, 0) 32%, rgba(3, 9, 14, 0.22) 100%),
      var(--hero-image);
    background-position: center, center, var(--urban-mobile-hero-focus) top;
    overflow: hidden;
  }

  .hero::after {
    display: none;
  }

  .hero__inner {
    min-height: clamp(420px, 56svh, 510px);
    display: flex;
    align-items: flex-start;
    padding: clamp(54px, 10svh, 78px) 0 30px;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
  }

  .hero .eyebrow {
    margin-bottom: 0.72rem;
  }

  .hero .eyebrow::before {
    width: 38px;
    height: 1px;
    margin-bottom: 0.55rem;
  }

  .hero__title {
    max-width: min(var(--urban-mobile-hero-content-width), 100%);
    font-size: var(--urban-mobile-hero-title);
    line-height: 1.1;
    text-wrap: balance;
  }

  .hero__copy {
    max-width: min(var(--urban-mobile-hero-content-width), 100%);
    margin-top: 0.85rem;
    font-size: var(--urban-mobile-body);
    line-height: 1.52;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 360px);
    margin-top: 1.35rem;
  }

  .hero__actions .button {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__actions .button--ghost {
    border-color: var(--bronze);
  }

  .button {
    min-height: 48px;
    padding: 0.82rem 0.72rem;
    font-size: var(--urban-mobile-button);
    letter-spacing: 0.055em;
    line-height: 1.2;
    text-align: center;
  }

  .proof {
    padding: 28px 0;
  }

  .hero-proof {
    position: static;
    width: min(calc(100% - 28px), var(--max));
    margin: 0 auto 28px;
    transform: none;
    background: rgba(8, 16, 24, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
  }

  .hero-proof__grid {
    width: 100%;
    margin: 0 auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 0;
  }

  .hero-proof__item {
    min-height: 122px;
    flex-direction: column;
    justify-content: center;
    gap: 13px;
    padding: 18px 12px;
    font-size: 0.98rem;
    line-height: 1.28;
    text-align: center;
    border: 0;
  }

  .hero-proof__item + .hero-proof__item {
    border-left: 1px solid rgba(217, 161, 90, 0.18);
  }

  .hero-proof__item:nth-child(3) {
    border-left: 0;
  }

  .hero-proof__item:nth-child(n + 3) {
    border-top: 1px solid rgba(217, 161, 90, 0.18);
  }

  .hero-proof__icon {
    width: 54px;
    height: 54px;
    border-color: rgba(217, 161, 90, 0.74);
  }

  .hero-proof__icon svg {
    width: 30px;
    height: 30px;
  }

  .proof__label {
    max-width: 420px;
    margin: 0 auto 18px;
    font-size: 0.62rem;
    line-height: 1.55;
    letter-spacing: 0.1em;
  }

  .proof__grid,
  .product-grid,
  .spec-grid,
  .field-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .proof-item {
    min-height: 0;
    grid-template-columns: 32px 1fr;
    place-items: center start;
    gap: 8px;
    min-width: 0;
    padding: 9px 8px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .proof-item__icon {
    width: 31px;
    height: 31px;
    margin: 0;
    font-size: 0.78rem;
  }

  .proof-item__text {
    min-width: 0;
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .about__grid,
  .why__grid,
  .split-feature__grid,
  .quote__grid,
  .footer-cta__inner {
    gap: 24px;
  }

  .about__text {
    max-width: 100%;
  }

  .eyebrow {
    margin-bottom: 0.55rem;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .section-title {
    font-size: var(--urban-mobile-section-title);
    line-height: 1.1;
    text-wrap: balance;
  }

  .about__text p,
  .lead,
  .product-card p,
  .gallery__header p,
  .footer-cta p {
    font-size: var(--urban-mobile-body);
    line-height: 1.55;
  }

  .about__media::before {
    inset: -9px 9px 9px -9px;
  }

  .about__image,
  .product-card__image {
    aspect-ratio: 1.45;
  }

  .products__header {
    margin-bottom: 24px;
  }

  .product-grid {
    display: flex;
    gap: 14px;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 82%;
    gap: 10px;
    scroll-snap-align: start;
  }

  .product-card__image {
    height: 190px;
    aspect-ratio: auto;
  }

  .product-card h3 {
    font-size: 0.88rem;
  }

  .text-link {
    font-size: 0.7rem;
  }

  .split-feature__image {
    min-height: 230px;
  }

  .spec-panel {
    padding: 24px 18px;
  }

  .spec-panel .section-title {
    font-size: calc(var(--urban-mobile-section-title) * 0.88);
  }

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

  .spec {
    padding-top: 12px;
  }

  .spec strong {
    font-size: 1.45rem;
  }

  .spec span {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .check-list {
    gap: 10px;
  }

  .check-list li {
    gap: 10px;
    font-size: var(--urban-mobile-body);
    line-height: 1.45;
  }

  .gallery__header {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
  }

  .gallery-grid {
    display: flex;
    gap: 12px;
    margin-right: -14px;
    padding-right: 14px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-grid__stack {
    display: contents;
  }

  .gallery-grid__large,
  .gallery-grid__stack img {
    flex: 0 0 82%;
    height: 220px;
    min-height: 0;
    scroll-snap-align: start;
  }

  .quote__intro .lead {
    margin-bottom: 0;
  }

  .quote-form {
    gap: 10px;
    padding: 16px;
  }

  .field-row {
    gap: 10px;
  }

  .field {
    gap: 6px;
  }

  .field label {
    font-size: 0.64rem;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 40px;
    padding: 0.62rem 0.78rem;
    font-size: 0.9rem;
  }

  .field textarea {
    min-height: 82px;
  }

  .footer-cta {
    padding: 38px 0;
  }

  .footer-main {
    gap: 22px;
    padding: 36px 0 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner {
    display: grid;
  }
}

@media (max-width: 360px) {
  .button {
    width: 100%;
  }

  .hero__actions,
  .footer-cta__actions {
    display: grid;
  }

  .hero__actions {
    grid-template-columns: 1fr;
  }

  .proof__grid,
  .hero-proof__grid {
    grid-template-columns: 1fr;
  }
}
