:root {
  --ink: #151515;
  --ink-soft: #43515b;
  --surface: #fffdf9;
  --surface-strong: #fff5ed;
  --surface-dark: #111111;
  --card: #ffffff;
  --line: rgba(18, 22, 25, 0.1);
  --brand: #f36d21;
  --brand-deep: #cb5513;
  --brand-soft: #ffe3d2;
  --teal: #2b859f;
  --shadow-lg: 0 24px 60px rgba(20, 20, 20, 0.14);
  --shadow-md: 0 18px 34px rgba(20, 20, 20, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(243, 109, 33, 0.14), transparent 32rem),
    linear-gradient(180deg, #fffdf8 0%, #f6f2ec 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 2000;
  background: var(--surface-dark);
  color: #fff;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 251, 246, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20, 20, 20, 0.06);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title,
.eyebrow,
h1,
h2,
h3,
.micro-label,
.btn,
.chat-launch-title,
.detail-label {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: 0.02em;
}

.brand-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.site-nav,
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-nav a {
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(180deg, #fb7f36 0%, var(--brand) 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(243, 109, 33, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  border-color: rgba(20, 20, 20, 0.12);
}

.btn-tertiary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20, 20, 20, 0.12);
}

.nav-toggle,
.chat-minimize,
.chat-launch {
  appearance: none;
  border: 0;
  background: transparent;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
}

.mobile-nav-panel {
  display: none;
  padding: 0 1rem 1rem;
  gap: 0.75rem;
}

.mobile-nav-panel a {
  display: block;
  padding: 0.7rem 0;
  font-weight: 700;
}

.section {
  padding: 5rem 0;
}

.hero {
  padding: 4rem 0 4.5rem;
}

.hero-grid,
.why-grid,
.area-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.section-heading h2,
.why-copy h2,
.area-copy h2,
.contact-copy h2 {
  margin: 0;
  line-height: 0.95;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3.4rem, 6vw, 6.2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--brand-deep);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  background: currentColor;
}

.lede,
.section-heading p,
.why-copy > p,
.area-copy p,
.contact-copy p {
  color: var(--ink-soft);
}

.hero-actions,
.form-actions,
.chat-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-phone-card {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.1rem;
  margin: 1.4rem 0 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(20, 20, 20, 0.06);
}

.hero-phone-card a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.micro-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-deep);
  text-transform: uppercase;
}

.trust-strip,
.area-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-strip span,
.area-points span {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(20, 20, 20, 0.08);
  color: var(--ink-soft);
  font-weight: 600;
}

.hero-visual-shell {
  position: relative;
  padding-top: 1.5rem;
}

.hero-photo {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background: #0d0d0d;
}

.hero-photo img {
  width: 100%;
  height: 29rem;
  object-fit: cover;
}

.logo-plate,
.hero-facts,
.legacy-card,
.service-card,
.split-card,
.gallery-card,
.address-card,
.review-card,
.service-form {
  box-shadow: var(--shadow-md);
}

.logo-plate {
  position: absolute;
  top: 0;
  left: 1.2rem;
  z-index: 2;
  width: min(72%, 28rem);
  padding: 0.7rem;
  border-radius: var(--radius-lg);
  background: rgba(19, 19, 19, 0.9);
}

.logo-plate img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 0.4rem);
}

.hero-facts {
  position: absolute;
  right: 1rem;
  bottom: -1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
  width: min(82%, 26rem);
  background: rgba(255, 249, 244, 0.97);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 20, 20, 0.08);
}

.hero-facts article {
  padding: 0.35rem 0.45rem;
}

.fact-label,
.detail-label {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--brand-deep);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-facts strong {
  font-size: 1rem;
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 245, 237, 0.82) 100%);
}

.section-heading {
  max-width: 46rem;
  margin-bottom: 1.6rem;
}

.section-heading h2,
.why-copy h2,
.area-copy h2,
.contact-copy h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  margin-bottom: 0.8rem;
}

.services-grid,
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.service-card,
.split-card,
.review-card,
.address-card,
.service-form {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 22, 25, 0.08);
}

