/* ================================================================
   Alpine Direct Solutions — Global Stylesheet
   Palette : Black · Gold · White | Industrial & Elegant
   ================================================================ */

/* ── 0. Icons — Font Awesome 6 Free minimal subset (merged, no extra CSS request) ── */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
}
.fa-solid, .fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.fa-arrow-right::before       { content: "\f061"; }
.fa-award::before             { content: "\f559"; }
.fa-bolt::before              { content: "\f0e7"; }
.fa-building::before          { content: "\f1ad"; }
.fa-calendar-check::before    { content: "\f274"; }
.fa-certificate::before       { content: "\f0a3"; }
.fa-check::before             { content: "\f00c"; }
.fa-chevron-down::before      { content: "\f078"; }
.fa-chevron-right::before     { content: "\f054"; }
.fa-circle-check::before      { content: "\f058"; }
.fa-clock::before             { content: "\f017"; }
.fa-envelope::before          { content: "\f0e0"; }
.fa-file-lines::before        { content: "\f15c"; }
.fa-file-signature::before    { content: "\f573"; }
.fa-gem::before               { content: "\f3a5"; }
.fa-gift::before              { content: "\f06b"; }
.fa-graduation-cap::before    { content: "\f19d"; }
.fa-hammer::before            { content: "\f6e3"; }
.fa-handshake::before         { content: "\f2b5"; }
.fa-house::before             { content: "\e00d"; }
.fa-images::before            { content: "\f302"; }
.fa-location-dot::before      { content: "\f3c5"; }
.fa-magnifying-glass::before  { content: "\f002"; }
.fa-mountain::before          { content: "\f6fc"; }
.fa-paper-plane::before       { content: "\f1d8"; }
.fa-pen-to-square::before     { content: "\f044"; }
.fa-person::before            { content: "\f183"; }
.fa-phone::before             { content: "\f095"; }
.fa-shield-halved::before     { content: "\e24b"; }
.fa-snowflake::before         { content: "\f2dc"; }
.fa-spray-can-sparkles::before{ content: "\e5d5"; }
.fa-star::before              { content: "\f005"; }
.fa-wrench::before            { content: "\f0ad"; }

/* Adjusted Georgia fallback to match Playfair Display metrics — minimises CLS on font swap */
@font-face {
  font-family: 'Playfair Display Fallback';
  src: local('Georgia'), local('Times New Roman');
  size-adjust: 101%;
  ascent-override: 86.5%;
  descent-override: 22.6%;
  line-gap-override: 0%;
}

/* ── 1. Design Tokens ── */
:root {
  --black:        #0a0a0a;
  --black-soft:   #111111;
  --black-card:   #181818;
  --black-border: #2a2a2a;
  --gold:         #C9A84C;
  --gold-light:   #E2C16A;
  --gold-dark:    #9A7A2A;
  --gold-subtle:  rgba(201,168,76,.08);
  --white:        #F8F6F0;
  --white-soft:   #E0DED8;
  --muted:        #888;

  --font-head: 'Playfair Display', 'Playfair Display Fallback', Georgia, serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --max-w:   1200px;
  --px:      clamp(1.25rem, 5vw, 2.5rem);
  --section: clamp(4rem, 8vw, 7rem);

  --ease:   cubic-bezier(.4,0,.2,1);
  --trans:  .35s var(--ease);
  --radius: 4px;
  --radius-lg: 8px;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
address { font-style: normal; }

/* ── 3. Typography Scale ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 600;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p { max-width: 66ch; }

.text-gold  { color: var(--gold); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* ── 4. Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--px);
}

.section { padding-block: var(--section); }
.section-sm { padding-block: clamp(2rem, 5vw, 4rem); }

.grid-2 { display: grid; gap: 2rem; }
.grid-3 { display: grid; gap: 2rem; }
.grid-4 { display: grid; gap: 1.5rem; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── 5. Section Labels & Headings ── */
.label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-head h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: .75rem;
}

.text-center .section-head h2::after { margin-inline: auto; }

