/* === Fonts === */
@font-face {
  font-family: 'Coda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/coda-400-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Coda';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/coda-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Coda';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/coda-800-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Coda';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/coda-800-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, sans-serif; color: #222; background: #fff; line-height: 1.6; font-size: 1.1rem; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === Container === */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* === Divider === */
.divider {
  width: 60px;
  height: 3px;
  background: #111;
  margin: 16px 0;
}

/* =====================
   HEADER
   ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(102, 102, 102, 0.88);
  backdrop-filter: blur(4px);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.header-phone {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  white-space: nowrap;
}
.header-phone a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header-phone a:hover {
  opacity: 0.8;
}
.site-nav { display: flex; align-items: center; }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  display: block;
  padding: 8px 18px;
  border-radius: 4px;
  color: #fff;
  font-family: 'Coda', sans-serif;
  font-size: 1.1rem;
  transition: background 0.18s;
}
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #fff;
  line-height: 0;
}
.hamburger svg { width: 26px; height: 26px; fill: currentColor; }

/* =====================
   MOBILE NAV DRAWER
   ===================== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 300;
}
.nav-overlay.open { display: block; }
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 260px;
  background: #111;
  z-index: 400;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  padding: 20px 0 40px;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }
.nav-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  align-self: flex-end;
  padding: 4px 20px 16px;
  line-height: 1;
}
.nav-drawer ul { margin-top: 12px; }
.nav-drawer a {
  display: block;
  padding: 12px 24px;
  color: #fff;
  font-family: 'Coda', sans-serif;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.15s;
}
.nav-drawer a:hover { background: rgba(255,255,255,0.08); }

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 560px;
  background: url('../images/hero-background.webp') center/cover no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 120px;
  padding: 0 24px;
}
.hero-icon { width: 170px; height: 170px; flex-shrink: 0; }
.hero-wordmark {
  max-width: 600px;
  width: 100%;
  flex-shrink: 0;
}

/* =====================
   ABOUT
   ===================== */
.about { padding: 150px 0; background: #fff; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-left { text-align: center; }
.about-left h3 {
  font-family: 'Coda', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: #444;
  text-transform: uppercase;
}
.about-left h1 {
  font-family: 'Coda', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 10px;
  color: #111;
}
.about-left .divider { margin: 18px auto; }
.about-left .tagline { color: #404040; font-size: 1.2rem; }
.about-right p { color: #404040; font-size: 1.2rem; line-height: 1.75; }

/* =====================
   GLASS TYPES PANELS
   ===================== */
.glass-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.glass-panel {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.glass-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.glass-panel-text {
  position: relative;
  z-index: 1;
  padding: 32px 40px;
  color: #fff;
}
.glass-panel-text h2 {
  font-family: 'Coda', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.glass-panel-text p { font-size: 1.25rem; line-height: 1.6; opacity: 0.92; }

/* =====================
   PRODUCTS
   ===================== */
.products { padding: 150px 0; background: #fff; }
.products-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: center;
}
.products-image img { border-radius: 4px; }
.products-text h2 {
  font-family: 'Coda', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
}
.products-text p {
  color: #404040;
  font-size: 1.2rem;
  line-height: 1.75;
  margin-top: 16px;
}

/* =====================
   PRODUCT CATEGORIES
   ===================== */
.product-categories {
  position: relative;
  padding: 150px 0;
  background: url('../images/processedglass.webp') center/cover no-repeat;
  color: #fff;
}
.product-categories::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}
.product-categories .container { position: relative; z-index: 1; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.cat-card { text-align: center; }
.cat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  fill: #fff;
  color: #fff;
}
.cat-icon svg { width: 100%; height: 100%; }
.cat-card h4 {
  font-family: 'Coda', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.cat-card p { font-size: 1.25rem; opacity: 0.88; line-height: 1.55; }

/* =====================
   SERVICES
   ===================== */
.services-heading { padding: 200px 0 24px; background: #fff; }
.services-heading h2 {
  font-family: 'Coda', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
}

.services-detail {
  position: relative;
  padding: 150px 0;
  background: url('../images/crushedglassconceptstruckrecyclingbin.webp') center/cover no-repeat;
  color: #fff;
}
.services-detail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.services-detail .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card { text-align: center; }
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 18px;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #fff;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-family: 'Coda', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.service-card p { font-size: 1.25rem; opacity: 0.9; line-height: 1.6; }

/* =====================
   CONTACT
   ===================== */
.contact { padding: 150px 0; background: #fff; }
.contact-left { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; gap: 20px; }
.contact-left img { max-width: 340px; }
.contact-left p { color: #404040; font-size: 1.2rem; line-height: 1.7; }
.contact-right { display: flex; align-items: stretch; }
.map-wrap { height: 360px; width: 100%; border-radius: 4px; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  background: #333;
  padding: 28px 0;
  text-align: center;
  color: #ccc;
}
.site-footer .container { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.ascend-logo { max-width: 200px; opacity: 0.85; }
.site-footer p { font-size: 1rem; }
.site-footer a:hover { color: #fff; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 991px) {
  .hamburger { display: block; }
  .nav-links { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .about-left { text-align: left; }
  .about-left .divider { margin: 18px 0; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-layout { grid-template-columns: 1fr; }
  .products-image { display: none; }
}

@media (max-width: 767px) {
  .glass-panels { grid-template-columns: 1fr; }
  .glass-panel { min-height: 280px; }
  .services-grid { grid-template-columns: 1fr; gap: 40px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { min-height: 420px; padding-top: 40px; }
  .hero-content { flex-direction: column; gap: 32px; }
  .hero-wordmark { max-width: 320px; }
  .hero-icon { width: 140px; height: 140px; }
}

@media (max-width: 575px) {
  .header-phone { font-size: 1rem; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .about-left h1 { font-size: 2rem; }
  .contact-left img { max-width: 260px; }
  .map-wrap { height: 280px; }
}
