:root {
  --cream: #F5EFE0;
  --warm-white: #FAF7F2;
  --gold: #C8960C;
  --deep-gold: #9A6F0A;
  --earth: #7A5C2E;
  --dark: #1C1408;
  --muted: #8B7355;
  --green: #3A5C3A;
  --light-green: #5E8B5E;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,150,12,0.15);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-weight: 600;
  color: var(--dark); letter-spacing: 0.03em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--muted);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #fff;
  padding: 0.55rem 1.5rem; border-radius: 2px;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s;
}
.nav-cta:hover { background: var(--deep-gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  position: relative; overflow: hidden;
  padding: 0 5vw;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,150,12,0.12), transparent),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58,92,58,0.15), transparent);
}
.hero-text { position: relative; z-index: 2; padding-top: 80px; }
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300; line-height: 1.08;
  color: var(--cream); margin-bottom: 1.6rem;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; line-height: 1.7; color: #A89880;
  max-width: 420px; margin-bottom: 2.4rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: #fff;
  padding: 0.85rem 2.2rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: background 0.25s;
}
.btn-primary:hover { background: var(--deep-gold); }
.btn-outline {
  border: 1px solid rgba(200,150,12,0.5); color: var(--gold);
  padding: 0.85rem 2.2rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(200,150,12,0.08); }

.hero-visual {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end; align-items: center;
  padding-top: 80px;
}
.hero-card-stack {
  position: relative; width: 340px; height: 420px;
}
.hero-card {
  position: absolute; border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(200,150,12,0.2);
}
.hero-card-1 { width: 240px; height: 300px; top: 40px; right: 0; }
.hero-card-2 { width: 180px; height: 220px; top: 0; right: 200px; opacity: 0.7; }
.hero-card-3 { width: 160px; height: 200px; bottom: 0; right: 80px; opacity: 0.5; }

.ingredient-icon {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.6rem;
  font-size: 3rem;
}
.ic1 { background: linear-gradient(135deg, #2A2010 0%, #3D2E0A 100%); }
.ic2 { background: linear-gradient(135deg, #1A1C10 0%, #2E3A0A 100%); }
.ic3 { background: linear-gradient(135deg, #1A1015 0%, #2A1010 100%); }
.ingredient-icon span { font-family: 'Cormorant Garamond', serif; font-size: 0.7rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* Stats bar */
.stats-bar {
  background: var(--dark); padding: 2rem 5vw;
  display: flex; justify-content: center; gap: clamp(2rem, 6vw, 8rem);
  border-top: 1px solid rgba(200,150,12,0.15);
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.stat-label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }

/* ── ABOUT ── */
.about {
  padding: 8rem 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 6vw;
  align-items: center; background: var(--warm-white);
}
.section-tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 0.7rem;
  margin-bottom: 1rem;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem); font-weight: 300; line-height: 1.15;
  color: var(--dark); margin-bottom: 1.4rem;
}
h2 em { font-style: italic; color: var(--earth); }
.about-text p { font-size: 1rem; line-height: 1.75; color: var(--muted); margin-bottom: 1rem; }
.about-details {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-top: 2rem;
}
.detail-box {
  background: var(--cream); border-radius: 4px; padding: 1.2rem;
  border-left: 3px solid var(--gold);
}
.detail-box strong { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.3rem; }
.detail-box span { font-size: 0.95rem; color: var(--dark); }

.about-visual.single-image {
  width: 100%; height: 100%; min-height: 450px;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.about-visual.single-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s ease;
}
.about-visual.single-image:hover img {
  transform: scale(1.05);
}

/* ── PRODUCTS ── */
.products {
  padding: 8rem 5vw;
  background: var(--dark);
}
.products-header { text-align: center; margin-bottom: 4rem; }
.products-header h2 { color: var(--cream); }
.products-header .section-tag { justify-content: center; }
.products-header .section-tag::before { display: none; }
.products-sub { color: var(--muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }

.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(200,150,12,0.15);
  border-radius: 6px; padding: 2.4rem 2rem;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.product-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.product-card:hover .prod-arrow { opacity: 1; transform: translateX(4px); }
.prod-image { width: 100%; height: 180px; border-radius: 4px; overflow: hidden; margin-bottom: 1.5rem; }
.prod-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); filter: brightness(0.85); }
.product-card:hover .prod-image img { transform: scale(1.08); filter: brightness(1); }
.prod-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--cream); margin-bottom: 0.5rem;
}
.prod-desc { font-size: 0.88rem; line-height: 1.6; color: var(--muted); }
.prod-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; margin-bottom: 1rem; }
.prod-tag {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,150,12,0.1);
  padding: 0.3rem 0.8rem; border-radius: 2px;
}
.prod-arrow { color: var(--gold); font-size: 1.2rem; opacity: 0; transition: all 0.25s; }