/* ── 6. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1.75rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--radius);
  transition: var(--trans);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(201,168,76,.35);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold-subtle);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  background: var(--white-soft);
  transform: translateY(-1px);
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* ── 7. Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--trans), box-shadow var(--trans);
  padding-block: 1.25rem;
}

.nav.scrolled {
  background: rgba(10,10,10,.97);
  box-shadow: 0 1px 0 var(--black-border);
  padding-block: .85rem;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.nav-logo img { width: 38px; height: 38px; object-fit: contain; }

.nav-logo-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--white);
}

.nav-logo-text .gold { color: var(--gold); }

.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--white-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--trans);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--trans);
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta { display: none; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: .4rem;
  margin-left: auto;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--trans);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--black-soft);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  margin-bottom: 2rem;
}

.nav-mobile a {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--white);
  padding: .5rem 1.5rem;
  transition: color var(--trans);
}

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

.nav-mobile .btn { margin-top: 1.5rem; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ── 8. Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 60% 40%, rgba(201,168,76,.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(201,168,76,.04) 0%, transparent 50%);
}

/* Dot grid pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .5;
}

/* Gold diagonal accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -10%; right: -5%;
  width: 55%; height: 130%;
  background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,.04) 40%, transparent 60%);
  transform: skewX(-8deg);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0;
  transition: opacity .6s;
}

.hero-image.loaded { opacity: 1; }
.hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,.92) 50%, rgba(10,10,10,.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow-line {
  width: 40px; height: 1px;
  background: var(--gold);
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
  display: block;
}

.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.125rem);
  color: var(--white-soft);
  max-width: 54ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badge {
  position: absolute;
  bottom: 3rem; right: var(--px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  z-index: 2;
}

/* On mobile: hide absolute badges — inline version shows inside hero-content */
@media (max-width: 767px) {
  .hero-badge { display: none; }
  .hero-badge-inline { display: flex !important; }
}

@media (min-width: 768px) {
  .hero-badge-inline { display: none !important; }
}

.hero-badge-item {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--black-border);
  backdrop-filter: blur(8px);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
}

.hero-badge-item i { color: var(--gold); }

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  animation: bounce 2.4s infinite;
}

