/* =============================================
   PRIME VANITY & KITCHEN – Professional Stylesheet
   Registered Canadian Business · Brampton, Ontario
   ============================================= */

:root {
  --navy:     #0d1b2a;
  --navy-2:   #152333;
  --navy-3:   #1e2f40;
  --gold:     #b8973a;
  --gold-lt:  #d4b05c;
  --gold-dk:  #8a6f28;
  --cream:    #faf8f4;
  --cream-2:  #f2ede4;
  --cream-3:  #e8e0d2;
  --white:    #ffffff;
  --text:     #2a2a2a;
  --text-2:   #555047;
  --text-3:   #8a8278;
  --border:   #ddd8ce;

  --r-sm:  3px;
  --r-md:  6px;
  --r-lg:  10px;

  --trans: 0.3s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 76px;

  --f-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --f-sans:  'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  font-size: 0.76rem;
  padding: 9px 0;
  border-bottom: 1px solid rgba(184,151,58,0.2);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 13px; height: 13px; flex-shrink: 0; opacity: 0.7; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar-right a { color: rgba(255,255,255,0.72); transition: color var(--trans); }
.topbar-right a:hover { color: var(--gold-lt); }
.topbar-badge {
  background: var(--gold); color: var(--navy);
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 2px 8px; border-radius: 2px;
}

/* ===== NAV ===== */
.nav-header {
  position: sticky; top: 0; z-index: 900;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(13,27,42,0.08);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-emblem {
  width: 44px; height: 44px;
  background: var(--navy); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-emblem svg { width: 26px; height: 26px; }
.logo-text { line-height: 1.2; }
.logo-name { display: block; font-family: var(--f-serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.logo-tagline { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-dk); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--text-2); padding: 8px 14px; border-radius: var(--r-sm);
  transition: all var(--trans); white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--navy); background: var(--cream-2); }
.nav-cta-btn { background: var(--navy) !important; color: var(--white) !important; padding: 9px 20px !important; }
.nav-cta-btn:hover { background: var(--gold-dk) !important; color: var(--white) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--trans); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sans); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 30px; border-radius: var(--r-sm); border: none;
  cursor: pointer; transition: all var(--trans); text-decoration: none;
}
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,27,42,0.25); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-dk); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; justify-content: center; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream-2); }
.bg-white { background: var(--white); }

/* ===== TYPOGRAPHY ===== */
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-dk); margin-bottom: 12px; }
.eyebrow.light { color: var(--gold-lt); }
h1, h2, h3 { font-family: var(--f-serif); line-height: 1.2; }
.h-xl { font-size: clamp(2.6rem,5vw,4rem); font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.h-lg { font-size: clamp(1.9rem,3.5vw,2.8rem); font-weight: 700; color: var(--navy); margin-bottom: 18px; }
.h-md { font-size: clamp(1.3rem,2.5vw,1.8rem); font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.h-xl.light, .h-lg.light, .h-md.light { color: var(--white); }
.lead { font-size: 1.05rem; color: var(--text-2); line-height: 1.75; max-width: 580px; }
.lead.light { color: rgba(255,255,255,0.72); }
.lead.center { margin: 0 auto; text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }

/* ===== HERO ===== */
.hero {
  background: var(--navy); position: relative; overflow: hidden;
  min-height: 580px; display: flex; align-items: center;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.02) 39px, rgba(255,255,255,0.02) 40px);
}
.hero-image-panel { position: absolute; top: 0; right: 0; width: 48%; height: 100%; overflow: hidden; }
.hero-image-panel::before {
  content: ''; position: absolute; top: 0; left: 0; width: 200px; height: 100%;
  background: linear-gradient(to right, var(--navy), transparent); z-index: 1;
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 580px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(184,151,58,0.15); border: 1px solid rgba(184,151,58,0.35);
  color: var(--gold-lt); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 2px; margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s both;
}
.hero-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
.hero-title { font-family: var(--f-serif); font-size: clamp(2.4rem,5vw,3.6rem); font-weight: 700; color: var(--white); line-height: 1.12; margin-bottom: 20px; animation: fadeUp 0.7s 0.2s both; }
.hero-sub { font-size: 1.02rem; color: rgba(255,255,255,0.7); line-height: 1.72; margin-bottom: 36px; max-width: 500px; animation: fadeUp 0.7s 0.35s both; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; animation: fadeUp 0.7s 0.45s both; }
.hero-trust { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; animation: fadeUp 0.7s 0.55s both; }
.trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.76rem; font-weight: 600; }
.trust-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; }

