/* ================================================================
   ULTRAGLASS — Complete Design System
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------------------
   DESIGN TOKENS
   ---------------------------------------------------------------- */
:root {
  --black:       #0A0A0A;
  --navy:        #0D1B2E;
  --navy-mid:    #132540;
  --navy-light:  #1C3457;
  --glass-blue:  #1B6EA3;
  --glass-light: #2482BE;
  --gold:        #C8973A;
  --gold-hover:  #D6A845;
  --white:       #FFFFFF;
  --off-white:   #F5F8FB;
  --light:       #E9EFF6;
  --muted:       #7A93AA;
  --text-dark:   #0D1B2E;
  --border-dark: rgba(255,255,255,0.10);
  --border-light:rgba(13,27,46,0.10);
  --glass-layer: rgba(255,255,255,0.055);

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Outfit', sans-serif;

  --nav-h:       80px;
  --ease:        0.35s ease;
  --ease-slow:   0.65s ease;
  --radius:      4px;
  --radius-lg:   14px;
  --shadow:      0 24px 64px rgba(13,27,46,0.14);
  --shadow-gold: 0 8px 32px rgba(200,151,58,0.28);
}

/* ----------------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------------- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img  { max-width:100%; display:block; }
a    { text-decoration:none; color:inherit; }
ul   { list-style:none; }
button { font-family:var(--font-body); }

/* Accessibility */
.skip-link {
  position:absolute; top:-44px; left:8px;
  background:var(--gold); color:var(--white);
  padding:10px 20px; font-weight:600; font-size:.9rem;
  border-radius:var(--radius); z-index:9999;
  transition:top .2s;
}
.skip-link:focus { top:8px; }

.sr-only {
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* ----------------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------------- */
h1,h2,h3,h4 { font-family:var(--font-display); line-height:1.12; font-weight:500; }
h1 { font-size:clamp(2.8rem,5.5vw,5rem); }
h2 { font-size:clamp(2rem,4vw,3.2rem); }
h3 { font-size:clamp(1.4rem,2.4vw,1.8rem); }
h4 { font-size:1.15rem; }

p { line-height:1.78; color:var(--muted); font-size:1rem; }

.label {
  display:block;
  font-family:var(--font-body);
  font-size:0.72rem;
  font-weight:600;
  letter-spacing:0.20em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:1rem;
}

/* ----------------------------------------------------------------
   LAYOUT
   ---------------------------------------------------------------- */
.container { width:min(1200px,90%); margin:0 auto; }
section    { overflow:hidden; }
.pad       { padding:100px 0; }
.pad-sm    { padding:60px 0; }

.grid-2 { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; }

/* ----------------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------------- */
.btn {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:13px 30px;
  font-family:var(--font-body); font-size:.85rem;
  font-weight:600; letter-spacing:.07em; text-transform:uppercase;
  border-radius:var(--radius); transition:all var(--ease);
  cursor:pointer; border:none; white-space:nowrap;
}
.btn-gold   { background:var(--gold); color:var(--white); }
.btn-gold:hover { background:var(--gold-hover); transform:translateY(-2px); box-shadow:var(--shadow-gold); }

.btn-outline {
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.45);
}
.btn-outline:hover { background:rgba(255,255,255,0.09); border-color:var(--white); }

.btn-dark   { background:var(--navy); color:var(--white); }
.btn-dark:hover { background:var(--navy-light); transform:translateY(-2px); }

.btn-light  { background:var(--white); color:var(--navy); }
.btn-light:hover { background:var(--off-white); transform:translateY(-2px); }

.btn-group  { display:flex; gap:1rem; flex-wrap:wrap; }

/* ----------------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------------- */
.nav {
  position:fixed; inset:0 0 auto;
  z-index:1000; height:var(--nav-h);
  display:flex; align-items:center;
  /* Dark-to-transparent gradient gives the logo a surface to blend against */
  background:linear-gradient(to bottom, rgba(0,0,0,0.65) 0%, transparent 100%);
  transition:background var(--ease), box-shadow var(--ease), backdrop-filter var(--ease);
}
.nav.scrolled {
  background:rgba(10,10,10,0.96);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  box-shadow:0 2px 40px rgba(0,0,0,0.4);
}

.nav-inner {
  display:flex; align-items:center;
  justify-content:space-between; width:100%;
  padding:0 clamp(1.25rem, 4vw, 3rem);
  max-width:1320px; margin:0 auto;
}