.scroll-hint i { font-size: .65rem; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── 9. Services Accordion ── */
.acc-section { background: var(--black-soft); padding-block: var(--section); }

.acc {
  display: flex;
  height: 480px;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.acc-panel {
  flex: 0 0 56px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex .55s var(--ease);
}

.acc-panel.open { flex: 1 1 auto; }

/* Tab button (shown when panel is collapsed) */
.acc-tab {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  background: var(--black-card);
  border-right: 1px solid var(--black-border);
  z-index: 2;
  transition: opacity .25s, background var(--trans);
}

.acc-tab:hover { background: #202020; }

.acc-panel.open .acc-tab {
  opacity: 0;
  pointer-events: none;
}

/* Diamond connector */
.acc-tab::after {
  content: '';
  position: absolute;
  bottom: 50%; right: 0;
  width: 14px; height: 14px;
  background: var(--black-card);
  border-right: 1px solid var(--black-border);
  border-top: 1px solid var(--black-border);
  transform: translate(50%,50%) rotate(45deg);
  z-index: 3;
  transition: background var(--trans);
}

.acc-tab:hover::after { background: #202020; }
.acc-panel.open .acc-tab::after { opacity: 0; }

.acc-icon {
  width: 34px; height: 34px;
  background: var(--gold);
  color: var(--black);
  display: grid; place-items: center;
  font-size: .9rem;
  flex-shrink: 0;
}

.acc-tab-title {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
}

/* Expanded content */
.acc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.acc-desc {
  padding: 2rem 2.25rem;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
  width: 100%;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .45s .15s var(--ease), opacity .45s .15s var(--ease);
}

.acc-panel.open .acc-desc {
  transform: translateY(0);
  opacity: 1;
}

.acc-desc .label { margin-bottom: .4rem; }

.acc-desc h3 {
  color: var(--white);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  margin-bottom: .6rem;
}

.acc-desc p {
  color: var(--white-soft);
  font-size: .875rem;
  line-height: 1.65;
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

.acc-desc a { font-size: .85rem; }

/* Gradient fallbacks when no image — use background-image only to preserve cover/center */
.acc-panel:nth-child(1) .acc-bg {
  background-image: linear-gradient(160deg, #2c1a05 0%, #0d0a06 60%, #0a0a0a 100%);
}
.acc-panel:nth-child(2) .acc-bg {
  background-image: linear-gradient(160deg, #081828 0%, #050d18 60%, #0a0a0a 100%);
}
.acc-panel:nth-child(3) .acc-bg {
  background-image: linear-gradient(160deg, #18180c 0%, #0e0e08 60%, #0a0a0a 100%);
}
.acc-panel:nth-child(4) .acc-bg {
  background-image: linear-gradient(160deg, #08141e 0%, #050c14 60%, #0a0a0a 100%);
}

/* ── Mobile accordion ── */
@media (max-width: 1023px) {
  .acc {
    flex-direction: column;
    height: auto;
  }

  .acc-panel {
    flex: none;
    height: 58px;
    transition: height .55s var(--ease);
  }

  .acc-panel.open {
    height: 300px;
    flex: none;
  }

  .acc-tab {
    flex-direction: row;
    padding: 0 1.25rem;
    justify-content: flex-start;
    gap: .75rem;
    border-right: none;
    border-bottom: 1px solid var(--black-border);
  }

  .acc-tab::after { display: none; }

  .acc-tab-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: .8rem;
  }
}

/* ── 10. Stats / Trust Grid ── */
.stat-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: border-color var(--trans), box-shadow var(--trans);
}

.stat-card:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 0 32px rgba(201,168,76,.1);
}

.stat-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .25rem;
}

.stat-card h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.125rem; }
.stat-card p { font-size: .875rem; color: var(--muted); max-width: none; }

/* ── 11. Service Cards ── */
.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.service-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.service-card-icon {
  width: 52px; height: 52px;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: var(--radius);
  display: grid; place-items: center;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.service-card p  { font-size: .9rem; color: var(--white-soft); margin-bottom: 1.25rem; }

.service-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.service-card ul li {
  font-size: .85rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.service-card ul li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 12. CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--black-card) 0%, #0e0a02 100%);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.cta-banner h2 { margin-bottom: 1rem; }

.cta-phone {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-block: 1.25rem;
  text-decoration: none;
  transition: color var(--trans);
}

.cta-phone:hover { color: var(--gold-light); }
.cta-phone i { font-size: .8em; }

/* ── 13. Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 640px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black-card);
  cursor: pointer;
}

.gallery-item img,
.gallery-item .gallery-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--black-card) 0%, #141008 100%);
  color: var(--black-border);
  font-size: 2rem;
}

.gallery-item:hover img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  font-size: .75rem;
  color: var(--white-soft);
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
}

/* ── 14. Blog Cards ── */
.blog-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}

.blog-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.blog-card-img {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--black-card) 0%, #141008 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-border);
  font-size: 2.5rem;
  flex-shrink: 0;
}

.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  font-size: .75rem;
  color: var(--muted);
  margin-bottom: .6rem;
}

.blog-card h3 { font-size: 1.1rem; margin-bottom: .6rem; }

.blog-card p {
  font-size: .875rem;
  color: var(--white-soft);
  flex: 1;
  margin-bottom: 1.25rem;
}

.blog-card-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--trans), color var(--trans);
}

.blog-card-link:hover { gap: .7rem; color: var(--gold-light); }

/* ── 15. Page Hero (inner pages) ── */
.page-hero {
  padding-top: 9rem;
  padding-bottom: 4rem;
  background: var(--black-soft);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .4;
}

.page-hero > * { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: .55rem; }

/* ── 16. Contact Form ── */
.contact-wrap {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr 400px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.25rem;
}

label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  width: 100%;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}

input::placeholder, textarea::placeholder { color: var(--muted); }