/* ===== TRUST BAR ===== */
.trust-bar { background: var(--cream-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: stretch; }
.trust-stat { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 22px 40px; border-right: 1px solid var(--border); text-align: center; flex: 1; }
.trust-stat:first-child { border-left: 1px solid var(--border); }
.trust-num { font-family: var(--f-serif); font-size: 1.8rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.trust-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--navy);
  border-radius: var(--r-md); padding: 32px 28px; transition: all var(--trans);
}
.service-card:hover { border-top-color: var(--gold); box-shadow: 0 8px 32px rgba(13,27,42,0.1); transform: translateY(-3px); }
.service-icon { width: 48px; height: 48px; background: var(--cream-2); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--navy); }
.service-card h3 { font-family: var(--f-serif); font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }
.service-list { display: flex; flex-direction: column; gap: 7px; }
.service-list li { font-size: 0.8rem; color: var(--text-3); display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }

/* ===== ABOUT BAND ===== */
.about-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.about-band-text { background: var(--navy); padding: 80px 60px; display: flex; flex-direction: column; justify-content: center; }
.about-band-img { overflow: hidden; }
.about-fact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 36px; }
.about-fact { border-left: 2px solid var(--gold); padding: 10px 16px; }
.about-fact-num { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 700; color: var(--gold-lt); }
.about-fact-desc { font-size: 0.76rem; color: rgba(255,255,255,0.5); letter-spacing: 0.04em; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 200px 200px; gap: 10px; margin-top: 48px; }
.gp-item { overflow: hidden; border-radius: var(--r-sm); background: var(--cream-3); cursor: pointer; position: relative; }
.gp-item:first-child { grid-column: 1/3; grid-row: 1/3; }
.gp-item img { transition: transform 0.5s ease; }
.gp-item:hover img { transform: scale(1.05); }
.gp-overlay { position: absolute; inset: 0; background: rgba(13,27,42,0); transition: background var(--trans); display: flex; align-items: flex-end; padding: 16px; }
.gp-item:hover .gp-overlay { background: rgba(13,27,42,0.45); }
.gp-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); opacity: 0; transform: translateY(6px); transition: all var(--trans); }
.gp-item:hover .gp-label { opacity: 1; transform: translateY(0); }

/* ===== PILLARS ===== */
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-top: 48px; }
.pillar { background: var(--white); padding: 36px 28px; transition: background var(--trans); }
.pillar:hover { background: var(--cream-2); }
.pillar-num { font-family: var(--f-serif); font-size: 2rem; font-weight: 700; color: var(--cream-3); line-height: 1; margin-bottom: 14px; }
.pillar h3 { font-family: var(--f-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.pillar p { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; }

/* ===== SERVICE AREA ===== */
.area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.area-cities { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
.city-tag { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; font-weight: 600; color: var(--text-2); padding: 10px 14px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm); }
.city-tag svg { width: 13px; height: 13px; color: var(--gold-dk); flex-shrink: 0; }
.map-embed { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.map-embed iframe { display: block; width: 100%; height: 320px; border: none; }

/* ===== CONTACT ===== */
.contact-split { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info-block { background: var(--navy); border-radius: var(--r-md); padding: 40px; color: var(--white); }
.contact-info-block h3 { font-family: var(--f-serif); font-size: 1.2rem; color: var(--white); margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.cinfo-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.cinfo-row:last-child { border-bottom: none; }
.cinfo-icon { color: var(--gold); flex-shrink: 0; }
.cinfo-icon svg { width: 18px; height: 18px; }
.cinfo-label { font-size: 0.67rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 4px; }
.cinfo-val { font-size: 0.9rem; color: rgba(255,255,255,0.82); line-height: 1.55; }
.cinfo-val a { color: rgba(255,255,255,0.82); }
.cinfo-val a:hover { color: var(--gold-lt); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.81rem; padding: 3px 0; color: rgba(255,255,255,0.6); }
.hours-row strong { color: rgba(255,255,255,0.82); }

/* FORM */
.quote-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: 40px; }
.form-title { font-family: var(--f-serif); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 0.85rem; color: var(--text-3); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); }
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--f-sans); font-size: 0.92rem; color: var(--text);
  padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color var(--trans), background var(--trans);
  outline: none; resize: vertical; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--navy); background: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-3); }
.form-note { font-size: 0.74rem; color: var(--text-3); margin-top: 10px; text-align: center; line-height: 1.55; }

/* ===== FOOTER ===== */
.footer-main { background: var(--navy-2); padding: 64px 0 40px; border-top: 3px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-brand .logo-name { color: var(--white); font-size: 1.3rem; }
.footer-brand .logo-tagline { color: var(--gold-lt); }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.48); line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-reg { font-size: 0.7rem; color: rgba(255,255,255,0.28); margin-top: 16px; line-height: 1.6; }
.footer-col-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.84rem; color: rgba(255,255,255,0.52); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold-lt); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; gap: 10px; font-size: 0.82rem; color: rgba(255,255,255,0.52); line-height: 1.45; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-bottom { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 18px 0; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.73rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.72rem; color: rgba(255,255,255,0.28); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.58); }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--navy); position: relative; overflow: hidden; padding: 64px 0 56px; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-dk), var(--gold)); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.74rem; color: rgba(255,255,255,0.38); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,0.38); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold-lt); }
.breadcrumb span { color: rgba(255,255,255,0.22); }

