/* ==========================================================================
   Jewell Exteriors — styles.css
   ========================================================================== */

/* Google Fonts are loaded via <link> tags in each page's <head>, not @import,
   so font fetching never blocks this stylesheet from applying. */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: #2A2A2A;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ---------- Variables ---------- */
:root {
  --charcoal: #2A2A2A;
  --gold: #C8A951;
  --gold-dark: #ad8f45;
  --linen: #F0EBE1;
  --white: #FFFFFF;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.1;
}
h1 { font-size: 72px; }
h2 { font-size: 52px; }
h3 { font-size: 32px; }
h4 { font-size: 22px; font-family: 'Inter', sans-serif; font-weight: 700; }
p { font-size: 16px; color: #444; }

.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.text-white h1, .text-white h2, .text-white h3, .text-white p { color: #fff; }

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 120px 0; }
.bg-white { background: var(--white); }
.bg-linen { background: var(--linen); }
.bg-charcoal { background: var(--charcoal); color: #fff; }
.bg-charcoal h2 { color: #fff; }
.text-center { text-align: center; }

.section-heading { max-width: 700px; margin-bottom: 60px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 18px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-dark); }
.btn-secondary { background: transparent; color: #fff; border: 1px solid #fff; }
.btn-secondary:hover { background: var(--gold); border-color: var(--gold); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: #444; }

.text-link {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
  font-weight: 600;
}
.text-link:hover { border-bottom-color: var(--gold); }

.card-link {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---------- Fade-in animation ---------- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.navbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img { height: 80px; width: auto; }
.navbar-nav { display: flex; align-items: center; gap: 48px; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-cta { padding: 14px 30px; font-size: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 2100;
}
.hamburger span { width: 26px; height: 2px; background: var(--charcoal); display: block; transition: all 0.3s ease; }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-16px);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}
.mobile-nav-links { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-nav-links a {
  color: #fff;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { color: var(--gold); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--charcoal); color: #fff; padding-top: 90px; }

.footer-statement { text-align: center; padding-bottom: 64px; }
.footer-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.35;
  color: #fff;
  max-width: 720px;
  margin: 0 auto;
}
.footer-statement .rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 30px auto 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-logo { height: 46px; filter: brightness(0) invert(1); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  padding-top: 56px;
  padding-bottom: 56px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col li { margin-bottom: 12px; font-size: 15px; color: #d8d5d0; }
.footer-col a { text-decoration: none; color: #d8d5d0; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-col p { color: #d8d5d0; font-size: 15px; margin-bottom: 8px; }
.footer-divider { height: 1px; background: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 22px 0;
  font-size: 13px;
  color: #bbb;
}
.footer-bottom .footer-credit { color: #9a9a9a; }

/* ==========================================================================
   Home — Hero
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(42,42,42,0.92) 0%, rgba(42,42,42,0.78) 32%, rgba(42,42,42,0.25) 62%, rgba(42,42,42,0) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 0 40px; color: #fff; }
.hero-content h1 { color: #fff; margin-bottom: 26px; }
.hero-content p { color: #e7e3db; font-size: 19px; max-width: 500px; margin-bottom: 42px; }
.hero-buttons { display: flex; gap: 20px; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Services strip ---------- */
.services-strip { background: var(--linen); padding: 60px 0; }
.services-strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  text-align: center;
}
.strip-item .icon { width: 42px; height: 42px; margin: 0 auto 16px; color: var(--charcoal); }
.strip-item .icon svg { width: 100%; height: 100%; }
.strip-item .label { font-size: 14px; font-weight: 600; letter-spacing: 0.3px; }
.strip-item .accent-line { width: 28px; height: 2px; background: var(--gold); margin: 12px auto 0; }

/* ---------- About intro ---------- */
.about-intro { display: grid; grid-template-columns: 60% 40%; }
.about-intro-image { overflow: hidden; min-height: 560px; }
.about-intro-image img { width: 100%; height: 100%; object-fit: cover; min-height: 560px; }
.about-intro-content { padding: 90px 70px; display: flex; flex-direction: column; justify-content: center; }
.about-intro-content p { margin: 24px 0 34px; font-size: 17px; line-height: 1.8; }

/* ---------- Services cards (home) ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.service-card:hover { border-color: var(--gold); }
.service-card-image { height: 280px; overflow: hidden; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-body { padding: 34px; }
.service-card-body h3 { margin-bottom: 14px; }
.service-card-body p { margin-bottom: 22px; }

/* ---------- Stats ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 64px; font-weight: 700; color: var(--gold); }
.stat-label { color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 13px; margin-top: 10px; }

/* ---------- Project showcase (home) ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 16px;
  height: 600px;
  margin-bottom: 40px;
}
.showcase-item { position: relative; overflow: hidden; }
.showcase-item.large { grid-row: 1 / 4; }
.showcase-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.showcase-overlay {
  position: absolute; inset: 0;
  background: rgba(42,42,42,0);
  display: flex; align-items: flex-end; padding: 24px;
  opacity: 0;
  transition: all 0.3s ease;
}
.showcase-overlay span {
  color: #fff; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px;
}
.showcase-item:hover .showcase-overlay { background: rgba(42,42,42,0.55); opacity: 1; }
.showcase-item:hover img { transform: scale(1.06); }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: #fff; border-top: 3px solid var(--gold); padding: 44px 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.testimonial-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 64px; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.testimonial-card p.review { color: #333; font-size: 16px; margin-bottom: 24px; }
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-stars { color: var(--gold); margin-top: 10px; letter-spacing: 3px; font-size: 15px; }

/* ---------- CTA ---------- */
.cta-section {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  text-align: center;
}
.cta-section::before { content: ''; position: absolute; inset: 0; background: rgba(42,42,42,0.75); }
.cta-content { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-content h2 { color: #fff; margin-bottom: 20px; }
.cta-content p { color: #ddd; font-size: 18px; margin-bottom: 38px; }

/* ==========================================================================
   Page hero (Services / About / Projects / Contact)
   ========================================================================== */
.page-hero {
  background: var(--charcoal);
  padding: 190px 0 110px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .section-label { justify-content: center; }
.page-hero p.subtext { color: var(--gold); font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 15px; }

.page-hero-image {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 210px 0 120px;
  text-align: center;
}
.page-hero-image::before { content: ''; position: absolute; inset: 0; background: rgba(42,42,42,0.7); }
.page-hero-image .container { position: relative; z-index: 2; }
.page-hero-image h1 { color: #fff; margin-bottom: 16px; }
.page-hero-image .subtext { color: var(--gold); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 15px; }

.intro-copy { max-width: 760px; margin: 0 auto; text-align: center; font-size: 18px; line-height: 1.8; }

/* ---------- Service detail sections ---------- */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.service-detail + .service-detail { margin-top: 110px; }
.service-detail-image { overflow: hidden; order: 1; }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.service-detail-content { order: 2; }
.service-detail.reverse .service-detail-image { order: 2; }
.service-detail.reverse .service-detail-content { order: 1; }
.service-detail-content h3 { margin-bottom: 20px; }
.service-detail-content p { margin-bottom: 18px; }
.service-detail-content ul { margin: 22px 0 30px; }
.service-detail-content ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 10px;
  color: #444;
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 2px;
  background: var(--gold);
}

/* ---------- Process section ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 44px; }
.process-step .step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.process-step h4 { margin-bottom: 12px; }
.process-step p { font-size: 15px; }

/* ==========================================================================
   About page
   ========================================================================== */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.about-hero-image { background-size: cover; background-position: center; }
.about-hero-content { background: var(--charcoal); display: flex; flex-direction: column; justify-content: center; padding: 90px; }
.about-hero-content h1 { color: #fff; margin-bottom: 18px; }
.about-hero-content .subtext { color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 15px; }

.story-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; }
.story-copy p { margin-bottom: 22px; font-size: 17px; line-height: 1.85; }
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 30px;
  line-height: 1.5;
}

.founder-card { display: grid; grid-template-columns: 40% 60%; background: var(--linen); }
.founder-silhouette { background: var(--charcoal); display: flex; align-items: center; justify-content: center; min-height: 420px; }
.founder-silhouette svg { width: 46%; height: auto; }
.founder-info { padding: 70px; display: flex; flex-direction: column; justify-content: center; }
.founder-info .section-label { margin-bottom: 8px; }
.founder-info h3 { margin-bottom: 24px; font-size: 26px; color: #555; font-family: 'Inter', sans-serif; font-weight: 500; }
.founder-info p { font-size: 17px; line-height: 1.85; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 60px; text-align: center; }
.value-icon { width: 54px; height: 54px; margin: 0 auto 26px; color: var(--gold); }
.value-icon svg { width: 100%; height: 100%; }
.value-item h4 { margin-bottom: 16px; }
.value-item p { font-size: 15px; }

/* ==========================================================================
   Projects page
   ========================================================================== */
.filter-tabs { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; margin: 50px 0 60px; }
.filter-tab {
  padding: 14px 34px;
  background: var(--charcoal);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  transition: all 0.3s ease;
}
.filter-tab:hover { background: #444; }
.filter-tab.active { background: var(--gold); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: inset 0 0 0 0px var(--gold);
}
.project-item.hide { display: none; }
.project-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.project-overlay {
  position: absolute; inset: 0;
  background: rgba(42,42,42,0);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px;
  opacity: 0;
  transition: all 0.3s ease;
}
.project-item:hover { box-shadow: inset 0 0 0 2px var(--gold); }
.project-item:hover .project-overlay { background: rgba(42,42,42,0.8); opacity: 1; }
.project-item:hover img { transform: scale(1.05); }
.project-category { color: var(--gold); text-transform: uppercase; font-size: 12px; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 4px; }
.project-location { color: #fff; font-size: 14px; }

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; }
.contact-form-card {
  background: #fff;
  border-top: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  padding: 56px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.form-group { margin-bottom: 26px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  background: transparent;
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.3s ease;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-bottom-color: #b33; }
.error-msg { color: #b33; font-size: 12px; margin-top: 6px; display: none; }
.form-group.error .error-msg { display: block; }
.submit-btn { width: 100%; margin-top: 8px; }

.contact-info-item { margin-bottom: 36px; }
.contact-info-item h4 { text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-size: 13px; margin-bottom: 10px; font-family: 'Inter', sans-serif; }
.contact-info-item a { color: var(--gold); text-decoration: none; font-size: 18px; font-weight: 600; border-bottom: 1px solid transparent; transition: border-color 0.3s ease; }
.contact-info-item a:hover { border-bottom-color: var(--gold); }
.contact-info-item p { font-size: 16px; color: #333; }
.contact-image img { margin-top: 10px; }

/* ---------- Modal ---------- */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center; justify-content: center;
  z-index: 3000;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal { background: #fff; max-width: 540px; width: 100%; }
.modal-header {
  background: var(--charcoal);
  color: #fff;
  padding: 22px 30px;
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header span { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; }
.modal-close-x { background: none; border: none; color: var(--gold); font-size: 26px; cursor: pointer; line-height: 1; }
.modal-body { padding: 40px 34px; }
.modal-body p { color: #444; font-size: 16px; line-height: 1.75; margin-bottom: 28px; }
.modal-close-btn { background: var(--gold); color: #fff; border: none; padding: 15px 38px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: background 0.3s ease; }
.modal-close-btn:hover { background: var(--gold-dark); }

/* ==========================================================================
   Scroll to top
   ========================================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 52px; height: 52px;
  background: var(--charcoal);
  color: var(--gold);
  border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 900;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn svg { width: 20px; height: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .section { padding: 70px 0; }
  h1 { font-size: 56px; }
  h2 { font-size: 42px; }
  .services-strip-grid { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-intro-image { min-height: 380px; }
  .about-intro-image img { min-height: 380px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 26px; }
  .showcase-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px; }
  .showcase-item.large { grid-row: 1 / 3; }
  .service-detail { grid-template-columns: 1fr; gap: 34px; }
  .service-detail-image, .service-detail-content, .service-detail.reverse .service-detail-image, .service-detail.reverse .service-detail-content { order: unset; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 44px 30px; }
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-image { min-height: 320px; }
  .about-hero-content { padding: 60px 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .founder-card { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; gap: 44px; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 40px 30px; }
  .footer-statement p { font-size: 30px; }
}

@media (max-width: 768px) {
  .section { padding: 45px 0; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  .container { padding: 0 22px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar-inner { padding: 12px 22px; }

  .services-strip-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 46px; }
  .showcase-grid { grid-template-columns: 1fr; grid-template-rows: none; gap: 14px; }
  .showcase-item.large { grid-row: auto; height: 260px; }
  .showcase-item { height: 200px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-statement p { font-size: 25px; }
  .footer-bottom { flex-direction: column; text-align: center; justify-content: center; }
  .projects-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 38px; }
  .page-hero, .page-hero-image { padding: 150px 0 70px; }
  .about-hero-content { padding: 50px 26px; }
  .contact-form-card { padding: 34px 26px; }
}