textarea { min-height: 160px; resize: vertical; }

.form-success {
  display: none;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.form-success i { font-size: 2rem; color: var(--gold); margin-bottom: 1rem; }

.contact-info-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: fit-content;
}

.contact-info-card h3 { margin-bottom: 1.5rem; }

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: .2rem;
  flex-shrink: 0;
  width: 20px;
}

.contact-info-item p {
  font-size: .9rem;
  color: var(--white-soft);
}

.contact-info-item a {
  color: var(--white);
  transition: color var(--trans);
}

.contact-info-item a:hover { color: var(--gold); }

.contact-divider {
  border: none;
  border-top: 1px solid var(--black-border);
  margin-block: 1.5rem;
}

.irata-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  margin-top: 1.5rem;
}

.irata-badge i { color: var(--gold); font-size: 1.25rem; }
.irata-badge span { font-size: .8rem; font-weight: 600; color: var(--white-soft); }

/* ── 17. Process Steps ── */
.process-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  counter-reset: steps;
}

@media (min-width: 640px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  counter-increment: steps;
}

.process-step::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--gold-subtle);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  color: rgba(201,168,76,.15);
}

.process-step i { color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; display: block; }
.process-step h3 { margin-bottom: .5rem; font-size: 1.125rem; }
.process-step p { font-size: .875rem; color: var(--muted); max-width: none; }

/* ── 18. About page ── */
.about-split {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-split { grid-template-columns: 1fr 1fr; }
}

.about-image {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--black-card) 0%, #141008 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black-border);
  font-size: 3rem;
  border: 1px solid var(--black-border);
  position: relative;
}

.about-image img { width: 100%; height: 100%; object-fit: cover; }

.cert-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: rgba(10,10,10,.9);
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: .75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  backdrop-filter: blur(8px);
}

.cert-badge i { font-size: 1.1rem; }

.values-grid {
  display: grid;
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }

.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: border-color var(--trans);
}

.value-card:hover { border-color: var(--gold-dark); }

.value-icon {
  width: 40px; height: 40px;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  display: grid; place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}

.value-card h3 { margin-bottom: .3rem; font-size: 1rem; }
.value-card p  { font-size: .85rem; color: var(--muted); max-width: none; }

/* ── 19. Footer ── */
.footer {
  background: var(--black-soft);
  border-top: 1px solid var(--black-border);
}

.footer-grid {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: 3rem;
}

@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: .875rem; color: var(--muted); max-width: 36ch; }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .6rem; }

.footer-col ul a {
  font-size: .875rem;
  color: var(--muted);
  transition: color var(--trans);
}

.footer-col ul a:hover { color: var(--white); padding-left: .25rem; }

.footer-col address { display: flex; flex-direction: column; gap: .75rem; }

.footer-col address p,
.footer-col address a {
  font-size: .875rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  transition: color var(--trans);
}

.footer-col address a:hover { color: var(--gold); }
.footer-col address i { margin-top: .2rem; color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding-block: 1.5rem;
}

.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-bottom p { font-size: .8rem; color: var(--muted); max-width: none; }
.footer-bottom strong { color: var(--gold); }

/* ── 20. Animations & Scroll Reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: .1s; }
[data-reveal-delay="2"] { transition-delay: .2s; }
[data-reveal-delay="3"] { transition-delay: .3s; }
[data-reveal-delay="4"] { transition-delay: .4s; }

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

.anim-fade { animation: fadeIn .7s var(--ease) both; }

/* ── 21. Utility / Misc ── */
.divider {
  border: none;
  border-top: 1px solid var(--black-border);
  margin-block: clamp(2rem, 4vw, 4rem);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gold-subtle);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 100px;
  color: var(--gold);
}

.bg-dark-soft { background: var(--black-soft); }
.bg-card { background: var(--black-card); }

.w-full { width: 100%; }
.block { display: block; }

/* Honeypot (hidden spam trap) */
.hp { display: none !important; }

/* ── 22. Print ── */
@media print {
  .nav, .scroll-hint, .hero-badge { display: none; }
}