/* ===== GALLERY ===== */
.filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 20px 0; border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.filter-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); margin-right: 4px; }
.filter-btn {
  font-family: var(--f-sans); font-size: 0.77rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 40px; background: none; color: var(--text-2); cursor: pointer; transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 20px; }
.gallery-card { border-radius: var(--r-md); overflow: hidden; background: var(--cream-3); border: 1px solid var(--border); cursor: pointer; transition: all var(--trans); }
.gallery-card:hover { box-shadow: 0 8px 32px rgba(13,27,42,0.14); transform: translateY(-3px); }
.gallery-card-img { height: 240px; overflow: hidden; }
.gallery-card-img img { transition: transform 0.5s ease; }
.gallery-card:hover .gallery-card-img img { transform: scale(1.06); }
.gallery-card-body { padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.gallery-card-name { font-size: 0.84rem; font-weight: 700; color: var(--navy); }
.gallery-card-cat { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-3); background: var(--cream-2); padding: 3px 9px; border-radius: 40px; }
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(5,10,18,0.96); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img { max-width: 88vw; max-height: 88vh; width: auto; height: auto; object-fit: contain; border-radius: var(--r-md); }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--trans); }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

/* ===== DESIGN KITCHEN ===== */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-top: 48px; }
.process-step { padding: 30px 22px; background: var(--white); border-right: 1px solid var(--border); }
.process-step:last-child { border-right: none; }
.ps-num { font-family: var(--f-serif); font-size: 2.2rem; font-weight: 700; color: var(--cream-3); line-height: 1; margin-bottom: 10px; }
.ps-title { font-family: var(--f-serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ps-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; }
.selection-section { margin-bottom: 40px; }
.selection-title { font-family: var(--f-serif); font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.selection-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.option-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px,1fr)); gap: 12px; }
.opt-card { border: 2px solid var(--border); border-radius: var(--r-md); padding: 18px 14px; cursor: pointer; transition: all var(--trans); text-align: center; background: var(--white); }
.opt-card:hover { border-color: var(--navy); }
.opt-card.active { border-color: var(--navy); background: rgba(13,27,42,0.04); }
.opt-swatch { width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 12px; border: 2px solid rgba(0,0,0,0.07); }
.opt-name { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.opt-desc { font-size: 0.73rem; color: var(--text-3); }

/* ===== WHY US ===== */
.credentials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 44px; }
.credential-card { display: flex; gap: 16px; padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); transition: all var(--trans); }
.credential-card:hover { border-color: var(--navy); box-shadow: 0 4px 16px rgba(13,27,42,0.08); }
.cred-icon { width: 44px; height: 44px; background: var(--cream-2); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cred-icon svg { width: 20px; height: 20px; stroke: var(--navy); }
.cred-title { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cred-desc { font-size: 0.8rem; color: var(--text-2); line-height: 1.55; }

/* ===== LEGAL PAGES ===== */
.legal-content { max-width: 780px; margin: 0 auto; padding: 64px 32px; }
.legal-content h2 { font-family: var(--f-serif); font-size: 1.3rem; color: var(--navy); margin: 36px 0 12px; padding-top: 8px; }
.legal-content p, .legal-content li { font-size: 0.9rem; color: var(--text-2); line-height: 1.78; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; list-style: disc; }
.legal-content a { color: var(--gold-dk); text-decoration: underline; }
.effective-date { font-size: 0.77rem; color: var(--text-3); margin-bottom: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

/* ===== SITEMAP ===== */
.sitemap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; padding: 64px 0; }
.sitemap-col h3 { font-family: var(--f-serif); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--gold); }
.sitemap-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.sitemap-col a { font-size: 0.87rem; color: var(--text-2); transition: color var(--trans); }
.sitemap-col a:hover { color: var(--navy); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.3); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; } .reveal-d2 { transition-delay: 0.24s; } .reveal-d3 { transition-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-band { grid-template-columns: 1fr; }
  .about-band-img { height: 300px; }
  .about-band-text { padding: 56px 40px; }
}
@media (max-width: 900px) {
  .services-grid, .pillars-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .gallery-preview { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-preview .gp-item:first-child { grid-column: auto; grid-row: auto; }
  .contact-split, .area-grid, .credentials-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-stat { flex: 1 1 40%; }
}
@media (max-width: 700px) {
  .topbar { display: none; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--white); flex-direction: column;
    padding: 20px 24px 28px; gap: 4px; align-items: stretch;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-110%); opacity: 0;
    transition: all 0.4s ease; pointer-events: none;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .hero-image-panel { display: none; }
  .services-grid, .pillars-grid, .process-steps, .about-fact-grid, .option-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .sitemap-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: 1fr; }
}
