/* © Summit Restoration 2026, All Rights Reserved */

/* --BASE-- */

:root {
  --summit-blue: #3246a5;
  --accent-orange: #f39c12;
  --text-dark: #333;
  --black: #000000;
  --white: #ffffff;
  --max-content: 1400px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;  
}
	
body {
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.6;
  background-color: white;
  padding-top: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.nav a:hover,
.button-link:hover,
.cta-button:hover {
  text-decoration: none;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* --NAVIGATION-- */

header {
  /* header bar */
  background-color: var(--summit-blue);
  color: white;
  min-height: 84px;
  padding: 0.75rem 2rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

nav {
  /* header bar content */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}

nav ul {
  /* header bar menu */
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;  
}

nav ul li {
  /* header bar menu items */
  margin: 0;
  padding: 0.75rem;
  position: relative;
}

nav ul li a {
  /* header bar menu text */
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

nav ul li ul {
  /* header bar menu dropdown */
  background: #3246a5;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 1px;
  margin-top: 0;
  min-width: 150px;
  z-index: 10;
 }

nav ul li ul::before {
  /* header bar menu dropdown padding */
  content: "";
  display: block;
  height: 20px;
}

nav ul li:hover ul {	
  display: block;
}

nav ul li ul li {
  /* header bar menu dropdown items */
  padding: 0;
}

nav ul li ul li a {
  /* header bar menu dropdown items */
  color: white;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li ul li a:hover {
  color: white;
  text-decoration: none;
  background-color: black;
  display: block;
}

/* --MENU-- */

.nav-menu {  
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu li ul {
  width: max-content; 
  min-width: 200px;
  max-width: 250px;
  background-color: #3246a5;
}

.nav-menu li ul li a {
  display: block;
  white-space: nowrap;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-menu li ul li a:hover {
  background-color: black;
  color: white;
}

.nav-left,
.nav-right {
  flex: 1;
}

.nav-left img {
  height: 60px;
  width: auto;
}
	
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
  padding-right: 0;
}

.nav-left h1,
.hero-content img {
  font-family: 'Trebuchet MS', 'Century Gothic', sans-serif;
}

/* --BUTTONS-- */

.cta-button {
  background-color: var(--accent-orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #d97706;
}

.hero-cta-button:visited,
.hero-cta-button:active,
.hero-cta-button:focus {
  color: white;
}

.phone-number {
  color: white;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  margin-left: 0.75rem;
  white-space: nowrap;
}

.phone-number i {
  margin-right: 0.5rem;
}

/* --HERO-- */

.hero {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-clip: padding-box;
  position: relative;
  background-color: #3246a5;
  padding: 6rem 2rem;
  min-height: 60vh;
  overflow:hidden;
}

.hero-overlay {
  position:absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.80);
  backdrop-filter: blur(2px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 82px), 0% 100%);
}

.hero-video {
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.hero p {
  line-height: 1.75;
  text-align: center;
  font-size: 1.25rem;
  color: white;
  max-width: 1400px;
  margin: 0 auto;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 82px;
  bottom: -1px;
  background: white;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.hero-content img {
  max-width: 90%;
  height: auto;
  margin-bottom: 1.5rem;
}

.hero-content h1,
.hero-content p {
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: 3rem;
}

.hero-content h2 {
  margin-bottom: 1.25rem;
}

.hero-content .headline {  
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.25rem;
}

.hero-subtext {
  font-size: 1.75rem;
  max-width: 90%;
  text-align: center;
  line-height: 1;
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;  
  word-wrap: break-word;  
}

.hero-subline {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.25rem;
  font-weight: 400;
  opacity: 0.9;
}

.hero-cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #3246a5;
  color: white;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid #3246a5;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-cta-button:hover {
  background-color: #f39c12;
  border: 2px solid #f39c12;
  color: white;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.hero-subpage {
  min-height: 35vh;
  padding: 6rem 0 2rem 0;
}

.hero-subpage .hero-content h1 {
  font-size: 2.75rem;
}

.hero-subpage .hero-content p {
  font-size: 1.25rem;
}

.subpage-closer {
  min-height: 45vh;
  background-color: #f9f9f9;
}

.subpage-closer .hero-overlay {
  background-color: rgba(0, 0, 0, 0.75);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 0% 100%);
}

.hero.subpage-closer::after {
  background: #f9f9f9;
}

.hero-portfolio-top {
  min-height: 25vh;
  padding: 8rem 0 4rem 0;
}

.hero-portfolio-top .hero-content h1 {
  font-size: 3rem;
}

.hero-portfolio-top .hero-content p {
  font-size: 1.25rem;
}

/* --SECTIONS-- */

.section {
  padding: 3rem 2rem;
  background-color: white;
  margin-bottom: 1rem;
}

.section h2 {
  color: var(--summit-blue);
  margin-bottom: 2rem;
  text-align: center;
  font-size: 2rem;  
}

.section h3 {
  margin-bottom: 0;
  text-align: center;
  font-size: 1.5rem;
  color: #333;
}

.section p {
  line-height: 1.75;
  text-align: center;
  font-size: 1.25rem;
  color: #333;
  max-width: 1400px;
  margin: 0 auto;
}

.section .bullets {
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-top: 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #333;
  text-align: left;
}

/* --CONTENT-- */

.float-left {
  float: left;
  margin-right: 3rem;
  margin-bottom: 2rem;
  max-width: none;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.float-right {
  float: right;
  margin-left: 3rem;
  margin-bottom: 2rem;
  max-width: none;
  height: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.float-logo {
  float: right;
  margin-left: 3rem;
  margin-bottom: 1rem;
  max-width: none;
  height: auto;
}

.frames {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;  
}

.frame {
  position: relative;
  border: 3px solid #3246a5;
  border-radius: 6px;
  padding: 2rem;
  background-color: white;
  width: 350px;
  max-width: 90%;
  margin-bottom: 1rem;
}

.frame-content {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.5;
  padding-top: 2rem;
}

.frame-content ul {
  font-size: 1.25rem;
  line-height: 1.5;
  padding-left: 1.5rem;
  color: black;
  list-style-type: disc;
  margin-top: 1rem;
}

.frame-content ul li::marker {
  color: #3246a5;
}

.frame-icon {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  height: 75px;
  background-color: #3246a5;
  border-radius: 50%;
  padding: 0.5rem;
}

.frame-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--summit-blue);
}

.frame-title a {
  color: var(--summit-blue);
  text-decoration: none;
}

.frame-title a:visited,
.frame-title a:hover,
.frame-title a:active {
  color: var(--summit-blue);
  text-decoration: none;
}

.frame-content p.frame-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--summit-blue);
}

.frame-content p.frame-title a {
  color: inherit;
  text-decoration: none;
}

/* --UTILITY-- */

.services-grid {
  text-align: center;
  padding: 4rem 2rem;
}

.services-grid h2 {
  font-size: 2rem;
  color: #3246a5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 1rem;
}

.services-grid p {
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
  max-width: 1400px;
  margin: 0 auto;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  margin-top: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.service-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.75rem 0;
  background: rgba(0,0,0,0.6);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
}

.sample-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.sample-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  justify-items: center;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.sample-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.sample-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.sample-card:hover {
  transform: scale(1.05);
}

.sample-label {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0.75rem 0;
  background: rgba(0,0,0,0.6);
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  text-align: center;
}

.sample-text {
  color: rgb(0, 200, 0);
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;  
}

.sample-subtext {
  color: black;
  font-size: 1.1rem;
  font-weight: normal;
  line-height: 2;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;  
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container::after {
  content: "";
  display: table;
  clear: both;
}

.bullets {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: black;
  font-size: inherit;
  line-height: inherit;
}

.bullets li {
  margin-bottom: 0.5rem;
}

.bullets li::marker {
  color: #3246a5;
}

.service-area-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  padding: 0 2rem;
  max-width: 1500px;
  margin: 2rem auto 0 auto;
}

.service-area-map {
  max-width: 600px;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 4px;
}

.service-area-text {
  flex: 1;
  max-width: 800px;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #333;
  text-align: left;
}

.service-area-text p {
  margin-bottom: 1.25rem;
}

.service-area-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
}

.service-area-column h3 {
  color: #3246a5;
  font-size: 1.25rem;
  margin-bottom: 0;
}

.service-area-column h4 {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 0;
  text-align: center;
}

.service-area-column ul {
  list-style-type: disc;
  padding-left: 1.25rem;
  color: #333;
  line-height: 1.75;
}

.service-area-column li::marker {
  color: #3246a5;
}

.service-area-column {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  align-self: start;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-items: center;
  max-width: 1200px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
}

.team-card {
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 1.5rem;
  text-align: center;
  align-self: start;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: scale(1.02);
}

.team-card h3 {
  color: #3246a5;
  font-size: 1.5rem;
  margin: 1rem 0 0;
}

.team-card h4 {
  color: #333;
  font-size: 1.1rem;  
  font-weight: normal;
  text-align: center;
  margin: 0 0 0.5rem auto;
}

.team-card .team-phone {
  color: #333;
  font-size: 1.25rem;  
  font-weight: normal;
  text-decoration-line: none;
  margin-top: 0;
  margin-bottom: 0;
  display: block;
  text-align: center;
}

.team-card .team-email {
  color: #3246a5;
  font-size: 1.5rem;  
  font-weight: normal;
  text-decoration-line: none;
  text-align: center;
  margin: 0 auto;  
}

.team-portrait {
  display: block;
  margin: 0 auto;
  max-width: 200px;
  border: none;
  border-radius: 4px;
}

/* --RESOURCES (cards)-- */

.resource-card-list {
  max-width: 1400px;
  margin: 2rem auto 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.resource-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  padding: 1.25rem 1.5rem;

  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);

  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
}

.resource-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #fff;
  border: 2px solid #e6e6e6;
}

.resource-icon i {
  font-size: 1.75rem;
  color: #aaa;
}

.resource-text {
  flex: 1;
  min-width: 0;
}

.resource-text h3 {
  margin: 0;
  color: #3246a5;
  font-size: 1.35rem;
  text-align: left;
}

.resource-text p {
  margin: 0.25rem 0 0 0;
  color: #333;
  font-size: 1.05rem;
  text-align: left;
  line-height: 1.4;
}

/* --REVIEWS-- */

.reviews-section {  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2rem 2rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.reviews-overview {
  flex: 0 0 220px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;  
  background-color: white;  
}

.reviews-overview p {
  margin: 0.25rem 0;
}

.reviews-overview .stars {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.reviews-overview
.review-count {
  margin-top: 0;
}

.reviews-section.reviews-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.badges-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 0.75rem;  
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease
}

.badge img {
  max-width: 100%;
  max-height: 100px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: none;
}

.badge:hover {
  transform: scale(1.05);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.badge:focus-visible {
  outline: 2px solid var(--accent-orange, #f39c12);
  outline-offset: 3px;
}

.review-logo {
  max-width: 85px;
  margin-bottom: 0.5rem;
}

.review-button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #3246a5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.review-button:hover {
  background-color: #f39c12;
  color: white;
}

.review-button:visited,
.review-button:active,
.review-button:focus {
  color: white;
}

.stars {
  color: #f39c12;
  font-size: 1.56rem;
  text-align: left;
  margin: 0.5rem 0;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0.5rem 0.5rem 4rem 2rem;
  background-color: white;
  gap: 0.5rem;
  max-width: 1500px;
  margin: 0 auto;  
}

.contact-details,
.map {  
  text-align: center;
  vertical-align: center;  
  flex: 1 1 300px;
  max-width: 600px;
}

.contact-details a {
  color: var(--summit-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-details a:hover {
  color: var(--accent-orange);
}

.map {
  border: none;
  border-radius: 4px;
}

.contact-form {
  background-color: #f9f9f9;
  padding: 2rem 2rem 2rem 2rem;
  margin-bottom: 0;
}

.contact-form h2 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
  color: #3246a5;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
  max-width: calc(100%);
}

.contact-form button {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  width: 25%;
  margin: 0 auto;
  display: block;
  margin-bottom: 2rem;
}

.contact-form button:hover {
  background-color: #d97706;
}

.contact-form label {
  font-weight: bold;
  margin-top: 1rem;
  display: block;
  color: #3246a5;
}

.contact-form select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row input {
  flex: 1;
  max-width: 100%;
}

.form-row input:first-child {
  flex: 2;
}

.form-row input:last-child {
  flex: 1;
}

/* --FOOTER-- */

:root {
  --footer-stack-height: 140px;
}

.footer-spacer {
  height: var(--footer-stack-height);
  background: #f9f9f9;
}

.footer-stack {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 900;
}

footer {
  background-color: black;
  color: white;
  text-align: center;
  padding: 1rem 2rem;
}

footer .license {
  font-weight: 700;
  line-height: 1.5;
}

.badge-section {
  background-color: #f9f9f9;
  position: relative;
  padding: 0 2rem;
  margin-top: 0rem;
}

.badge-wrapper {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 0;
  margin-bottom: 0;
}

.badge-left {
  position: absolute;
  bottom: 0;
  height: 100px;
}

.badge-right {
  position: absolute;
  bottom: 1.25rem;
  right: 1rem;
  height: 80px;
}

/* --MEDIA-- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-items: center;
  max-width: 1600px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.thumb-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 1.25rem;
  text-align: center;
  padding: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

.gallery-thumb:hover .thumb-caption {
  opacity: 1;
}

#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(5px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

#lightbox-close {
  position: absolute;
  bottom: -60px;
  right: 0;
  color: white;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10000;
}

#lightbox-counter {
  color: white;
  font-size: 0.9rem;
  position: absolute;
  bottom: -45px;
  left: 0;
  z-index: 10000;
}

#lightbox-counter i {
  font-size: 1.2rem;
  color: white;
  opacity: 0.75;
  margin-right: 0.5rem;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 3rem;
  color: white;
  cursor: pointer;
  padding: 0 1rem;
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.lightbox-arrow:hover {
  opacity: 1;
}

#lightbox-prev {
  left: -60px;
}

#lightbox-next {
  right: -60px;
}

.floating-cta {
  position: fixed;
  top: 75%;
  right: 0;
  transform: translateY(-75%);
  background: #f39c12;
  color: white;
  padding: 0.75rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  font-weight: bold;
  z-index: 1000;
}

/* --CONTACT-- */

.chat-widget,
.chat-widget * {
  font-family: 'Montserrat', Arial, sans-serif;
}

.chat-widget {
  position: fixed;
  bottom: calc(var(--footer-stack-height) - 35px);
  right: calc(200px);
  width: 300px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transform-origin: bottom right;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}

.chat-widget.open {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.chat-header {
  background-color: #3246a5;
  color: white;
  font-size: 1rem;
  padding: 1rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 0;
  color: white;
  cursor: pointer;
}

.chat-form {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 1rem 1rem 1rem;
  gap: 0.5rem;
}

.chat-form input[type="text"] {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.chat-form button {
  background-color: #f39c12;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.chat-form button:hover {
  background-color: #d97706;
}

.chat-form input::placeholder {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.85rem;
  color: #888;
}

.chat-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  resize: none;
}

.chat-description {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.chat-actions {
  display: flex;
  justify-content: space-around;
  padding: 0.75rem 0;
  border-top: 1px solid #eee;
  width: 85%;
  margin: 0 auto;
}

.chat-actions a {
  color: #3246a5;
  font-size: 1.25rem;
  text-decoration: none;
}

.chat-icon-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 0.7rem;
  color: #3246a5;
  width: 60px;
}

.chat-icon-button i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.chat-icon-button span {
  font-size: 0.65rem;
  color: #555;
  line-height: 1.2;
}

.chat-toggle {
  position: fixed;
  bottom: calc(var(--footer-stack-height) - 24px);
  right: calc(200px);
  background-color: #3246a5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: background-color 0.3s ease;
}

.chat-toggle:hover {
  background-color: #26358a;
}

.chat-toggle i {
  pointer-events: none;
}

.contact-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(5px);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.contact-modal.open {
  display: flex;
}

.contact-modal-content {
  background: #fff;
  color: #333;
  max-width: 1000px;
  width: 90%;
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.contact-modal-content h2 {
  font-size: 2rem;
  color: #3246a5;
  text-align: center;
  margin-bottom: 0.5rem;
}

.contact-modal-content p {
  font-size: 1.25rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #999;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form input,
.modal-form select,
.modal-form textarea {
  padding: 0.85rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 1rem;
  font-family: inherit;
  width: 100%;
}

.modal-form button {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 0.85rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  min-width: 200px;
  margin: 1rem auto 0 auto;
}

.modal-form button:hover {
  background-color: #d97706;
}

.modal-logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-height: 75px;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1rem;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  font-weight: normal;
  font-size: 1rem;
  color: #333;
  gap: 0.5rem;
}

.checkbox-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #3246a5;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: white;
  cursor: pointer;
}

/* --TESTIMONIALS-- */

.testimonials-page .reviews-section {
  padding: 2rem 0;
  display: block;
}

.testimonials-page .reviews-grid {
  /* masonry layout */  
  column-gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.testimonials-page .reviews-grid--4 {
  column-count: 4;
}

.testimonials-page .reviews-grid--3 {
  column-count: 3;
}

.testimonials-page .review-card {
  display: inline-block;
  width: 100%;
  margin: 0 0 1.5rem; /* vertical spacing between cards */
  break-inside: avoid;
  page-break-inside: avoid;
  height: auto;
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  padding: 1.1rem 1.1rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonials-page .review-card:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}

.testimonials-page .review-card-top {
  /* top row */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.testimonials-page .reviewer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.testimonials-page .review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 42px;
}

.testimonials-page .review-avatar-generic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex: 0 0 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Roboto, Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;  
  user-select: none;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.2);
}

.testimonials-page .review-avatar-generic {
  --avatar-sat: 75%;
  --avatar-light: 45%;
}

.testimonials-page .avatar--red1 { background: #ea4335; }
.testimonials-page .avatar--red2 { background: #a73228; }
.testimonials-page .avatar--red3 { background: #b94137; }
.testimonials-page .avatar--orange1 { background: #ff7043; }
.testimonials-page .avatar--orange2 { background: #c36446; }
.testimonials-page .avatar--orange3 { background: #ae4625; }
.testimonials-page .avatar--yellow1 { background: #b1860a; }
.testimonials-page .avatar--yellow2 { background: #a27e14; }
.testimonials-page .avatar--yellow3 { background: #d3bb75; }
.testimonials-page .avatar--green1 { background: #34a853; }
.testimonials-page .avatar--green2 { background: #307d44; }
.testimonials-page .avatar--green3 { background: #5c8567; }
.testimonials-page .avatar--blue1 { background: #1a73e8; }
.testimonials-page .avatar--blue2 { background: #1e5399; }
.testimonials-page .avatar--blue3 { background: #6e9dda; }
.testimonials-page .avatar--purple1 { background: #9c27b0; }
.testimonials-page .avatar--purple2 { background: #aa5fb7; }
.testimonials-page .avatar--purple3 { background: #6d4274; }
.testimonials-page .avatar--teal1 { background: #00acc1; }
.testimonials-page .avatar--teal2 { background: #54a0a9; }
.testimonials-page .avatar--pink1 { background: #ff99cc; }
.testimonials-page .avatar--pink2 { background: #c96195; }

.testimonials-page .reviewer-meta {
  min-width: 0;
}

.testimonials-page .reviewer-name {
  font-weight: 700;
  color: #1a73e8;
  font-family: Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
}

.testimonials-page .review-stars {
  margin-top: 0.15rem;
  display: flex;
  gap: 0.15rem;
  font-size: 0.95rem;
  color: #f39c12;
}

.testimonials-page .review-google-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.testimonials-page .review-text {
  margin: 0;
  color: #5f6368;
  font-family: Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
  flex: 1 1 auto;
  min-height: 0;
  max-height: none;
  overflow: visible;
  padding-right: 0.35rem;  
}

.testimonials-page .reviews-more {
  max-width: 1400px;
  margin: 0.75rem auto 0;
  padding: 0 1rem;
  text-align: center;
}

.testimonials-page .reviews-more a {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: var(--summit-blue);
}

.testimonials-page .reviews-more a:hover {
  text-decoration: underline;
}

.testimonials-summary {
  padding: 2.5rem 1rem 1.75rem;
}

.testimonials-summary .summary-card {
  max-width: 900px;
  margin: 0 auto;  
  padding: 1rem 0 0;  
  text-align: center;
}

.summary-header {
  max-width: 720px;
  margin: 0 auto 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: left;
}

.summary-google-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.summary-business h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #111;
}

.summary-rating-row {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.summary-rating-row .stars {
  color: #f39c12;
  font-size: 1rem;
  line-height: 1;
}

.summary-rating-row .rating-text {
  font-size: 0.95rem;
  color: #black;
}

.summary-description {
  max-width: 720px;
  margin: 0.75rem auto 1.25rem;
  font-size: 0.95rem;
  color: black;
  line-height: 1.6;
  text-align: center;
}

.summary-actions {
  display: flex;
  justify-content: center;
  padding-bottom: 0.25rem;
}

.testimonials-summary .hero-cta-button {
  display: inline-block;
}

/* --MOBILE-- */

.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  background-color: #3246a5;
  color: white;
  padding: 2rem;
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 999;
  box-sizing: border-box;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.mobile-menu ul {
  list-style: none;  
  text-align: center;
  padding-left: 0;
  margin: 0;
  width: 100%;  
}

.mobile-menu ul li {
  margin: 0.75rem 0;
  font-size: 1.5rem;
  text-align: center;
}

.mobile-menu ul a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.mobile-menu li {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-menu ul li {
  width: 100%;
  text-align: center;
  margin: 0.75rem 0;
}

.mobile-menu ul li a {
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
  width: 100%;
  padding: 0;
  margin: 1rem 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-toggle i {
  transition: transform 0.3s ease;
}

.mobile-submenu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 0.5rem;
  margin-left: 1rem;
}

.mobile-submenu li a {
  font-size: 1.2rem;
  color: white;
  text-decoration: none;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  width: 100%;
  max-width: 100%;
}

.mobile-contact .phone-number {
  font-size: 1.5rem;
  color: white;
  text-align: center;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.mobile-contact .cta-button {
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  width: auto;
  align-self: center;
  margin-top: 0.75rem;
}

.mobile-menu .social-icons {
  position: absolute;
  bottom: 1.5rem;
  left: 1rem;
  transform: none;
  display: flex;
  gap: 1rem;
  font-size: 1.75rem;
}

.mobile-menu .social-icons a {
  color: white;
  font-size: 1.5rem;
}

.mobile-header {
  display: none;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #f39c12;
}

.section-divider {
  width: 60%;
  margin: 2rem auto 0 auto;
  border: none;
  border-top: 1px solid #ccc;
}

.spacer {
  display: block;
  height: 5rem;
}

a.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}

/* --OVERLAY-- */

.thankyou-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.thankyou-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.thankyou-overlay[hidden] {
  display: none !important;
}

.thankyou-modal {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  max-width: 800px;
  width: 90%;
  text-align: center;
  animation: modalPop 250ms ease;
}

.thankyou-modal h2 {
  color: var(--summit-blue);
  margin-bottom: 1rem;
}

.thankyou-small {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #666;
}

@keyframes modalPop {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* --RESPONSIVE-- */

@media (min-width: 769px) {
  .hero-content img {
    height: 250px;
    width: auto;
    max-width: none;
  }
}

/* Tablets and smaller */
@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phones and smaller */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  body {
    padding-top: 60px;
  }

  nav,
  .nav-left,
  .nav-right,
  .nav-menu {
    display: none !important;
  }

  .mobile-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3246a5;
    height: 80px;
    width: 95%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 1rem;
  }

  .hamburger {
    display: block;
    z-index: 1000;
  }

  .mobile-header .hamburger {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1;
    padding: 0;
  }

  .hamburger i {
    margin: 0;
    line-height: 1;
  }

  .mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    max-width: 100%;
    background-color: #3246a5;
    padding: 2rem;
    z-index: 998;
    display: none;
    flex-direction: column;
    gap: 1rem;
  }

  .mobile-submenu {
    margin-left: 0;
    align-items: center;
  }

  .mobile-submenu li {
    text-align: center;
  }

  .mobile-contact .cta-button {
    font-size: 1.125rem;
    padding: 1rem 2rem;
    margin-top: 1.25rem;
  }

  .mobile-menu .social-icons a {
    font-size: 1.75rem;
  }

  .section p {
    text-align: justify;
  }

  .cta-button {
    width: auto;
    max-width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .frames {
    flex-direction: column;
    align-items: center;
  }

  .frame {
    width: 80%;
    padding: 1.5rem;
    padding-top: 2.5rem;
    margin: 2rem auto;
  }

  .frame-content {
    font-size: 1.125rem;
    line-height: 1.6;
  }

  .frame-content p {
    color: #3246a5;
    font-weight: bold;
    text-align: center;
  }

  .frame-content ul {
    font-size: 1.125rem;
    line-height: 1.6;
    padding-left: 1.5rem;
  }

  .frame-icon {
    top: -45px;
    height: 70px;
    padding: 0.75rem;
  }

  .hero {
    background-attachment: scroll;
    background-position: center top;
    background-size: cover;
  }

  .hero .mobile-justify {
    text-align: justify;
  }

  .sample-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 0 1rem;
    justify-items: center;
  }

  .sample-card {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .service-area-columns {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
    font-size: 1.1rem;
  }

  .service-area-columns h3 {
    font-size: 1.5rem;
  }

  .service-area-columns h4 {
    font-size: 1.25rem;
  }

  .service-area-column {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    max-width: 100%;
    margin: 0 auto;
  }

  .team-card p {
    text-align: center;
  }

  .float-left,
  .float-right {
    float: none !important;
    display: block !important;
    margin: 0 auto 1.25rem auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .chat-toggle {
    width: 90px;
    height: 90px;
    font-size: 2.25rem;
  }
}

/* Small phones */

@media (max-width: 700px) {
  .footer-stack {
    position: static;
  }

  .footer-spacer {
    height: 0;
  }

  .contact-form {
    padding-bottom: 2rem;
  }

   .reviews-section.reviews-badges {
    flex-direction: column;
    text-align: center;
  }

  .badges-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .badge {
    min-height: 84px;
  }

  .badge img {
    max-height: 48px;
  }

  .testimonials-page .reviews-grid {
    column-count: 1;
  }
}

@media (max-width: 1100px) {
  .testimonials-page .reviews-grid {
    column-count: 2;
  }

  .reviews-section.reviews-badges {
    flex-direction: column;
    text-align: center;
  }

  .badges-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}