.nav-logo img {
  height:62px; width:auto; max-width:220px;
  mix-blend-mode:screen;
  transition:opacity var(--ease);
}
.nav-logo:hover img { opacity:.82; }

.nav-links {
  display:flex; align-items:center; gap:2rem;
}
.nav-link {
  font-size:.83rem; font-weight:500;
  letter-spacing:.08em; text-transform:uppercase;
  color:rgba(255,255,255,.82);
  position:relative; transition:color var(--ease);
}
.nav-link::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background:var(--gold);
  transition:width var(--ease);
}
.nav-link:hover, .nav-link.active { color:#fff; }
.nav-link:hover::after, .nav-link.active::after { width:100%; }

.nav-cta {
  background:var(--gold); color:var(--white);
  padding:10px 24px; border-radius:var(--radius);
  font-size:.82rem; font-weight:600;
  letter-spacing:.08em; text-transform:uppercase;
  transition:all var(--ease);
}
.nav-cta:hover { background:var(--gold-hover); transform:translateY(-1px); }

/* Burger */
.nav-burger {
  display:none; flex-direction:column; gap:5px;
  cursor:pointer; padding:4px; background:none; border:none;
}
.nav-burger span {
  display:block; width:26px; height:2px;
  background:#fff; border-radius:2px; transition:all .3s ease;
}
.nav-burger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity:0; }
.nav-burger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  display:none; position:fixed;
  top:var(--nav-h); left:0; right:0;
  background:rgba(10,10,10,0.97);
  backdrop-filter:blur(16px);
  padding:2rem; flex-direction:column; gap:1.5rem;
  box-shadow:0 12px 40px rgba(0,0,0,0.4);
  z-index:999;
}
.nav-mobile.open   { display:flex; }
.nav-mobile .nav-link { font-size:1rem; }
.nav-mobile .nav-cta  { text-align:center; padding:14px 24px; }

/* ----------------------------------------------------------------
   HERO
   ---------------------------------------------------------------- */
.hero {
  position:relative; height:100vh; min-height:680px;
  display:flex; align-items:center; justify-content:center;
  text-align:center; overflow:hidden;
}

/* Animated gradient – video placeholder */
.hero-bg { position:absolute; inset:0; z-index:0; }