/* Quote Buttons */
.quote-nav-link { position: relative; }
.badge { background: var(--gold); color: #fff; padding: 2px 6px; border-radius: 10px; font-size: 0.65rem; margin-left: 4px; font-weight: bold; transition: background 0.3s; }
.badge.has-items { background: #D32F2F; }
.btn-add-quote {
  width: 100%;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(200,150,12,0.5); border-radius: 4px;
  padding: 0.6rem; font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
}
.btn-add-quote:hover { background: var(--gold); color: #fff; }
.btn-add-quote.added { background: #3A5C3A; border-color: #3A5C3A; color: #fff; }

/* Quote Page List */
.quote-items-list { list-style: none; margin: 0; padding: 0; }
.quote-items-list li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem; margin-bottom: 0.8rem;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(0,0,0,0.05);
  border-radius: 4px; font-size: 0.95rem; font-weight: 500; color: var(--dark);
}
.remove-quote { background: none; border: none; cursor: pointer; color: #D32F2F; font-size: 0.9rem; }

/* ── INDUSTRIES ── */
.industries { padding: 7rem 5vw; background: var(--cream); }
.industries-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6vw; align-items: center; }
.ind-list { list-style: none; margin-top: 2rem; }
.ind-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(122,92,46,0.15);
  font-size: 1rem; color: var(--earth);
}
.ind-list li::before {
  content: '✦'; color: var(--gold); font-size: 0.7rem;
}
.moq-banner {
  background: var(--dark); border-radius: 6px; padding: 3rem;
  text-align: center;
}
.moq-banner .moq-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.moq-banner .moq-label { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 0.3rem; }
.moq-banner .moq-note { font-size: 0.9rem; color: #A89880; margin-top: 1.2rem; line-height: 1.5; }
.moq-banner .moq-custom {
  display: inline-block; margin-top: 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(200,150,12,0.4);
  padding: 0.5rem 1.4rem; border-radius: 2px;
}

/* ── CONTACT ── */
.contact { padding: 8rem 5vw; background: var(--warm-white); }
.contact-inner { max-width: 900px; margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--dark); margin-bottom: 1.5rem;
}
.contact-detail {
  display: flex; gap: 0.9rem; margin-bottom: 1.2rem; align-items: flex-start;
}
.contact-detail .icon { font-size: 1.2rem; margin-top: 0.1rem; }
.contact-detail .cd-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); }
.contact-detail .cd-val { font-size: 0.95rem; color: var(--dark); margin-top: 0.15rem; line-height: 1.5; }
.socials { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 2rem; }
.social-link {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid rgba(0,0,0,0.12);
  padding: 0.5rem 1rem; border-radius: 2px; text-decoration: none;
  transition: all 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

.contact-form { background: var(--cream); border-radius: 6px; padding: 2.4rem; }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--dark); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); display: block; margin-bottom: 0.4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  background: #fff; border: 1px solid rgba(122,92,46,0.2);
  border-radius: 3px; font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem; color: var(--dark);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--gold); color: #fff;
  padding: 0.9rem; border: none; border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: background 0.25s;
}
.form-submit:hover { background: var(--deep-gold); }