.service-card h3,
.split-card h3,
.gallery-card figcaption,
.address-card h3,
.review-card p,
.footer-column h3 {
  margin-top: 0;
}

.service-card p,
.split-card p,
.review-card p,
.address-card p,
.gallery-card figcaption,
.footer-brand p,
.footer-column span,
.footer-column a,
.form-note,
.chat-powered,
.chat-header span,
.chat-status,
.form-status {
  color: var(--ink-soft);
}

.service-card a {
  color: var(--brand-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
}

.service-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p,
.split-card p,
.review-card p,
.address-card p {
  margin-bottom: 0;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(180deg, #fff1e5 0%, #ffd3b7 100%);
  color: var(--brand-deep);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.image-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

.legacy-card {
  padding: 1.1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #fff3e8 100%);
  border: 1px solid rgba(18, 22, 25, 0.08);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.value-grid article {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 22, 25, 0.06);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.split-card {
  min-height: 100%;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 22, 25, 0.08);
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 19rem;
  object-fit: cover;
  object-position: center;
}

.gallery-card figcaption {
  padding: 0.9rem 1rem 1rem;
}

.address-card {
  padding: 1.65rem;
  background:
    linear-gradient(180deg, rgba(243, 109, 33, 0.1) 0%, rgba(255, 255, 255, 0.96) 100%),
    #fff;
}

.address-card a,
.contact-details a,
.footer-column a {
  color: var(--ink);
  font-weight: 700;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.contact-details > div {
  padding: 1rem 0;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-form label,
.chat-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-weight: 700;
}

.service-form input,
.service-form select,
.service-form textarea,
.chat-form input,
.chat-form textarea {
  width: 100%;
  padding: 0.88rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: #fff;
  color: var(--ink);
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus,
.chat-form input:focus,
.chat-form textarea:focus {
  outline: 2px solid rgba(243, 109, 33, 0.18);
  border-color: var(--brand);
}

.message-field {
  margin-top: 1rem;
}

.checkbox {
  flex-direction: row;
  align-items: center;
  margin: 1rem 0 1.2rem;
  font-weight: 600;
}

.checkbox input {
  width: 1rem;
  height: 1rem;
}

.site-footer {
  padding: 3.5rem 0 7rem;
  background: linear-gradient(180deg, #f5ede3 0%, #efe4d6 100%);
  color: var(--ink);
  border-top: 1px solid rgba(18, 22, 25, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 1.2rem;
}

.footer-brand {
  padding-right: 1rem;
}

.footer-brand img {
  width: min(17rem, 100%);
  margin-bottom: 0.9rem;
}

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

.footer-column h3 {
  margin-bottom: 0.4rem;
  font-size: 1.5rem;
}

.footer-brand p,
.footer-column span {
  color: var(--ink-soft);
}

.footer-column a {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(18, 22, 25, 0.1);
  color: var(--ink-soft);
}

.mobile-callbar {
  display: none;
}

.chatbox {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  width: min(22rem, calc(100vw - 1.25rem));
}

.chat-launch {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-width: 10.4rem;
  max-width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.94);
  color: #fff;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.22);
  cursor: pointer;
}

.chat-launch-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 50%;
  background: linear-gradient(180deg, #fb7f36 0%, var(--brand) 100%);
  flex-shrink: 0;
}

.chat-launch-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.chat-launch-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.chat-launch-title {
  font-size: 1.02rem;
  line-height: 1;
}

.chat-launch-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.7rem);
  width: min(22rem, calc(100vw - 1.25rem));
  height: min(32rem, 70vh);
  max-height: min(32rem, 70vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0.85rem;
  border-radius: 1.35rem;
  background: rgba(255, 252, 248, 0.97);
  border: 1px solid rgba(20, 20, 20, 0.12);
  box-shadow: 0 28px 64px rgba(11, 11, 11, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.chatbox[data-chat-state="open"] .chat-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.chat-header,
.chat-actions {
  display: flex;
}

.chat-header {
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.chat-header-copy {
  min-width: 0;
}

.chat-header strong {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.22rem;
  line-height: 1;
}

.chat-header-copy span {
  display: block;
  margin-top: 0.12rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.chat-minimize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.06);
  color: var(--ink-soft);
  cursor: pointer;
  flex-shrink: 0;
}

.chat-minimize svg {
  width: 1rem;
  height: 1rem;
}

.chat-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.75rem 0 0.35rem;
}

.chat-actions {
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 0;
}

.chat-actions button {
  padding: 0.38rem 0.64rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 700;
}

.chat-messages {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-right: 0.15rem;
}

.chat-bubble {
  max-width: 88%;
  padding: 0.72rem 0.82rem;
  border-radius: 1rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.chat-bubble-system {
  align-self: flex-start;
  border-bottom-left-radius: 0.28rem;
  background: rgba(243, 109, 33, 0.12);
  color: var(--ink);
}

.chat-bubble-user {
  align-self: flex-end;
  border-bottom-right-radius: 0.28rem;
  background: #171717;
  color: #fff;
}

.chat-followup {
  margin-top: 0.15rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
}

.chat-followup-copy {
  margin-bottom: 0.6rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.chat-primary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.chat-primary-actions .btn,
.chat-form-actions .btn {
  min-height: 2.3rem;
  padding: 0.5rem 0.8rem;
  font-size: 0.94rem;
}

.chat-form {
  display: grid;
  gap: 0.62rem;
  margin-top: 0.7rem;
}

.chat-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.chat-status {
  margin: 0;
  font-size: 0.82rem;
}

.chat-inputbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  padding-top: 0.7rem;
  margin-top: 0.65rem;
  border-top: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 252, 248, 0.97);
}

.chat-input-wrap {
  display: block;
}

.chat-inputbar input {
  width: 100%;
  min-width: 0;
  padding: 0.78rem 0.92rem;
  border-radius: 999px;
  border: 1px solid rgba(20, 20, 20, 0.14);
  background: #fff;
  color: var(--ink);
  font-size: 0.92rem;
}

.chat-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(180deg, #fb7f36 0%, var(--brand) 100%);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.chat-send svg {
  width: 1.08rem;
  height: 1.08rem;
}

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

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle,
  .mobile-nav-panel[data-open="true"] {
    display: flex;
  }

  .hero-grid,
  .why-grid,
  .area-grid,
  .contact-grid,
  .split-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid,
  .value-grid,
  .contact-details,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card-wide {
    grid-column: auto;
  }

  .hero-photo img {
    height: 22rem;
  }

  .hero-facts {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-copy h1 {
    font-size: 3.3rem;
  }

  .section-heading h2,
  .why-copy h2,
  .area-copy h2,
  .contact-copy h2 {
    font-size: 2.6rem;
  }

  .services-grid,
  .gallery-grid,
  .reviews-grid,
  .value-grid,
  .contact-details,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .logo-plate {
    position: static;
    width: 100%;
    margin-bottom: 0.8rem;
  }

  .hero-visual-shell {
    padding-top: 0;
  }

  .hero-photo img {
    height: 20rem;
  }

  .mobile-callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: block;
    padding: 0.65rem 0.75rem;
    background: rgba(17, 17, 17, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-callbar a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 3rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #fb7f36 0%, var(--brand) 100%);
    color: #fff;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
  }

  .site-footer {
    padding-bottom: 6.8rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .chatbox {
    right: 0.5rem;
    bottom: 4.95rem;
    width: min(18.5rem, calc(100vw - 1rem));
  }

  .chat-launch {
    min-width: 0;
    width: 100%;
    padding: 0.72rem 0.8rem;
  }

  .chat-panel {
    width: min(18.5rem, calc(100vw - 1rem));
    height: min(26rem, 65vh);
    max-height: min(26rem, 65vh);
    padding: 0.78rem;
  }

  .chat-primary-actions {
    grid-template-columns: 1fr;
  }

  .chat-form-grid {
    grid-template-columns: 1fr;
  }
}
