:root {
  --blue: #63849a;
  --green: #87a64d;
  --ink: #12212b;
  --muted: #5b6b74;
  --bg: #f5f8fb;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 12px 34px rgba(18, 33, 43, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #edf4f8 0%, #f5f8fb 35%, #ffffff 100%);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container-fluid {
  width: min(1320px, 94%);
  max-width: 1320px;
  margin: 0 auto;
}

.section {
  padding: 82px 0;
}

.kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 2rem);
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.3s ease;
  background: linear-gradient(90deg, var(--blue), #4f6d80);
  color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(99, 132, 154, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

.btn-light {
  background: linear-gradient(90deg, var(--green), #6f8d38);
  color: #fff;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(99, 132, 154, 0.15);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  width: 300px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  justify-content: flex-end;
}

.site-nav a {
  font-size: 0.95rem;
  color: #274152;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.site-nav .active {
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #4f6d80);
}

.site-nav a:hover {
  background: rgba(99, 132, 154, 0.16);
  color: #173040;
  transform: translateY(-1px);
}

.site-nav a.nav-quote {
  background: linear-gradient(90deg, var(--blue), var(--green));
  color: #fff;
}

.site-nav a.nav-quote:hover {
  background: linear-gradient(90deg, #55778d, #739142);
  color: #fff;
}

.nav-toggle {
  border: 1px solid rgba(99, 132, 154, 0.35);
  background: #fff;
  font-size: 1rem;
  display: none;
  padding: 6px 8px;
  border-radius: 10px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 132, 154, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2839, 65, 82, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-cinemagraph {
  min-height: 86vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(135, 166, 77, 0.34), transparent 46%),
    linear-gradient(130deg, rgba(15, 32, 43, 0.76) 22%, rgba(23, 46, 60, 0.44) 65%, rgba(99, 132, 154, 0.35));
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #fff;
  text-align: left;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 620px;
}

.hero-cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-head {
  margin-bottom: 26px;
}

.section-more-link {
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.82rem;
}

.section-more-link:hover {
  color: #3f6278;
}

.texture-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.texture-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 230px;
  box-shadow: var(--shadow);
}

.texture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.texture-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, transparent 30%, rgba(16, 27, 34, 0.54) 100%);
}

.texture-card span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: #fff;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.04em;
}

.texture-card:hover img {
  transform: scale(1.12);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.process-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.creative-process {
  background:
    radial-gradient(circle at 12% 18%, rgba(99, 132, 154, 0.16), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(135, 166, 77, 0.2), transparent 38%),
    linear-gradient(120deg, #f3f8fc 0%, #eef5f9 55%, #f7fbf3 100%);
}

.creative-flow {
  align-items: stretch;
}

.flow-step {
  background: #ffffff;
  border: 1px solid #d7e4ed;
  position: relative;
}

.flow-step::before {
  content: none;
}

.flow-step:not(:last-child)::after {
  content: none;
}

.flow-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(99, 132, 154, 0.16), rgba(135, 166, 77, 0.2));
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 0;
}

.creative-flow .flow-surface {
  color: #1e3442;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.flow-head {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.flow-head h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2.1vw, 1.65rem);
}