.hero-gradient {
  position:absolute; inset:0;
  background:linear-gradient(-45deg, #050C14, #091830, #0C2240, #071525, #040B16);
  background-size:400% 400%;
  animation:gradientDrift 18s ease infinite;
}
@keyframes gradientDrift {
  0%   { background-position:0% 50%; }
  50%  { background-position:100% 50%; }
  100% { background-position:0% 50%; }
}

/* Simulated light-through-glass shimmer */
.hero-light {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 25% 40%, rgba(28,110,163,0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 18%, rgba(200,151,58,0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 55% 85%, rgba(28,110,163,0.14) 0%, transparent 50%);
  animation:lightPulse 9s ease-in-out infinite alternate;
}
@keyframes lightPulse {
  from { opacity:.55; }
  to   { opacity:1; }
}

/* Placeholder / poster image — sits above gradient, below video */
.hero-poster {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  object-position:center 30%;
  z-index:1;
}

/* Real video sits above poster image */
.hero-video {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
  z-index:1;
}

.hero-overlay {
  position:absolute; inset:0;
  background:rgba(5,12,22,0.52);
  z-index:2;
}

.hero-content {
  position:relative; z-index:3;
  max-width:860px; padding:0 2rem;
}

/* ---- Slogan animation — both lines enter together as one statement ---- */
.hero-slogans {
  display:flex; flex-direction:column;
  align-items:center; gap:0.55rem;
  margin-bottom:2.4rem;
}
.hero-slogan {
  font-family:var(--font-display);
  font-weight:300; color:#fff;
  letter-spacing:-.01em; line-height:1.15;
  opacity:0; transform:translateY(24px);
  transition:opacity .8s ease, transform .8s ease;
  will-change:opacity,transform;
  text-align:center;
}
/* Headline — large */
.hero-slogan:first-child {
  font-size:clamp(2.4rem,4.8vw,4rem);
}
/* Supporting stat — smaller, softer, staggered entry */
.hero-slogan:last-child {
  font-size:clamp(1.05rem,2.1vw,1.7rem);
  color:rgba(255,255,255,0.72);
  transition-delay:0.28s;
}
.hero-slogan.visible { opacity:1; transform:translateY(0); }
/* Both exit together — clear the delay so they leave in sync */
.hero-slogan.exit    { opacity:0; transform:translateY(-22px); transition-delay:0s; }
.hero-slogan em      { font-style:italic; color:var(--gold); }

.hero-eyebrow {
  font-size:.78rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:rgba(255,255,255,.5); margin-bottom:2.6rem;
  display:block;
}

.hero-sub {
  font-size:1rem; color:rgba(255,255,255,.58);
  margin-bottom:2.8rem; letter-spacing:.03em;
  font-weight:400;
}

.hero-ctas { justify-content:center; }

/* Scroll indicator */
.hero-scroll {
  position:absolute; bottom:2.4rem; left:50%;
  transform:translateX(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:.5rem;
  color:rgba(255,255,255,.3);
  font-size:.68rem; letter-spacing:.14em; text-transform:uppercase;
  animation:scrollBob 2.8s ease-in-out infinite;
}
.hero-scroll::after {
  content:''; width:1px; height:38px;
  background:linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
}
@keyframes scrollBob {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%     { transform:translateX(-50%) translateY(9px); }
}

/* ----------------------------------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------------------------------- */
.page-hero {
  position:relative;
  padding:calc(var(--nav-h) + 70px) 0 80px;
  background:var(--black); overflow:hidden; text-align:center;
}
.page-hero-img {
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; opacity:.22;
}
.page-hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to bottom, rgba(10,10,10,.6), rgba(10,10,10,.88));
}
.page-hero-content { position:relative; z-index:1; }
.page-hero h1 { color:#fff; margin-bottom:1rem; }
.page-hero p  { color:rgba(255,255,255,.58); font-size:1.05rem; max-width:560px; margin:0 auto; }

/* ----------------------------------------------------------------
   FEATURES STRIP
   ---------------------------------------------------------------- */
.features-strip { background:var(--black); padding:56px 0; }
.features-grid  { display:grid; grid-template-columns:repeat(4,1fr); }

.feature-item {
  padding:2.2rem 1.8rem; text-align:center;
  border-right:1px solid var(--border-dark);
  transition:background var(--ease);
}
.feature-item:last-child { border-right:none; }
.feature-item:hover      { background:var(--glass-layer); }

.feature-icon { width:44px; height:44px; margin:0 auto 1rem; color:var(--gold); }

.feature-item h4 {
  font-family:var(--font-body); font-size:.92rem; font-weight:600;
  color:#fff; margin-bottom:.3rem; letter-spacing:.02em;
}
.feature-item p { font-size:.83rem; color:var(--muted); line-height:1.55; }

/* ----------------------------------------------------------------
   ABOUT PREVIEW
   ---------------------------------------------------------------- */
.about-preview { background:var(--off-white); }

.about-img-wrap {
  position:relative; aspect-ratio:4/3;
  overflow:hidden; border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
}
.about-img-wrap img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .8s ease;
}
.about-img-wrap:hover img { transform:scale(1.04); }

.about-badge {
  position:absolute; bottom:-16px; right:-16px;
  width:110px; height:110px; background:var(--gold);
  border-radius:50%; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  color:#fff; box-shadow:var(--shadow-gold);
}
.about-badge strong { font-size:1.9rem; font-weight:600; font-family:var(--font-display); line-height:1; }
.about-badge span   { font-size:.65rem; letter-spacing:.06em; text-transform:uppercase; opacity:.88; text-align:center; }

.about-text         { padding-left:1.5rem; }
.about-text h2      { color:var(--navy); margin-bottom:1.2rem; }
.about-text p       { margin-bottom:1.4rem; }

/* ----------------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------------- */
.stats-bar    { background:var(--glass-blue); padding:56px 0; }
.stats-grid   { display:grid; grid-template-columns:repeat(4,1fr); text-align:center; }

.stat-item    { padding:1rem 1.5rem; border-right:1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right:none; }

.stat-num {
  font-family:var(--font-display);
  font-size:clamp(2.2rem,3.8vw,3.2rem);
  font-weight:600; color:#fff; line-height:1; margin-bottom:.35rem;
}
.stat-lbl {
  font-size:.78rem; color:rgba(255,255,255,.72);
  letter-spacing:.07em; text-transform:uppercase; font-weight:500;
}

/* ----------------------------------------------------------------
   SERVICES
   ---------------------------------------------------------------- */
.services-section { background:var(--white); }

.section-header { text-align:center; max-width:680px; margin:0 auto 4rem; }
.section-header h2 { color:var(--navy); margin-bottom:1rem; }
.section-header p  { font-size:1.05rem; }

.services-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; }

