/* ==========================================================================
   G Windoors — Global Stylesheet (v2 · premium refresh)
   ========================================================================== */

:root {
  --bg: #0a0a09;
  --bg-alt: #111110;
  --bg-card: #141412;
  --gold: #c9a35a;
  --gold-light: #e8caa0;
  --gold-dim: rgba(201, 163, 90, 0.35);
  --white: #f6f4ef;
  --text-muted: #a8a49c;
  --text-dim: #7d7a73;
  --border: rgba(201, 163, 90, 0.18);
  --border-soft: rgba(255, 255, 255, 0.07);
  --radius: 3px;
  --container: 1320px;
  --nav-h: 90px;
  --ease: cubic-bezier(.16,.8,.24,1);
  --ff-display: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
  --ff-heading: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
  --ff-label: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', 'Segoe UI', sans-serif;
  --ff-body: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Inter', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: radial-gradient(ellipse 120% 60% at 50% 0%, #1a1815 0%, var(--bg) 55%),
              radial-gradient(ellipse 100% 50% at 100% 100%, #14120e 0%, var(--bg) 60%),
              var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Fixed film-grain overlay — a real element (not a pseudo hidden behind
   opaque section backgrounds) so the texture reads consistently over the
   whole page, hero through footer. */
/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section { padding: 80px 0 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}
.contact-lead { color: var(--text-muted); margin-top: 16px; margin-bottom: 30px; max-width: 460px; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: #25d366;
  color: #06210f;
  border: 1px solid #25d366;
  border-radius: var(--radius);
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-whatsapp svg { width: 20px; height: 20px; fill: #06210f; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37,211,102,0.3); }

.contact-detail-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-detail-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ci-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ci-icon svg { width: 17px; height: 17px; color: var(--gold); }
.contact-detail-list .ci-label {
  display: block;
  font-family: var(--ff-label);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.contact-detail-list div { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.contact-detail-list a { color: var(--text-muted); }
.contact-detail-list a:hover { color: var(--gold); }

.contact-social { margin-top: 36px; }

/* Form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
}
.contact-form h3 {
  font-size: clamp(24px, 2.4vw, 30px);
  margin: 10px 0 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--ff-label);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 8px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 14.5px;
  transition: border-color 0.2s ease;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%237d7a73' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 36px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.form-note {
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--text-dim);
  text-align: center;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form-wrap { padding: 32px 26px; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* Map / location strip */
.contact-map-strip {
  padding: 90px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 400px at 50% 0%, rgba(201,163,90,0.07), transparent 70%),
    linear-gradient(180deg, #060605 0%, #08070a 50%, #060605 100%);
  border-top: 1px solid var(--border-soft);
}
.contact-map-inner { max-width: 620px; margin: 0 auto; }
.contact-map-strip h3 { font-size: clamp(24px, 2.6vw, 34px); margin: 10px 0 16px; }
.contact-map-strip p { color: var(--text-muted); margin-bottom: 28px; }
.contact-map-strip .know-more { margin: 0 auto; }

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.55);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  animation: waPulse 2.6s ease-out infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(0,0,0,0.4); }
@keyframes waPulse {
  0% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 600px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
}

.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-label);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 18px 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--ff-heading);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.5px;
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
}

.gold { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--ff-label);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: #0a0a0a; box-shadow: 0 8px 26px rgba(201,163,90,0.25); }
.btn-outline:hover svg { transform: translateX(4px); }

.btn-solid {
  background: var(--gold);
  color: #0a0a0a;
  border: 1px solid var(--gold);
}
.btn-solid:hover {
  background: transparent;
  color: var(--gold);
}

/* ==========================================================================
   Scroll reveal utilities
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 7, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border-soft);
  transition: height 0.35s var(--ease), background 0.35s var(--ease), border-color 0.35s var(--ease);
}

.site-header.scrolled {
  height: 72px;
  background: rgba(6, 6, 5, 0.94);
  border-bottom-color: var(--border);
}

.nav-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}

.brand-mark {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: height 0.35s var(--ease);
}
.site-header.scrolled .brand-mark { height: 36px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name {
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--white);
}
.brand-text .name em {
  font-style: normal;
  color: var(--gold);
}
.brand-text .sub {
  font-family: var(--ff-label);
  font-size: 9.5px;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-family: var(--ff-label);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  margin: 0 15px;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--gold);
  transition: right 0.3s var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-links a:hover { color: var(--gold); }

.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { right: 0; }

.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 6px; }
.nav-dropdown svg { width: 11px; height: 11px; transition: transform 0.2s ease; }
.nav-dropdown:hover svg { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 250px;
  background: #0e0e0c;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease);
  box-shadow: 0 24px 48px rgba(0,0,0,0.55);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: none;
  border-radius: 3px;
  margin: 0;
}

.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { background: rgba(201,163,90,0.08); color: var(--gold); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-label);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
}
.nav-phone svg { width: 17px; height: 17px; color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: calc(var(--nav-h) + 76px) 0 100px;
  background:
    radial-gradient(ellipse 1000px 650px at 12% 0%, rgba(201,163,90,0.10), transparent 60%),
    radial-gradient(ellipse 900px 700px at 100% 100%, rgba(120,95,50,0.10), transparent 55%),
    radial-gradient(ellipse 1200px 800px at 50% 120%, #17130c, transparent 70%),
    linear-gradient(180deg, #0d0c0a 0%, var(--bg) 40%, #060605 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  width: 100%;
  min-height: 620px;
}

.hero-copy { position: relative; z-index: 3; max-width: 560px; }

.hero-copy h1 {
  font-size: clamp(44px, 4.6vw, 74px);
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero-copy h1 span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: lineUp 0.9s var(--ease) forwards;
}
.hero-copy h1 span:nth-child(1) { animation-delay: 0.15s; }
.hero-copy h1 span:nth-child(2) { animation-delay: 0.30s; }
.hero-copy h1 span:nth-child(3) { animation-delay: 0.45s; }

@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy .eyebrow,
.hero-copy p,
.hero-copy .btn,
.hero-copy .section-divider {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
}
.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-copy .section-divider { animation-delay: 0.6s; }
.hero-copy p { animation-delay: 0.7s; }
.hero-copy .btn { animation-delay: 0.85s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy p {
  color: var(--text-muted);
  font-size: 16.5px;
  max-width: 420px;
  margin-bottom: 36px;
}

/* Full-bleed image layer: a sibling of .container so it always reaches the
   true right edge of the viewport, at any screen width, with no vw math
   that can overflow or clip against the nav/copy. */
.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 54%;
  z-index: 1;
  overflow: visible;
}

