@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/pristina');
:root {
  --font-sans: 'Inter', sans-serif;

  /* ── User Color Palette ── */
  --alabaster:      #FCF6EC;
  --beige:          #E8DCCC;
  --sage:           #C49A6C;
  --sage-dark:      #443429;
  --accent-red:     #C1452B;
  --text-dark:      #2C241B;
  --text-mid:       #5c5a50;
  --text-light:     #7a7870;

  /* ── Semantic Mappings ── */
  --bg-main:        var(--alabaster);
  --bg-secondary:   #F0E8D8;
  --bg-dark:        var(--sage-dark);
  
  --text-main:      var(--text-dark);
  --text-muted:     var(--text-mid);
  --text-light:     var(--text-light);
  --text-inverse:   var(--alabaster);
  
  --primary:        var(--sage);
  --primary-hover:  var(--sage-dark);
  --primary-light:  #D4B48C;
  --primary-fade:   rgba(196, 154, 108, 0.06);
  
  --accent:         var(--accent-red);
  --accent-hover:   #A03822;

  --link:           var(--sage);
  --link-hover:     rgba(196, 154, 108, 0.7);
  --footer-bg:      var(--sage-dark);
  --footer-text:    var(--alabaster);
  --header-bg:      rgba(252, 246, 236, 0.92);
  --header-link:    var(--text-dark);
  --sale-bg:        var(--accent-red);
  --text-dark-alt:  var(--text-dark);
  --text-mid-alt:   var(--text-mid);
  --text-light-alt: var(--text-light);
  
  --border-color:   var(--beige);
  --border-hairline:#F4EDE0;
  --shadow-sm:      0 2px 8px rgba(44, 36, 27, 0.04);
  --shadow-md:      0 8px 24px rgba(44, 36, 27, 0.08);

  /* Compatibility variables for existing styles */
  --color-white:    var(--alabaster);
  --color-sky-blue: var(--sage); /* Mapping sky blue to sage for brand consistency */
  --color-industrial-dark: var(--sage-dark);
  --color-metallic-silver: var(--beige);
  --color-scrap-grey: var(--text-mid);
}

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