.service-card {
  background:var(--off-white);
  border:1px solid var(--border-light);
  border-radius:var(--radius-lg);
  padding:2.4rem 2rem;
  position:relative; overflow:hidden;
  transition:all var(--ease);
}
.service-card::before {
  content:''; position:absolute;
  top:0; left:0; right:0; height:3px;
  background:var(--gold);
  transform:scaleX(0); transform-origin:left;
  transition:transform var(--ease);
}
.service-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); background:#fff; }
.service-card:hover::before { transform:scaleX(1); }

.service-icon {
  width:50px; height:50px;
  background:linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:1.4rem; color:var(--gold);
}
.service-card h3 { font-size:1.18rem; font-weight:600; color:var(--navy); margin-bottom:.65rem; font-family:var(--font-body); }
.service-card p  { font-size:.9rem; line-height:1.68; }

/* ----------------------------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------------------------- */
.why-section    { background:var(--navy); }
.why-section .section-header h2 { color:#fff; }
.why-section .section-header p  { color:var(--muted); }

.why-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.8rem; }

.why-card {
  background:var(--glass-layer);
  border:1px solid var(--border-dark);
  border-radius:var(--radius-lg);
  padding:2rem;
  transition:all var(--ease);
}
.why-card:hover {
  background:rgba(255,255,255,.07);
  border-color:rgba(200,151,58,.3);
  transform:translateY(-4px);
}
.why-num  {
  font-family:var(--font-display); font-size:2.8rem;
  font-weight:300; color:rgba(200,151,58,.2);
  line-height:1; margin-bottom:.9rem;
}
.why-card h3 {
  font-family:var(--font-body); font-size:1rem;
  font-weight:600; color:#fff; margin-bottom:.65rem;
}
.why-card p { font-size:.9rem; color:var(--muted); }

/* ----------------------------------------------------------------
   FAQ ACCORDION (shared)
   ---------------------------------------------------------------- */
.faq-accordion { max-width:800px; margin:0 auto; }

.faq-item        { border-bottom:1px solid var(--border-light); }
.faq-item.dark   { border-bottom-color:var(--border-dark); }