.flow-thumb {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.flow-subtitle {
  font-weight: 700;
  color: #2a4a5f;
  margin-bottom: 8px;
}

.creative-flow .btn.btn-sm {
  margin-top: 12px;
  align-self: flex-start;
  background: linear-gradient(90deg, var(--green), #6f8d38);
}

.flow-step {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flow-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 30px rgba(25, 44, 56, 0.18);
}

.flow-step:hover .flow-thumb {
  transform: scale(1.03);
}

.flow-thumb {
  transition: transform 0.35s ease;
}

.flow-card {
  border-radius: var(--radius);
  min-height: 290px;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
}

.flow-surface {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
}

.flow-level {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: #c6d7e2;
}

.flow-surface ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.collection-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 240px;
  scroll-snap-align: start;
}

.collection-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.collection-copy {
  padding: 16px;
}

.collection-card:hover img {
  transform: scale(1.08);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.highlight-card {
  background: linear-gradient(120deg, #dce8f0, #f4f8fb);
  border: 1px solid #d5e2eb;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}

.benefits-section {
  background: linear-gradient(130deg, #f8fbfd, #edf4f8);
}

.benefit-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
}

.benefit-block ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.about-preview-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 85% 20%, rgba(135, 166, 77, 0.2), transparent 40%),
    #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px;
}

.about-intro .about-preview-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.about-intro .about-preview-wrap img {
  border-radius: 14px;
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.blog-card {
  border-radius: 14px;
  border: 1px solid #dce8f0;
  background: #fff;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(16, 35, 45, 0.16);
}

.blog-thumb {
  display: block;
}

.blog-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 16px 18px 0;
  font-size: 0.82rem;
  color: #5d7483;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.blog-cat {
  color: #3f6278;
}



.blog-card h3 {
  padding: 12px 22px 0;
  margin: 0 0 10px;
  line-height: 1.25;
}



.blog-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: var(--blue);
}

.blog-card p {
  padding: 0 22px;
}

.blog-card .read-more {
  display: inline-block;
  margin: 6px 22px 18px;
  color: var(--blue);
  font-weight: 700;
}

.final-cta {
  padding-top: 36px;
}

.final-cta-box {
  background: linear-gradient(120deg, rgba(99, 132, 154, 0.95), rgba(135, 166, 77, 0.92));
  border-radius: 22px;
  padding: 44px 30px;
  color: #fff;
  text-align: center;
}

.final-cta-box h2 {
  margin-bottom: 18px;
}

.cert-section {
  padding: 36px 0 0;
  background: radial-gradient(circle at 15% 20%, rgba(99, 132, 154, 0.2), transparent 40%), radial-gradient(circle at 88% 75%, rgba(135, 166, 77, 0.24), transparent 38%), #ffffff;
}

.cert-box {
  border-radius: 0;
  padding: 40px 26px;
  box-shadow: none;
  text-align: center;
}

.cert-box h2 {
  margin-bottom: 22px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.cert-item {
  background: transparent;
  border: none;
  border-radius: 16px;
  padding: 14px 10px;
}

.cert-item img {
  width: 92px;
  height: 92px;
  border-radius: 999px;
  object-fit: cover;
  margin: 0 auto 10px;
  border: 3px solid #e6f0f6;
}

.cert-item h3 {
  margin: 0;
  font-size: 1.05rem;
  text-align: center;
  
}

.site-footer {
  background: linear-gradient(90deg, #6f8f90 0%, #87a64d 100%);
  color: #e6f1f7;
  padding: 36px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-col h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.site-footer p {
  color: #ffffff;
}

.site-footer .brand {
  width: 300px;
}

.site-footer .brand img {
  width: 100%;
  height: auto;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #ffffff;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.84rem;
  font-weight: 700;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.social-icon {
  line-height: 1;
  font-family: "Manrope", sans-serif;
}

.footer-bottom {
  border-top: 1px solid rgba(225, 237, 245, 0.2);
  margin-top: 26px;
  padding: 14px 0 4px;
}

.footer-bottom-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-wrap p {
  margin: 0;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-bottom-links a {
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.inner-hero {
  padding: 90px 0 70px;
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(135, 166, 77, 0.34), transparent 46%),
    linear-gradient(130deg, rgba(15, 32, 43, 0.76) 22%, rgba(23, 46, 60, 0.44) 65%, rgba(99, 132, 154, 0.35));
}

.inner-hero .container-fluid {
  width: min(1320px, 94%);
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.inner-hero .kicker,
.inner-hero h1,
.inner-hero p {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(8, 24, 31, 0.38);
}

.inner-hero .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.simple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.panel {
  border-radius: 14px;
  border: 1px solid #d8e5ee;
  background: #fff;
  padding: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #c5d7e3;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1000px) {
  .home-benefits .benefit-block {
    grid-template-columns: 1fr;
  }

  .benefit-side-image {
    width: 100%;
    height: 200px;
  }

  .texture-grid,
  .highlight-grid,
  .simple-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid,
  .blog-grid,
  .benefit-wrap,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-intro .about-preview-wrap {
    grid-template-columns: 1fr;
  }

  .flow-step::after {
    display: none;
  }

  .cert-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-wrap {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .brand {
    width: min(220px, calc(100% - 56px));
    flex: 0 1 auto;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #d7e5ef;
    padding: 14px 4%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
    border-radius: 0;
    margin-left: 0;
  }

  .site-nav.show {
    display: flex;
  }

  .hero-cinemagraph {
    min-height: 74vh;
  }

  .texture-grid,
  .highlight-grid,
  .blog-grid,
  .simple-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}













/* Homepage section refinements */
.product-section .section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 12px;
}

.product-section .texture-grid {
  gap: 18px;
}

.product-section .texture-card {
  min-height: 430px;
}

.texture-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  color: #fff;
  z-index: 2;
}

.texture-info h3 {
  margin: 0 0 4px;
  font-size: 1.7rem;
}

.texture-info p {
  margin: 0;
  color: #dfeef7;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-collections {
  background: linear-gradient(130deg, #14313e 0%, #244858 45%, #32536a 100%);
}

.home-collections .kicker,
.home-collections h2 {
  color: #fff;
}

.home-collections .section-more-link {
  color: #ffffff;
}

.home-collections .section-more-link:hover {
  color: #e7f3fb;
}

.home-collections .collection-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  overflow: visible;
}

.home-collections .collection-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(220, 236, 245, 0.24);
  backdrop-filter: blur(6px);
}

.home-collections .collection-card img {
  height: 220px;
}

.home-collections .collection-copy h3,
.home-collections .collection-copy p {
  color: #ffffff;
}

.home-collections .collection-copy p {
  opacity: 0.85;
}

.home-benefits {
  background: linear-gradient(140deg, #f5f9fb 0%, #eef4f7 46%, #f4f8ec 100%);
}

.home-benefits .section-head {
  margin-bottom: 24px;
}

.home-benefits .benefit-wrap {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.home-benefits .benefit-block {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  border: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: start;
}

.home-benefits .benefit-block h2 {
  margin-bottom: 8px;
}

.home-benefits .benefit-block ul {
  padding-left: 16px;
}

.benefit-side-image {
  width: 140px;
  height: 140px;
  border-radius: 14px;
  object-fit: cover;
}

.benefit-content h2 {
  margin-top: 0;
}

@media (max-width: 1000px) {
  .home-benefits .benefit-block {
    grid-template-columns: 1fr;
  }

  .benefit-side-image {
    width: 100%;
    height: 200px;
  }

  .home-collections .collection-row {
    grid-template-columns: 1fr;
  }

  .home-benefits .benefit-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .product-section .texture-card {
    min-height: 320px;
  }
}





/* About page scoped styles */
.about-page .inner-hero::after {
  background:
    radial-gradient(circle at 20% 18%, rgba(135, 166, 77, 0.34), transparent 46%),
    linear-gradient(130deg, rgba(15, 32, 43, 0.76) 22%, rgba(23, 46, 60, 0.44) 65%, rgba(99, 132, 154, 0.35));
}

.about-page .inner-hero .kicker,
.about-page .inner-hero h1,
.about-page .inner-hero p {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.about-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: stretch;
}

.about-profile-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
}

.team-card h3 {
  margin-bottom: 4px;
}

.team-role {
  font-weight: 700;
  color: #4f6f84;
  margin-bottom: 8px;
}

@media (max-width: 1000px) {
  .about-profile-grid {
    grid-template-columns: 1fr;
  }

  .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .about-team-grid {
    grid-template-columns: 1fr;
  }
}





/* Inner pages refinements */
.service-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-item-card {
  border-radius: 14px;
  border: 1px solid #d5e2eb;
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 220px 1fr;
}

.service-item-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.service-item-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.service-item-content ul {
  margin: 8px 0 14px;
  padding-left: 18px;
}

.service-item-content .btn {
  margin-top: auto;
}

.detail-stack {
  display: grid;
  gap: 16px;
}

.detail-row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: start;
}

.detail-row img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.collection-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.collection-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.collection-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

.contact-info-panel .social-links a {
  border-color: rgba(99, 132, 154, 0.45);
  color: #4a6778;
}

.contact-info-panel .social-links a:hover {
  background: rgba(99, 132, 154, 0.1);
}

.map-panel iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 12px;
  margin-top: 10px;
}

.form-grid-2 {
  grid-template-columns: 1fr 1fr;
}



.quote-form-center {
  max-width: 820px;
  margin: 0 auto;
}

@media (max-width: 1000px) {
  .service-list-grid,
  .collection-detail-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-item-card,
  .detail-row {
    grid-template-columns: 1fr;
  }

  .detail-row img,
  .service-item-card img {
    height: 240px;
  }

  .collection-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .products-grid,
  .collection-gallery,
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}