/* ── FOOTER ── */
.main-footer {
  background: var(--dark); padding: 5rem 5vw 2rem;
  color: var(--muted); border-top: 1px solid rgba(200,150,12,0.15);
}
.auto-container { max-width: 1200px; margin: 0 auto; width: 100%; }
.footer-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem;
}
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--cream); font-weight: 600; margin-bottom: 1.2rem; display: inline-block; }
.footer-logo span { color: var(--gold); }
.logo-widget .text { font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; max-width: 320px; }
.social-nav { display: flex; gap: 0.8rem; list-style: none; margin: 0; padding: 0; }
.social-nav a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(200,150,12,0.3); color: var(--gold); font-size: 0.8rem; text-decoration: none; transition: all 0.3s; }
.social-nav a:hover { background: var(--gold); color: #fff; }

.footer-widget h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--cream); margin-bottom: 1.5rem; line-height: 1.4; }
.newsletter-form .form-group { margin-bottom: 0.8rem; }
.newsletter-form input { width: 100%; padding: 0.8rem 1rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(200,150,12,0.2); border-radius: 2px; color: var(--warm-white); outline: none; font-size: 0.85rem; font-family: 'DM Sans', sans-serif;}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { border-color: var(--gold); }
.theme-btn { width: 100%; background: var(--gold); border: none; padding: 0.8rem; border-radius: 2px; color: #fff; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.3s; }
.theme-btn:hover { background: var(--deep-gold); }

.links-widget .footer-list { list-style: none; margin: 0 0 2rem 0; padding: 0; }
.footer-list li { margin-bottom: 0.8rem; }
.footer-list a { color: var(--muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-list a:hover { color: var(--gold); }

.contact-widget ul { list-style: none; margin: 0; padding: 0; }
.contact-widget li { margin-bottom: 0.8rem; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.contact-widget a { color: var(--muted); text-decoration: none; transition: color 0.3s; }
.contact-widget a:hover { color: var(--gold); }

.footer-copyright {
  background: #151006; padding: 1.5rem 5vw;
}
.copyright-row {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.copy-text p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.6; margin: 0; }
.copy-text a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.copy-text a:hover { color: var(--gold); }
.copy-logo a { font-size: 0.9rem; font-weight: bold; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); text-decoration: none; }
.copy-logo a:hover { color: var(--gold); }

/* ── GALLERY ── */
.gallery { padding: 8rem 5vw; background: var(--warm-white); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.gallery-item {
  position: relative; border-radius: 6px; overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid rgba(200,150,12,0.1);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2rem; background: linear-gradient(to top, rgba(28,20,8,0.9), transparent);
  color: var(--cream); opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-info { opacity: 1; }
.gallery-info span { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; display: block; }
.gallery-info label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); }

/* ── FAQ ── */
.faq { padding: 8rem 5vw; background: var(--dark); color: var(--cream); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid rgba(200,150,12,0.2);
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%; padding: 1.5rem 0; border: none; background: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--warm-white); font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem; cursor: pointer; text-align: left;
}
.faq-question .icon {
  font-size: 1.2rem; color: var(--gold); transition: transform 0.3s;
}
.faq-item.active .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  font-size: 0.95rem; color: var(--muted); line-height: 1.6;
}
.faq-item.active .faq-answer { padding-bottom: 1.5rem; }

/* ── BLOG ── */
.blog { padding: 8rem 5vw; background: var(--cream); }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.blog-card {
  background: #fff; border-radius: 4px; overflow: hidden;
  transition: transform 0.3s; border: 1px solid rgba(0,0,0,0.05);
}
.blog-card:hover { transform: translateY(-8px); }
.blog-img { width: 100%; height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-content { padding: 2rem; }
.blog-date { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--dark);
  margin-bottom: 1rem; line-height: 1.3;
}
.blog-excerpt { font-size: 0.92rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.5rem; }
.blog-link {
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: var(--dark); font-weight: 600;
  display: flex; align-items: center; gap: 0.5rem;
}
.blog-link::after { content: '→'; color: var(--gold); }

/* ── PAGE BANNER ── */
.page-banner {
  background: var(--dark);
  position: relative;
  padding: 140px 5vw 70px;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,150,12,0.15);
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(200,150,12,0.1), transparent),
              radial-gradient(ellipse 40% 60% at 20% 80%, rgba(58,92,58,0.1), transparent);
}
.banner-inner { position: relative; z-index: 2; }
.banner-inner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; color: var(--cream);
  margin-bottom: 0.8rem; line-height: 1.1;
}
.breadcrumb {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
}
.breadcrumb a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { margin: 0 0.5rem; opacity: 0.3; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }
.hero-visual { animation: fadeUp 0.9s 0.3s ease both; }
.banner-inner > * { animation: fadeUp 0.8s ease both; }
.banner-inner > *:nth-child(1) { animation-delay: 0.1s; }
.banner-inner > *:nth-child(2) { animation-delay: 0.25s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-visual { display: none; }
  .about { grid-template-columns: 1fr; }
  .industries-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .stats-bar { flex-wrap: wrap; gap: 1.5rem; }
  .gallery-grid, .blog-grid { grid-template-columns: 1fr; }
}