.hero-clip {
  position: relative;
  width: 100%;
  height: 100%;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 9% 100%, 0 50%);
  background: #000;
}

.hero-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  transform: scale(1.04) translateY(var(--parallax, 0px));
  transition: transform 0.2s linear;
}

.hero-clip::before {
  content: '';
  position: absolute;
  inset: 0;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 9% 100%, 0 50%);
  box-shadow: inset 0 0 0 1.5px var(--gold), inset 0 -140px 120px -60px rgba(0,0,0,0.75);
  pointer-events: none;
}

.hero-clip::after {
  content: '';
  position: absolute;
  left: -2px; top: 0; bottom: 0;
  width: 70px;
  clip-path: polygon(100% 0, 100% 100%, 0% 50%);
  background: linear-gradient(100deg, transparent 40%, var(--gold) 41%, var(--gold) 43%, transparent 44%);
  opacity: 0.9;
}

.hero-badge {
  position: absolute;
  right: 0;
  left: auto;
  bottom: 40px;
  z-index: 4;
  background: rgba(11,11,10,0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--gold-dim);
  padding: 20px 30px;
  display: flex;
  align-items: baseline;
  gap: 13px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.6);
}

.hero-badge .num {
  font-family: var(--ff-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--gold);
}

.hero-badge .label {
  font-family: var(--ff-label);
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-scroll-cue {
  position: absolute;
  left: 40px;
  bottom: 26px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-label);
  font-size: 10.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) forwards;
  animation-delay: 1s;
}
.hero-scroll-cue .line {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-cue .line::after {
  content: '';
  position: absolute;
  left: 0; top: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}

@media (max-width: 900px) {
  .hero-scroll-cue { display: none; }
}

/* ==========================================================================
   Feature strip
   ========================================================================== */

.feature-strip {
  background:
    radial-gradient(ellipse 700px 300px at 15% 50%, rgba(201,163,90,0.05), transparent 65%),
    radial-gradient(ellipse 700px 300px at 85% 50%, rgba(201,163,90,0.05), transparent 65%),
    linear-gradient(180deg, #060605 0%, #08070a 50%, #060605 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 50px 0;
  position: relative;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  transition: transform 0.4s var(--ease);
}
.feature-item:hover { transform: translateY(-4px); }

.feature-item .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease);
  background: rgba(201,163,90,0.03);
}
.feature-item:hover .icon {
  border-color: var(--gold);
  box-shadow: 0 10px 26px rgba(201,163,90,0.18);
  background: rgba(201,163,90,0.08);
}

