/*
  Cornerstone Concrete
  Clean, consistent, human-friendly styles
*/

:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #5b6472;
  --surface: #f5f7fa;
  --border: #e5e7eb;
  --primary: #1f3a5f;
  --accent: #c17a43;
  --accent-dark: #a96233;

  --radius: 12px;
  --shadow: 0 8px 24px rgba(15, 23, 42, 0.08);

  --content: 72rem;
  --content-narrow: 44rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

p {
  margin: 0 0 var(--space-4);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 var(--space-3);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: #0a1429;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }

h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }

h3 { font-size: 1.25rem; }

ul,
ol {
  padding-left: 1.25rem;
  margin: 0 0 var(--space-4);
}

hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-6) 0;
}

/* Layout */
.container {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

.container.narrow {
  max-width: var(--content-narrow);
}

.section {
  padding: clamp(2.5rem, 5.5vw, 4.75rem) 0;
}

.section.tight {
  padding: clamp(1.5rem, 2.8vw, 2.5rem) 0;
}

.hero.section,
.page-hero {
  padding-top: clamp(3rem, 6vw, 5.25rem);
  padding-bottom: clamp(3rem, 6vw, 5.25rem);
}

.section-alt {
  background: var(--surface);
}

.full-bleed {
  width: 100%;
}

.center {
  text-align: center;
}

.muted {
  color: var(--muted);
}

.lead {
  font-size: 1.1rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.section-actions {
  margin-top: var(--space-6);
  text-align: center;
}

/* Core services (simple list) */
.core-services-simple {
  display: grid;
  gap: var(--space-2);
  text-align: center;
}

.core-services-simple h3 {
  margin: 0;
}

.check-icon {
  color: var(--accent-dark);
  font-weight: 800;
  margin-right: 0.35rem;
}

.no-job {
  margin: var(--space-3) auto 0 auto;
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: 10px;
  border: 2px dashed var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transform: rotate(-1deg);
}

.stack {
  display: grid;
  gap: var(--space-3);
}

.stack.tight {
  gap: var(--space-2);
}

.page-content > :not(section) {
  max-width: var(--content);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.header-top {
  background: var(--primary);
  color: #fff;
  padding: var(--space-2) 0;
}

.header-top .container {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  justify-content: space-between;
}

.phone-number {
  display: inline-flex;
  gap: var(--space-2);
  align-items: center;
  color: #fff;
  font-weight: 700;
}

.phone-number:hover {
  color: #fff;
  text-decoration: none;
}

.phone-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  font-size: 0.8rem;
}

.hours {
  font-size: 0.9rem;
  opacity: 0.9;
}

.header-main {
  padding: var(--space-4) 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-logo {
  max-height: 104px;
  width: auto;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.site-nav a {
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  padding: 0.45rem 0.7rem;
  border-radius: 8px;
  transition: background-color 120ms ease, color 120ms ease;
}

.site-nav a:hover {
  color: var(--accent-dark);
  text-decoration: none;
  background: rgba(193, 122, 67, 0.12);
}

.site-nav a[aria-current="page"] {
  color: #fff;
  background: var(--primary);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
}

.nav-cta:hover {
  color: #fff;
  text-decoration: none;
  background: var(--accent-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: 2px solid var(--accent);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.75rem 1.4rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: var(--shadow);
  border: none;
}

.btn:hover {
  background: #162a45;
  color: #fff;
  text-decoration: none;
}

.btn.secondary {
  background: var(--accent);
}

.btn.secondary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  box-shadow: none;
}

.btn.ghost:hover {
  background: var(--primary);
  color: #fff;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #1f3a5f 0%, #27486f 100%);
  color: #fff;
}

.hero h1,
.hero p {
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: var(--space-3);
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  flex-wrap: wrap;
  margin: var(--space-5) 0 var(--space-3);
  width: 100%;
}

.hero-hours {
  opacity: 0.85;
  margin: 0;
}

.hero .btn.ghost {
  border-color: #fff;
  color: #fff;
}

.hero .btn.ghost:hover {
  background: #fff;
  color: var(--primary);
}

/* Page headers */
.page-hero {
  padding: var(--space-6) 0 var(--space-7);
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero .eyebrow {
  color: var(--accent-dark);
  opacity: 1;
}

/* Cards and grids */
.grid {
  display: grid;
  gap: var(--space-5);
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  box-shadow: var(--shadow);
}

.card.soft {
  background: var(--surface);
  box-shadow: none;
}

.promise-card {
  position: relative;
  background-color: transparent !important;
}

.promise-card .muted {
  color: #0b0f14;
}

.promise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/concretepattern.png");
  background-repeat: repeat;
  background-size: 360px 360px;
  opacity: 0.5;
  pointer-events: none;
}

.promise-card > * {
  position: relative;
  z-index: 1;
}

/* Homepage video */
.video-section {
  padding-top: var(--space-6);
  padding-bottom: 0;
}

.video-section + .section {
  padding-top: 0;
}

.video-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.video-section + .section .promise-card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.video-section .video-frame {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-6) 0;
}

/* Reviews carousel */
.reviews-carousel {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  align-items: center;
  position: relative;
}

.reviews-viewport {
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 350ms ease;
  will-change: transform;
  align-items: stretch;
}

.review-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.review-text {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: var(--space-3);
}

.review-name {
  font-weight: 700;
  color: var(--text);
  margin: 0;
  text-align: right;
  padding-right: var(--space-2);
}

.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--accent);
  color: #fff;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 120ms ease, background 120ms ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.carousel-arrow:hover {
  background: var(--accent-dark);
  box-shadow: var(--shadow);
}

.carousel-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.carousel-arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.carousel-arrow.prev {
  left: -22px;
}

.carousel-arrow.next {
  right: -22px;
}

.icon-card {
  text-align: center;
}

.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: var(--space-3);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-weight: 600;
}