.faq-question {
  width:100%; display:flex; align-items:center;
  justify-content:space-between; gap:1rem;
  padding:1.45rem 0;
  font-family:var(--font-body); font-size:1rem; font-weight:500;
  color:var(--navy); background:none; border:none;
  cursor:pointer; text-align:left;
  transition:color var(--ease);
}
.faq-question:hover { color:var(--glass-blue); }
.dark .faq-question { color:#fff; }
.dark .faq-question:hover { color:var(--gold); }

.faq-icon {
  flex-shrink:0; width:28px; height:28px; border-radius:50%;
  border:1.5px solid var(--border-light);
  display:flex; align-items:center; justify-content:center;
  color:var(--navy); transition:all var(--ease);
}
.dark .faq-icon { border-color:var(--border-dark); color:#fff; }
.faq-item.open .faq-icon {
  background:var(--gold); border-color:var(--gold);
  color:#fff; transform:rotate(45deg);
}

.faq-answer       { max-height:0; overflow:hidden; transition:max-height .42s ease; }
.faq-answer-inner { padding-bottom:1.4rem; }
.faq-answer-inner p { font-size:.95rem; line-height:1.77; }
.dark .faq-answer-inner p { color:var(--muted); }
.faq-item.open .faq-answer { max-height:320px; }

/* FAQ category label */
.faq-cat {
  font-size:.72rem; font-weight:700; letter-spacing:.16em;
  text-transform:uppercase; color:var(--gold);
  margin:3rem 0 .75rem;
  padding-bottom:.65rem;
  border-bottom:1px solid var(--border-light);
  display:block;
}

/* ----------------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------------- */
.cta-banner {
  background:linear-gradient(140deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  padding:100px 0; text-align:center; position:relative; overflow:hidden;
}
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at center, rgba(200,151,58,.09) 0%, transparent 68%);
}
.cta-banner-inner { position:relative; z-index:1; }
.cta-banner h2     { color:#fff; margin-bottom:.9rem; font-weight:400; }
.cta-banner h2 em  { color:var(--gold); font-style:italic; }
.cta-banner p      { color:rgba(255,255,255,.58); font-size:1.1rem; margin-bottom:2.4rem; max-width:520px; margin-left:auto; margin-right:auto; }

/* ----------------------------------------------------------------
   CONTACT
   ---------------------------------------------------------------- */
.contact-section { background:var(--off-white); }

.contact-grid {
  display:grid; grid-template-columns:1.45fr 1fr;
  gap:4rem; align-items:start;
}

.contact-form-wrap {
  background:var(--white); border-radius:var(--radius-lg);
  padding:3rem; box-shadow:var(--shadow);
}
.form-hd           { margin-bottom:2.2rem; }
.form-hd h2        { font-size:clamp(1.6rem,3vw,2.4rem); color:var(--navy); margin-bottom:.4rem; }
.form-hd p         { font-size:.95rem; }

.form-group        { margin-bottom:1.4rem; }
.form-row          { display:grid; grid-template-columns:1fr 1fr; gap:1.4rem; }

label {
  display:block; font-size:.78rem; font-weight:600;
  letter-spacing:.06em; text-transform:uppercase;
  color:var(--navy); margin-bottom:.45rem;
}
input, select, textarea {
  width:100%; padding:12px 15px;
  font-family:var(--font-body); font-size:.95rem;
  color:var(--text-dark); background:var(--off-white);
  border:1.5px solid var(--border-light);
  border-radius:var(--radius); outline:none;
  transition:border-color var(--ease), box-shadow var(--ease), background var(--ease);
  -webkit-appearance:none; appearance:none;
}
input:focus, select:focus, textarea:focus {
  border-color:var(--glass-blue);
  box-shadow:0 0 0 3px rgba(27,110,163,.1);
  background:var(--white);
}
textarea { min-height:130px; resize:vertical; }
select {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237A93AA' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:44px; cursor:pointer;
}

.form-submit { width:100%; padding:15px; font-size:.95rem; }

.form-success {
  display:none; text-align:center; padding:2.5rem 2rem;
  background:rgba(27,110,163,.05);
  border:1px solid rgba(27,110,163,.2);
  border-radius:var(--radius); color:var(--navy);
}
.form-success.show { display:block; }
.form-success h3   { font-family:var(--font-display); font-size:1.6rem; margin-bottom:.6rem; }
.form-success p    { font-size:.95rem; }

/* Contact info side */
.contact-info h3   { font-size:1.4rem; color:var(--navy); margin-bottom:2rem; }

.contact-detail    { display:flex; gap:1rem; margin-bottom:2rem; align-items:flex-start; }
.cd-icon {
  width:44px; height:44px; flex-shrink:0;
  background:var(--navy); border-radius:10px;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
}
.cd-text h4 {
  font-family:var(--font-body); font-size:.78rem; font-weight:700;
  letter-spacing:.08em; text-transform:uppercase;
  color:var(--navy); margin-bottom:.3rem;
}
.cd-text p, .cd-text a {
  font-size:.93rem; color:var(--muted);
  line-height:1.55; transition:color var(--ease);
}
.cd-text a:hover { color:var(--navy); }

/* ----------------------------------------------------------------
   ABOUT PAGE — story & values
   ---------------------------------------------------------------- */
.story-section { background:var(--white); }
.story-img-wrap {
  aspect-ratio:3/4; overflow:hidden;
  border-radius:var(--radius-lg); box-shadow:var(--shadow);
}
.story-img-wrap img { width:100%; height:100%; object-fit:cover; }

.values-section   { background:var(--navy); }
.values-section .section-header h2 { color:#fff; }
.values-section .section-header p  { color:var(--muted); }

.value-card {
  background:var(--glass-layer); border:1px solid var(--border-dark);
  border-radius:var(--radius-lg); padding:2rem; text-align:center;
}
.v-icon {
  width:52px; height:52px; margin:0 auto;
  background:linear-gradient(135deg, rgba(200,151,58,.2), rgba(200,151,58,.05));
  border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
}
.value-card h3 {
  font-family:var(--font-body); font-size:.95rem; font-weight:600;
  color:#fff; margin:.9rem 0 .5rem;
}
.value-card p { font-size:.85rem; color:var(--muted); }

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */
footer { background:var(--black); padding:80px 0 0; border-top:1px solid var(--border-dark); }

.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.6fr;
  gap:4rem; padding-bottom:60px;
}

.footer-logo img {
  height:42px; width:auto;
  mix-blend-mode:screen; opacity:.9; margin-bottom:1.4rem;
}

.footer-about p { font-size:.88rem; color:var(--muted); line-height:1.72; }

.footer-col h4 {
  font-family:var(--font-body); font-size:.75rem; font-weight:700;
  letter-spacing:.14em; text-transform:uppercase;
  color:#fff; margin-bottom:1.4rem;
}

.footer-links { display:flex; flex-direction:column; gap:.7rem; }
.footer-links a { font-size:.88rem; color:var(--muted); transition:color var(--ease); }
.footer-links a:hover { color:#fff; }

.footer-contact address { font-style:normal; display:flex; flex-direction:column; gap:.7rem; }
.footer-contact address p,
.footer-contact address a { font-size:.88rem; color:var(--muted); line-height:1.55; transition:color var(--ease); }
.footer-contact address a:hover { color:#fff; }

.footer-bottom {
  border-top:1px solid var(--border-dark);
  padding:22px 0;
  display:flex; align-items:center; justify-content:space-between;
  gap:1rem; flex-wrap:wrap;
}
.footer-bottom p, .footer-bottom a { font-size:.8rem; color:var(--muted); transition:color var(--ease); }
.footer-bottom a:hover { color:#fff; }
.footer-bottom-links { display:flex; gap:1.5rem; }

/* ----------------------------------------------------------------
   SCROLL REVEAL
   ---------------------------------------------------------------- */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity .72s ease, transform .72s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:.1s; }
.reveal-d2 { transition-delay:.2s; }
.reveal-d3 { transition-delay:.3s; }
.reveal-d4 { transition-delay:.4s; }

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */

/* Nav compression — prevents CTA overflow between 900–1200px */
@media (max-width:1150px) {
  .nav-links { gap:1.5rem; }
  .nav-link  { font-size:.78rem; letter-spacing:.05em; }
  .nav-cta   { padding:9px 18px; font-size:.78rem; }
  .nav-logo img { height:54px; }
}

/* Tablet */
@media (max-width:1024px) {
  .features-grid, .stats-grid, .grid-4 { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); gap:2.5rem; }
  .feature-item:nth-child(2) { border-right:none; }
  .feature-item:nth-child(3) { border-right:1px solid var(--border-dark); }
  .stat-item:nth-child(2)    { border-right:none; }
  .stat-item:nth-child(3)    { border-right:1px solid rgba(255,255,255,.2); }
}

/* Mobile landscape */
@media (max-width:900px) {
  .nav-links, .nav-cta { display:none; }
  .nav-burger           { display:flex; }
  .grid-2               { grid-template-columns:1fr; }
  .services-grid, .why-grid, .grid-3 { grid-template-columns:repeat(2,1fr); }
  .contact-grid         { grid-template-columns:1fr; }
  .about-text           { padding-left:0; }
}

/* Mobile portrait */
@media (max-width:640px) {
  :root { --nav-h:68px; }
  .pad  { padding:70px 0; }
  .pad-sm{ padding:48px 0; }

  .services-grid, .why-grid, .grid-3,
  .features-grid, .stats-grid, .footer-grid { grid-template-columns:1fr; }

  .feature-item { border-right:none; border-bottom:1px solid var(--border-dark); }
  .feature-item:last-child { border-bottom:none; }
  .stat-item    { border-right:none; border-bottom:1px solid rgba(255,255,255,.2); }
  .stat-item:last-child { border-bottom:none; }

  .form-row  { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; text-align:center; }
  .footer-bottom-links { justify-content:center; }
  .contact-form-wrap { padding:2rem 1.5rem; }
  .btn-group { flex-direction:column; align-items:flex-start; }
  .hero-ctas { justify-content:center; align-items:center; }
  .about-badge { bottom:-8px; right:-8px; width:90px; height:90px; }
  .about-badge strong { font-size:1.5rem; }
}