.feature-item .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
}

.feature-item h4 {
  font-family: var(--ff-label);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.feature-item p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   About / stats section
   ========================================================================== */

.about-section {
  position: relative;
  padding: 130px 0;
  background:
    radial-gradient(ellipse 900px 600px at 10% 30%, rgba(201,163,90,0.07), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 100% 80%, rgba(201,163,90,0.05), transparent 55%),
    linear-gradient(180deg, #0c0b09 0%, var(--bg-alt) 30%, #0c0b09 100%);
  overflow: hidden;
}

.about-watermark {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  opacity: 0.045;
  pointer-events: none;
  filter: grayscale(1);
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.about-copy h2 {
  font-size: 38px;
  margin-bottom: 20px;
  letter-spacing: 0.2px;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 420px;
  margin-bottom: 30px;
}

.know-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-label);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: all 0.3s var(--ease);
}
.know-more svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease); }
.know-more:hover { border-color: var(--gold); }
.know-more:hover svg { transform: translateX(5px); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: left;
  padding-left: 24px;
  border-left: 1px solid var(--border-soft);
  transition: border-color 0.4s ease;
}
.stat-item:hover { border-left-color: var(--gold); }

.stat-item .stat-num {
  font-family: var(--ff-display);
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}

.stat-item .stat-label {
  font-family: var(--ff-label);
  font-size: 11.5px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background:
    radial-gradient(ellipse 1000px 500px at 50% 0%, rgba(201,163,90,0.055), transparent 60%),
    linear-gradient(180deg, #08070a 0%, #050504 100%);
  border-top: 1px solid var(--border-soft);
  padding: 76px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-brand { display: flex; flex-direction: column; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-brand-row img { height: 34px; }
.footer-brand-row span {
  font-family: var(--ff-display);
  font-size: 19px;
  color: var(--white);
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 13.5px;
  max-width: 300px;
  margin-bottom: 22px;
}

.footer-heading {
  font-family: var(--ff-label);
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}

.footer-links li { margin-bottom: 13px; }
.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: all 0.25s ease;
  position: relative;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

.footer-bottom .tagline { font-family: var(--ff-label); color: var(--gold); text-transform: uppercase; letter-spacing: 2.5px; font-size: 11.5px; }

.social-row { display: flex; gap: 12px; margin-top: 4px; }
.social-row a {
  width: 36px; height: 36px;
  border: 1px solid var(--border-soft);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row a:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(201,163,90,0.2); }
.social-row svg { width: 15px; height: 15px; color: var(--text-muted); }
.social-row a:hover svg { color: var(--gold); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) {
  .nav-right .nav-phone { display: none; }
  .nav-links { gap: 0; }
  .nav-links a { margin: 0 12px; }
}

@media (max-width: 1100px) {
  .hero-grid { min-height: 500px; }
  .hero-bg { left: 58%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

.nav-links-cta { display: none; }
.nav-links-cta::after { display: none; }

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    z-index: 1001;
    padding: 10px;
    margin: -10px;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #08070a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    padding: 30px 30px;
    transform: translateX(-100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    margin: 0;
    border-bottom: 1px solid var(--border-soft);
    -webkit-tap-highlight-color: transparent;
  }
  .nav-links-cta {
    display: inline-flex;
    width: auto;
    border-bottom: none;
    margin-top: 24px !important;
    padding: 15px 32px;
  }
  .dropdown-menu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    display: none;
    width: 100%;
    border: none;
    padding: 0 0 0 16px;
    background: transparent;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { padding: 13px 14px; }

  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { max-width: 100%; }
  .hero-bg { display: none; }
  .hero { padding-bottom: 70px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .nav-quote { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 22px; }
  .hero-copy h1 { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}

/* ==========================================================================
   INTERIOR PAGE BANNER (About, Products, Projects, Contact)
   ========================================================================== */
.page-banner {
  position: relative;
  padding: calc(var(--nav-h) + 64px) 0 40px;
  background:
    radial-gradient(ellipse 1200px 700px at 15% 0%, rgba(201,163,90,0.09), transparent 70%),
    linear-gradient(180deg, #100e0b 0%, var(--bg) 90%);
  border-bottom: 1px solid var(--border-soft);
}
.page-banner .eyebrow { margin-bottom: 16px; }
.page-banner h1 {
  font-size: clamp(32px, 3.8vw, 50px);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.breadcrumb {
  margin-top: 20px;
  font-family: var(--ff-label);
  font-size: 12.5px;
  letter-spacing: 0.8px;
  color: var(--text-dim);
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 8px; opacity: 0.5; }

/* ==========================================================================
   STORY / TWO-COLUMN MEDIA SECTION
   ========================================================================== */
.story-section { padding: 70px 0 110px; }
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.story-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
}
.story-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.story-copy p { color: var(--text-muted); margin-top: 18px; }
.story-copy p + p { margin-top: 14px; }
.story-copy .story-closing {
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 22px;
}

/* ==========================================================================
   WHY US SECTION
   ========================================================================== */
.why-us-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 900px 400px at 85% 0%, rgba(201,163,90,0.06), transparent 65%),
    var(--bg);
}
.why-us-head {
  max-width: 640px;
  margin: 0 auto 60px;
  text-align: center;
}
.why-us-head .eyebrow { display: block; margin-bottom: 16px; }
.why-us-head h2 { font-size: clamp(28px, 3.2vw, 42px); margin-bottom: 18px; }
.why-us-head p { color: var(--text-muted); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  position: relative;
  padding: 34px 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.why-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); }
.why-card .why-num {
  display: block;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: var(--ff-label);
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

@media (max-width: 900px) {
  .why-us-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-us-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PROCESS STEPS
   ========================================================================== */
.process-section {
  padding: 110px 0;
  background:
    radial-gradient(ellipse 700px 300px at 85% 20%, rgba(201,163,90,0.05), transparent 65%),
    linear-gradient(180deg, #060605 0%, #08070a 50%, #060605 100%);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.process-item { position: relative; padding-top: 50px; }
.process-item .step-num {
  position: absolute;
  top: 0; left: 0;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--gold);
}
.process-item h4 {
  font-family: var(--ff-label);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.process-item p { color: var(--text-muted); font-size: 14.5px; line-height: 1.65; }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { padding: 100px 0; text-align: center; }
.cta-band h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 20px; }
.cta-band p { color: var(--text-muted); max-width: 540px; margin: 0 auto 32px; }

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-media { max-width: 420px; margin: 0 auto; }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
}
@media (max-width: 600px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCT ROWS (Products page)
   ========================================================================== */
.product-row { padding: 90px 0; }
.product-row + .product-row { border-top: 1px solid var(--border-soft); }
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-row.reverse .product-media { order: 2; }
.product-row.reverse .product-copy { order: 1; }
.product-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--border);
}
.product-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Abstract glass-sheen placeholder for categories awaiting a photo */
.glass-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 45%, rgba(201,163,90,0.08) 100%), var(--bg-card);
}
.glass-placeholder::before {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 55%; height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: rotate(18deg);
}
.glass-placeholder::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: calc(var(--radius) - 8px);
}

.product-copy .eyebrow { margin-bottom: 14px; }
.product-copy p.lead { color: var(--text-muted); margin-top: 16px; }
.product-specs {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-specs li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-specs li svg { color: var(--gold); flex-shrink: 0; margin-top: 3px; width: 16px; height: 16px; }

/* Glass type cards */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.glass-card {
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}
.glass-card h4 {
  font-family: var(--ff-label);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.glass-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }
.glass-note {
  margin-top: 28px;
  font-family: var(--ff-label);
  font-size: 12.5px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; gap: 36px; }
  .product-row.reverse .product-media,
  .product-row.reverse .product-copy { order: initial; }
  .product-media, .glass-placeholder { max-width: 440px; margin: 0 auto; }
  .glass-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO — SPLIT LAYOUT, TEXT LEFT / TRANSPARENT LOGO RIGHT
   ========================================================================== */
.hero-split .hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  min-height: 560px;
}
.hero-logo-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero-logo-side img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: block;
}
.hero-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 22px;
}
.hero-brand-text .name {
  font-family: var(--ff-display);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
}
.hero-brand-text .name em {
  font-style: normal;
  color: var(--gold);
}
.hero-brand-text .sub {
  font-family: var(--ff-label);
  font-size: 12.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 8px;
}