body {
  font-family: var(--font-sans);
  background: var(--bg-main);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Liquid Glass Widget Class ── */
.liquid-glass {
  position: relative;
  background: rgba(74, 55, 41, 0.4) !important; /* sage-dark/40 */
  backdrop-filter: blur(4px) saturate(120%); /* backdrop-blur-sm */
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(0, 0, 0, 0.15); /* inset 0 1px 1px shadow */
  border: 1px solid transparent; /* reserved space for gradient border */
}
.liquid-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

/* ── Glass Tag ── */
.glass-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 300; /* weight 300 (light) */
  font-size: clamp(1.125rem, 2vw, 1.5rem); /* size lg (18px) → 2xl (24px) */
  color: var(--color-white);
  padding: 12px 24px; /* px-6 py-3 */
  border-radius: 12px; /* rounded-xl */
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  
  /* Liquid Glass Styles */
  position: relative;
  background: rgba(74, 55, 41, 0.4);
  backdrop-filter: blur(4px) saturate(120%);
  -webkit-backdrop-filter: blur(4px) saturate(120%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 1px solid transparent;
}
.glass-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.03));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* ── Floating Tinted Black Navbar ── */
nav {
  position: fixed;
  top: 1.5rem; /* floating navbar spacing */
  left: 5%;
  right: 5%;
  z-index: 1000;
  display: flex;
  align-items: center; /* vertically center logo, links, and toggle */
  justify-content: space-between; /* space brand to the left and links to the right */
  padding: 8px 24px; /* px-4 py-2 padding */
  height: 64px;
  border-radius: 12px; /* rounded-xl */
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, box-shadow 0.4s ease;
  
  /* Light glass background using Alabaster */
  background: rgba(252, 246, 236, 0.92);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.8), 0 8px 24px rgba(44, 36, 27, 0.12);
  border: 1px solid var(--border-hairline);
}
nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
nav.scrolled {
  background: rgba(252, 246, 236, 0.98) !important;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 12px 32px rgba(44, 36, 27, 0.18);
}
nav.nav-hidden {
  transform: translateY(-100px) scale(0.97); /* extremely smooth slide and scale out */
  opacity: 0; /* smooth fade out */
  box-shadow: none;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.4s ease-in, background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav-brand {
  font-family: 'Pristina';
  font-size: 24px; /* Logo size 2xl (24px) */
  font-weight: 600; /* weight 600 */
  letter-spacing: -0.04em; /* tracking -0.04em */
  color: var(--sage-dark);
  padding-top: 11px;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.2s ease;
  display: inline-block;
}
.nav-brand:hover {
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center; /* center links vertically */
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 14px; /* Nav link size sm (14px) */
  font-weight: 500; /* weight 500 */
  letter-spacing: 0.02em;
  color: var(--text-mid); /* subheading color */
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  z-index: 10;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
  border-bottom-color: var(--sage); /* Sage Accent for active highlight */
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 10;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===== SECTIONS ===== */
section {
  padding-top: 5rem;
}
section#home {
  padding-top: 0;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/static/images/bg.png') center center / cover no-repeat;
  transform: scale(1.04);
  opacity: 1;
  filter: blur(0.8px);
  animation: zoomOut 12s ease forwards;
}
@keyframes zoomOut { from { transform: scale(1.06); } to { transform: scale(1.0); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(44, 36, 27, 0.3); /* dark tint overlay using text-dark base */
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 820px;
  animation: riseIn 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Pristina';
  font-size: clamp(2.25rem, 7vw, 4.5rem); /* Heading: responsive text-4xl → text-7xl */
  font-weight: 560; /* weight 400 */
  line-height: 1.05;
  letter-spacing: -0.04em; /* letter-spacing: -0.04em */
  color: var(--color-white);
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-slogan {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem); /* Subheading: size base → lg */
  font-weight: 600; /* weight 400 */
  letter-spacing: 0.01em;
  color: var(--color-white); /* color gray-300 */
  text-shadow: 0 2px 8px rgb(0, 0, 0);
  margin-bottom: 3rem;
}
.hero-cta {
  display: inline-flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Responsive Horizontal page padding: px-6 md:px-12 lg:px-16 ── */
.section {
  padding: 5.5rem 1.5rem; /* px-6 */
}
@media (min-width: 768px) {
  .section {
    padding: 6.5rem 3rem; /* md:px-12 */
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 7rem 4rem; /* lg:px-16 */
  }
}

.section-label {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--sage-dark); /* Sage Accent for links/labels */
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3rem); /* Heading scale */
  font-weight: 400; /* weight 400 */
  line-height: 1.2;
  letter-spacing: -0.04em; /* letter-spacing: -0.04em */
  color: var(--color-industrial-dark);
  margin-bottom: 1.5rem;
}
.section-body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.5vw, 1.125rem); /* Subheading: size base → lg */
  font-weight: 400; /* weight 400 */
  line-height: 1.8;
  color: var(--text-light); /* color gray-300 equivalent */
  max-width: 680px;
}

.highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--color-industrial-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.highlight-card {
  padding: 4rem 3rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 0.3s ease;
}
.highlight-card:hover {
  background-color: rgba(255, 255, 255, 0.02);
}
.highlight-card:last-child { border-right: none; }
.highlight-num {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 0.4rem;
}
.highlight-label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-sky-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.highlight-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--color-metallic-silver);
}

.split { display: grid; grid-template-columns: 1fr 1fr; background: var(--color-white); }
.split-img {
  background: url('/static/images/wp3.JPG') center/cover no-repeat;
  min-height: 460px;
}
.split-content { 
  padding: 5rem 6%; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
}

#about .section { padding-bottom: 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-block { margin-bottom: 2.5rem; }
.about-block h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-industrial-dark);
  margin-bottom: 0.8rem;
}
.about-block p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-scrap-grey);
}

.services-intro {
  max-width: 720px;
  margin: 0 auto 4rem;
  text-align: center;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  background: transparent;
  margin-bottom: 5rem;
}
.service-card {
  background: var(--color-white);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-color); /* Metallic Silver border */
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover { 
  background: var(--color-white);
  border-color: var(--color-sky-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon img {
  max-width: 100%;
  max-height: 100%;
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.service-name {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-industrial-dark);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}
.service-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-scrap-grey);
}