.badge-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-4);
}

.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--space-3);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Portfolio images */
.card img {
  border-radius: 10px;
  border: 1px solid var(--border);
}

/* Contact */
.contact-line {
  font-size: 1.2rem;
  font-weight: 700;
  margin: var(--space-3) 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--muted);
}

.contact-value {
  overflow-wrap: anywhere;
  word-break: break-word;
  display: inline-block;
  max-width: 100%;
}

/* Articles */
.post h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-hero {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow);
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote {
  margin-bottom: var(--space-4);
}

.prose {
  max-width: var(--content-narrow);
  margin: 0 auto;
  line-height: 1.82;
  font-size: 1.08rem;
}

.page-hero + .section {
  padding-top: var(--space-6);
}

/* Article header */
.article-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.article-header h1 {
  margin-bottom: var(--space-2);
}

.article-header .article-meta {
  margin-bottom: 0;
}

.prose h2 {
  margin-top: var(--space-6);
  margin-bottom: var(--space-4);
  color: #0a1429;
  line-height: 1.25;
}

.prose h3 {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  color: #12213d;
  line-height: 1.3;
}

.prose img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin: var(--space-4) 0;
}

.prose a {
  color: #123e6d;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #3f6f9f;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
  text-decoration-skip-ink: auto;
  background-image: linear-gradient(to top, rgba(193, 122, 67, 0.22) 0%, rgba(193, 122, 67, 0.22) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.42em;
  background-position: 0 96%;
  transition: color 160ms ease, text-decoration-color 160ms ease, background-size 180ms ease;
}

.prose a:hover,
.prose a:focus-visible {
  color: var(--accent-dark);
  text-decoration-color: var(--accent-dark);
  background-size: 100% 100%;
}

.prose ul,
.prose ol {
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: var(--space-2);
}

/* Article list */
.article-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-3);
}

.article-list li {
  padding: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.article-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  align-items: stretch;
  border: 1px solid #d7dde5;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  overflow: hidden;
}

.article-card:hover {
  transform: translateY(-3px);
  border-color: #c9d2df;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
}

.article-card > div {
  padding: 0 var(--space-4) var(--space-4);
}

.article-thumb {
  width: 100%;
  height: 214px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
  border: 0;
  transform: scale(1.001);
  transition: transform 220ms ease;
}

.article-card:hover .article-thumb {
  transform: scale(1.03);
}

.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.article-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  line-height: 1.3;
}

.article-title:hover {
  color: var(--accent-dark);
}

.article-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
}

/* Latest articles (homepage) */
.home-articles {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: var(--space-3);
  align-items: stretch;
  justify-content: space-between;
}

.home-article {
  flex: 1 1 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 var(--space-2) var(--space-2) var(--space-2);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-article__media {
  display: block;
  margin-bottom: -1rem;
  line-height: 0;
}

.home-article__thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
  margin: 0;
}

.home-article__body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 0;
  margin-top: 0;
}

.home-article__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.home-article__title:hover {
  color: var(--accent-dark);
}