.hero-badge-inline {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}
.hero-badge-inline .num {
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 28px;
  color: var(--gold);
}
.hero-badge-inline .label {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 900px) {
  .hero-split .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-logo-side { order: -1; max-width: 320px; margin: 0 auto 20px; }
  .hero-logo-side img { max-width: 220px; }
  .hero-brand-text .name { font-size: 26px; }
}
/* ==========================================================================
   CATALOG GRID — uniform card layout for Products & Projects
   Data-driven via js/catalog.js — do not hand-edit card markup per item.
   ========================================================================== */
.catalog-section { padding: 90px 0; }
.catalog-section > .container > .eyebrow { display: block; margin-bottom: 14px; }
.catalog-section h2 { margin-bottom: 20px; }
.catalog-intro { color: var(--text-muted); max-width: 560px; margin-bottom: 36px; }

.catalog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--gold); color: var(--white); }
.filter-btn.active { background: var(--gold); border-color: var(--gold); color: #141412; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.catalog-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.catalog-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.catalog-card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.catalog-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.catalog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.catalog-card-tag {
  font-family: var(--ff-label);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}
.catalog-card-body h3 { font-size: 19px; font-weight: 700; line-height: 1.3; }
.catalog-card-meta {
  font-family: var(--ff-label);
  font-size: 12px;
  color: var(--text-dim);
}
.catalog-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.catalog-card-specs { margin-top: 6px; display: flex; flex-direction: column; gap: 6px; }
.catalog-card-specs li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.catalog-card-specs li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.media-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 45%, rgba(201,163,90,0.08) 100%),
    var(--bg-card);
}
.media-placeholder::before {
  content: '';
  position: absolute;
  top: -60%; left: -30%;
  width: 55%; height: 220%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.09), transparent);
  transform: rotate(18deg);
}

.catalog-loading, .catalog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-family: var(--ff-label);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .catalog-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Product options (e.g. size/ft variants) — CMS-driven
   ========================================================================== */
.catalog-card-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.option-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-family: var(--ff-label);
  font-size: 12px;
  letter-spacing: 0.3px;
  color: var(--white);
  background: rgba(201, 163, 90, 0.06);
}
.option-price {
  color: var(--gold);
  font-weight: 600;
}