.products-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  background: transparent;
}
.product-card {
  background: var(--color-white);
  padding: 3rem 2rem;
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover { 
  border-color: var(--color-sky-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.product-letter {
  font-family: var(--font-sans);
  font-size: 4rem;
  font-weight: 600;
  color: rgba(96, 125, 139, 0.08);
  line-height: 1;
  margin-bottom: -0.25rem;
}
.product-name {
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-industrial-dark);
  margin-bottom: 0.8rem;
}
.product-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--color-scrap-grey);
}

.qa-banner {
  background: var(--color-industrial-dark);
  border-radius: 16px;
  padding: 4.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 4rem;
}
.qa-block h3 {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 0.8rem;
}
.qa-block p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-metallic-silver);
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 6px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--color-metallic-silver);
}

.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-feature { grid-column: span 3; grid-row: span 1; height: 340px; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(0.85);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.9rem 1.1rem 0.8rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}
.gallery-caption-feature {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-inner img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.lightbox-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-sans);
  font-size: 14px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.lightbox-close:hover { color: #ffffff; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-sky-blue);
  margin-bottom: 0.4rem;
}
.contact-value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 1.6rem;
  line-height: 1.55;
}

.contact-value a:not(.wa-link) {
  color: var(--text-main);
  text-decoration: none;
  border-bottom: 1px solid var(--primary-fade);
  padding-bottom: 1px;
  transition: border-color 0.2s;
}
.contact-value a:not(.wa-link):hover {
  border-color: var(--color-sky-blue);
}

.wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
  line-height: 1;
  transition: transform 0.2s ease;
}

.wa-link img {
  width: 28px;
  height: 28px;
  display: block;
  transition: transform 0.2s ease, filter 0.2s ease;
  border-radius: 4px;
}
.wa-link:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* ── Sunlight Pale Yellow notification note ── */
.contact-form-note {
  background: rgba(196, 154, 108, 0.1); /* Sage at 10% opacity */
  padding: 2.5rem;
  border-left: 4px solid var(--sage);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 36, 27, 0.02);
}
.contact-form-note p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-industrial-dark);
}
.contact-form-note strong { color: var(--color-industrial-dark); font-weight: 600; }
.contact-form-note a {
  color: var(--color-sky-blue);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-form-note a:hover {
  border-bottom-color: var(--color-sky-blue);
}

.map-wrapper {
  width: 100%;
  margin-top: 1.5rem;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  background: var(--color-white);
}
.map-wrapper iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; 
  border: 0;
  transition: all 0.2s;
}

footer {
  background: var(--footer-bg);
  padding: 4.5rem 8% 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-sans);
  font-size: 1.5rem; /* Logo size 24px */
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--color-white);
  margin-bottom: 0.6rem;
  padding-bottom: 16px;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: var(--color-metallic-silver);
  letter-spacing: 0.02em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav {
    top: 1rem;
    left: 4%;
    right: 4%;
    align-items: center; /* override baseline and center vertically on mobile */
    justify-content: space-between; /* space brand and toggle on mobile */
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 1.5rem 5%;
    gap: 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .highlights { grid-template-columns: 1fr; }
  .highlight-card { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 280px; }
  .about-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .contact-form-note {
    padding: 1.8rem;
  }
  .map-wrapper iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  .qa-banner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { flex-direction: column; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-wide { grid-column: span 2; }
  .gallery-tall { grid-row: span 1; }
  .gallery-feature { grid-column: span 2; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .section {
    padding: 4rem 1.25rem;
  }
  .section-title {
    font-size: 1.85rem;
    letter-spacing: -0.2px;
  }
  .section-body {
    font-size: 0.98rem;
    margin-bottom: 2rem !important;
  }
  .contact-value {
    font-size: 0.95rem;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
  }
  .contact-label {
    font-size: 0.65rem;
  }
  .contact-form-note {
    padding: 1.5rem;
  }
  .contact-form-note p {
    font-size: 0.9rem;
    line-height: 1.65;
  }
  .wa-link img {
    width: 24px;
    height: 24px;
  }
  .map-wrapper {
    margin-top: 1.25rem;
  }
  .map-wrapper iframe {
    aspect-ratio: 4 / 3;
  }
  .gallery-wide,
  .gallery-tall,
  .gallery-feature { grid-column: span 1; grid-row: span 1; height: 200px; }
}