.home-article__date {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* Service list layout */
.service-group {
  margin-bottom: var(--space-6);
}

.service-group h3 {
  margin-bottom: var(--space-3);
}

.service-group ul {
  margin: 0;
  padding-left: 1.1rem;
}

/* Portfolio preview */
.portfolio-preview {
  display: grid;
  gap: var(--space-5);
}

.portfolio-preview img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* Portfolio grid + lightbox */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.portfolio-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 12, 18, 0.82);
  display: none;
  text-align: center;
  padding: var(--space-6);
  overflow: auto;
  z-index: 9999;
}

.lightbox-overlay.active {
  display: block;
}

.lightbox-image {
  max-width: none;
  max-height: none;
  width: auto;
  height: auto;
  transform: scale(0.7);
  transform-origin: center;
  margin: var(--space-6) auto;
  display: inline-block;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
  touch-action: pan-x pan-y;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
}

.lightbox-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.portfolio-list {
  display: grid;
  gap: var(--space-5);
}

.prose blockquote {
  margin: var(--space-5) 0;
  padding: var(--space-4);
  border-left: 4px solid var(--accent);
  background: var(--surface);
  border-radius: 8px;
}

/* Image captions (markdown: image followed by italic line) */
.page-content p img {
  display: block;
  margin: 0 auto var(--space-2) auto;
}

/* Style markdown image captions only when an italic-only paragraph follows an image paragraph. */
.page-content p:has(> img) + p > em:only-child {
  display: block;
  text-align: center;
  font-style: italic;
  color: var(--muted);
  margin: 0 0 var(--space-4) 0;
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-7) 0 var(--space-6);
  margin-top: var(--space-7);
  background: var(--surface);
  text-align: center;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.1fr auto 0.9fr;
  gap: var(--space-7);
  align-items: stretch;
  text-align: left;
}

.footer-top {
  text-align: center;
}

.footer-column-divider {
  width: 1px;
  min-height: 120px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(0, 0, 0, 0.18),
    transparent
  );
}

.footer-divider {
  height: 1px;
  background: var(--border);
  margin: var(--space-5) 0 var(--space-4) 0;
}

.footer-links .footer-nav,
.footer-links .footer-legal {
  justify-content: flex-start;
  margin: 0;
}

.footer-links .footer-legal {
  margin-top: var(--space-3);
}

.footer-nav,
.footer-legal {
  display: grid;
  gap: var(--space-2);
  justify-content: start;
  margin: 0;
}

.footer-nav a,
.footer-legal a {
  color: #13213a;
  font-weight: 600;
  line-height: 1.45;
  width: fit-content;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--accent-dark);
  text-decoration: none;
}

.footer-nav a[aria-current="page"],
.footer-legal a[aria-current="page"] {
  color: #fff;
  background: var(--primary);
  padding: 0.2rem 0.55rem;
  border-radius: 7px;
}

.footer-legal {
  font-size: 0.95rem;
  color: #415069;
}

.footer-legal a {
  color: #415069;
}


.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.footer-link {
  color: var(--accent);
  font-weight: 700;
}

.footer-small {
  font-size: 0.9rem;
  color: #4a596f;
}

/* Simple slider leftovers (homepage currently not using) */
.slider-wrapper,
.slider,
.slide,
.slider-controls,
.slider-arrow,
.slider-dot {
  display: none;
}

/* Responsive */
@media (max-width: 56rem) {
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    padding: var(--space-3);
    min-width: 190px;
    max-width: 240px;
  }

  .site-nav.active {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: var(--space-3);
  }

  .site-nav a {
    width: 100%;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    background: transparent;
    color: var(--text);
  }

  .site-nav a:hover {
    color: var(--accent-dark);
    background: rgba(193, 122, 67, 0.12);
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .home-articles {
    flex-direction: column;
    gap: var(--space-2);
  }

  .articles-section .section-header {
    margin-bottom: var(--space-3);
  }

  .articles-section .section-actions {
    margin-top: var(--space-3);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-5);
  }

  .footer-column-divider {
    display: none;
  }

  .footer-links .footer-nav,
  .footer-links .footer-legal {
    justify-content: center;
    justify-items: center;
  }

  .header-top .container {
    justify-content: center;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: min(100%, 28rem);
    padding: 0.7rem 1rem;
    flex: 0 0 auto;
  }

  .video-section .container {
    padding-left: 0;
    padding-right: 0;
  }

  .video-frame {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

}
