/* ═══════════════════════════════════════════════════════════
   T-STONES PREMIUM THEME — main.css
   Palette: #0a1628 (navy) | #ffffff (white) | #f0f4f8 (light gray)
═══════════════════════════════════════════════════════════ */

/* ── Protect HTML [hidden] attribute from CSS overrides ── */
[hidden] { display: none !important; }

/* ── Custom Properties ── */
:root {
  --navy:        #0a1628;
  --navy-mid:    #152238;
  --navy-light:  #1e3050;
  --navy-pale:   #2a4266;
  --white:       #ffffff;
  --gray-50:     #f8fafc;
  --gray-100:    #f0f4f8;
  --gray-200:    #dde2ec;
  --gray-300:    #b8c4d4;
  --gray-400:    #8892a4;
  --gray-500:    #5a6478;
  --text-dark:   #0a1628;
  --text-mid:    #3a4a5c;
  --text-light:  #6b7a8d;
  --white-10:    rgba(255,255,255,0.10);
  --white-15:    rgba(255,255,255,0.15);
  --white-20:    rgba(255,255,255,0.20);
  --white-80:    rgba(255,255,255,0.80);
  --navy-80:     rgba(10,22,40,0.80);
  --navy-90:     rgba(10,22,40,0.90);
  --shadow-sm:   0 1px 3px rgba(10,22,40,0.08), 0 1px 2px rgba(10,22,40,0.06);
  --shadow-md:   0 4px 6px rgba(10,22,40,0.07), 0 2px 4px rgba(10,22,40,0.06);
  --shadow-lg:   0 10px 15px rgba(10,22,40,0.10), 0 4px 6px rgba(10,22,40,0.05);
  --shadow-xl:   0 20px 25px rgba(10,22,40,0.15), 0 10px 10px rgba(10,22,40,0.04);
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main:   'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h:    72px;
  --topbar-h:    40px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-mid);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-main); font-weight: 700; line-height: 1.2; color: var(--navy); }
em { font-style: normal; }

/* ── Container ── */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section--light { background: var(--gray-100); }
.section--dark  { background: var(--navy); }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }

.btn--primary { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--ghost:hover { background: var(--white-15); border-color: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn--outline:hover { background: var(--white-15); border-color: var(--white); }
.btn--outline-dark { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-dark:hover { background: var(--navy); color: var(--white); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1da851; border-color: #1da851; }
.btn--lg  { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm  { padding: 0.625rem 1.25rem; font-size: 0.875rem; }
.btn--block { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   TOP BAR
══════════════════════════════════════════ */
.topbar { background: var(--navy-mid); height: var(--topbar-h); display: flex; align-items: center; border-bottom: 1px solid var(--white-10); }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.5rem; }
.topbar__item, .topbar__link { display: flex; align-items: center; gap: 0.4rem; font-size: 0.8rem; color: var(--gray-300); font-family: var(--font-main); }
.topbar__link:hover { color: var(--white); }
.topbar__phone { display: flex; align-items: center; gap: 0.4rem; font-size: 0.85rem; font-weight: 700; color: var(--white); font-family: var(--font-main); letter-spacing: 0.02em; }

/* ══════════════════════════════════════════
   SITE HEADER / NAV
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  height: var(--header-h);
  box-shadow: 0 1px 0 var(--gray-200);
  transition: box-shadow 0.3s, background 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-lg); }
.nav__inner { display: flex; align-items: center; height: var(--header-h); gap: 2rem; }

/* ── Logo anchor wrapper ── */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0; /* removes inline gap below img */
}

/* ── The single source of truth for all logo images ── */
.site-logo-img {
  display: block;
  width: auto;
  height: 44px;        /* fixed height — drives everything */
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
}

/* Mobile overlay logo — inverted because background is navy */
.mobile-menu__logo .site-logo-img {
  height: 38px;
  max-width: 160px;
  filter: brightness(0) invert(1);
}

/* Footer logo — inverted */
.footer__logo-img .site-logo-img {
  height: 42px;
  max-width: 160px;
  filter: brightness(0) invert(1);
}

/* Text logo fallback */
.nav__logo-text { display: flex; align-items: baseline; gap: 0; line-height: 1; }
.nav__logo-t { font-family: var(--font-main); font-size: 2rem; font-weight: 900; color: var(--navy); letter-spacing: -0.05em; }
.nav__logo-stones { font-family: var(--font-main); font-size: 1.25rem; font-weight: 300; color: var(--navy); letter-spacing: 0.1em; text-transform: uppercase; }
.nav__logo-text small { font-family: var(--font-main); font-size: 0.65rem; font-weight: 400; color: var(--gray-400); letter-spacing: 0.15em; text-transform: uppercase; margin-left: 0.3rem; margin-bottom: 0.3rem; }

.footer__logo-link { display: flex; margin-bottom: 1rem; }

.nav__menu { flex: 1; display: flex; justify-content: center; }
.nav__list  { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}
.nav-link:hover, .nav-item.current-menu-item .nav-link { color: var(--navy); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--navy);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}
.nav-link:hover::after, .nav-item.current-menu-item .nav-link::after { transform: scaleX(1); }
.nav-arrow { display: flex; transition: transform 0.25s; }
.nav-item.has-dropdown:hover .nav-arrow { transform: rotate(180deg); }

.sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 100;
  padding: 0.5rem;
}
.nav-item.has-dropdown:hover .sub-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.sub-menu li a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-main);
  color: var(--text-mid);
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
}
.sub-menu li a:hover { background: var(--gray-100); color: var(--navy); }

.nav__cta { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.nav__call { display: flex; align-items: center; gap: 0.4rem; font-family: var(--font-main); font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.nav__call:hover { opacity: 0.7; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; margin-left: auto; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; flex-direction: column;
  background: var(--navy);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.35s;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
.mobile-menu__backdrop {
  position: fixed; inset: 0; z-index: 1999;
  background: rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu__backdrop.show { opacity: 1; pointer-events: all; }
.mobile-menu__inner { display: flex; flex-direction: column; height: 100%; overflow-y: auto; }
.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--white-10);
}
.mobile-menu__header .nav__logo-t,
.mobile-menu__header .nav__logo-stones { color: var(--white); }
.mobile-menu__header small { color: var(--gray-300); }
.mobile-menu__close { color: var(--white); padding: 0.5rem; }
.mobile-menu__nav { flex: 1; padding: 1.5rem 1.75rem; }
.mobile-menu__nav ul { display: flex; flex-direction: column; }
.mobile-menu__nav li a {
  display: block; padding: 1rem 0;
  font-family: var(--font-main); font-size: 1.1rem; font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid var(--white-10);
}
.mobile-menu__nav li a:hover { color: var(--gray-200); }
.mobile-menu__nav .has-children ul { padding-left: 1rem; }
.mobile-menu__nav .has-children ul li a { font-size: 0.95rem; color: var(--gray-300); }
.mobile-menu__footer {
  padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  border-top: 1px solid var(--white-10);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero__particles { position: absolute; inset: 0; pointer-events: none; }
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--font-main); font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-300); margin-bottom: 1.5rem;
}
.hero__dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray-300); flex-shrink: 0; }

.hero__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--white);
  line-height: 1.05; margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__title-line { display: block; }
.hero__title-line--accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.5);
}

.hero__subtitle { font-size: 1.05rem; color: var(--gray-300); line-height: 1.8; max-width: 560px; margin-bottom: 2.5rem; }
.hero__subtitle strong { color: var(--white); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats bar — 4 equal columns, no overflow on any screen */
.hero__stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  max-width: 100%;
}
.hero__stat {
  text-align: center;
  padding: 0.75rem 1rem;
  min-width: 0;
}
.hero__stat-num {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 900;
  color: var(--white);
  display: inline;
  line-height: 1;
}
.hero__stat > span:not(.hero__stat-label) {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 900;
  color: var(--white);
}
.hero__stat-label {
  display: block;
  font-size: clamp(0.65rem, 0.8vw, 0.75rem);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
  font-family: var(--font-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--white-15);
  flex-shrink: 0;
  justify-self: center;
}

.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gray-400); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gray-400), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

.hero__form-wrap {}
.hero__form-card { background: var(--white); border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-xl); }
.hero__form-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.hero__form-icon {
  width: 48px; height: 48px; background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); flex-shrink: 0;
}
.hero__form-header h3 { font-size: 1.1rem; color: var(--navy); }
.hero__form-header p { font-size: 0.8rem; color: var(--text-light); margin-top: 0.15rem; }

/* ══════════════════════════════════════════
   FORM ELEMENTS
══════════════════════════════════════════ */
.form-group { margin-bottom: 0.875rem; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--gray-400); margin-bottom: 0.35rem; font-family: var(--font-main); letter-spacing: 0.02em; }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  background: var(--gray-50); border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-input:focus { border-color: var(--navy); background: var(--white); box-shadow: 0 0 0 3px rgba(10,22,40,0.08); }
.form-input::placeholder { color: var(--gray-300); }
.form-select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--gray-400); margin-top: 0.75rem; }
.form-success { text-align: center; padding: 2rem; color: var(--navy); }
.form-success svg { margin: 0 auto 1rem; color: #2ecc71; }
.form-success h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

/* ══════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════ */
.trust-bar { background: var(--navy-mid); padding: 1.25rem 0; border-top: 1px solid var(--white-10); border-bottom: 1px solid var(--white-10); }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; flex: 1; min-width: 140px; }
.trust-item__icon { width: 44px; height: 44px; background: var(--white-10); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); flex-shrink: 0; }
.trust-item__text { display: flex; flex-direction: column; }
.trust-item__text strong { font-family: var(--font-main); font-size: 0.95rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.trust-item__text span { font-size: 0.75rem; color: var(--gray-300); }
.trust-divider { width: 1px; height: 40px; background: var(--white-10); flex-shrink: 0; }
.stars-mini { font-size: 1.1rem; color: var(--white); }

/* ══════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════ */
.section-header { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header--light .section-tag  { color: var(--gray-300); border-color: var(--white-15); }
.section-header--light .section-title { color: var(--white); }
.section-header--light em { color: #c9a84c; font-style: normal; }
.section-header--light .section-subtitle { color: var(--gray-300); }
.section-tag {
  display: inline-block;
  font-family: var(--font-main); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gray-400); border: 1px solid var(--gray-200);
  border-radius: 100px; padding: 0.35rem 1rem; margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800; color: var(--navy);
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--navy); }
.section-subtitle { font-size: 1rem; color: var(--text-light); line-height: 1.7; }
.section__cta { display: flex; justify-content: center; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   SERVICES GRID
══════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover { border-color: var(--navy); transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--navy); transform: scaleX(0); transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card--featured { grid-column: span 2; background: var(--navy); border-color: var(--navy-light); color: var(--white); }
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: var(--gray-300); }
.service-card--featured .service-card__list li { color: var(--gray-300); }
.service-card--featured .service-card__list li::before { background: var(--gray-300); }
.service-card--featured:hover { border-color: var(--navy-pale); background: var(--navy-light); }
.service-card--featured::before { background: var(--white); }

.service-card__icon {
  width: 56px; height: 56px; background: var(--gray-100);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--navy); transition: var(--transition); flex-shrink: 0;
}
.service-card--featured .service-card__icon { background: var(--white-10); color: var(--white); }
.service-card:hover .service-card__icon { background: var(--navy); color: var(--white); }
.service-card--featured:hover .service-card__icon { background: var(--white-20); }

.service-card__content h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--navy); }
.service-card__content p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; margin-bottom: 1rem; }
.service-card__list { display: flex; flex-direction: column; gap: 0.35rem; }
.service-card__list li { font-size: 0.82rem; color: var(--text-light); padding-left: 1rem; position: relative; }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--navy); }

.service-card__arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; color: var(--navy);
  transition: var(--transition);
}
.service-card:hover .service-card__arrow { background: var(--navy); color: var(--white); transform: translateX(3px); }
.service-card--featured .service-card__arrow { background: var(--white-10); color: var(--white); }
.service-card--featured:hover .service-card__arrow { background: var(--white-20); }

.service-card__niceic {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.75rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #c9a84c; border: 1px solid rgba(201,168,76,0.35); border-radius: 2rem;
  padding: 0.3rem 0.75rem; background: rgba(201,168,76,0.07);
}
.service-niceic-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: #c9a84c; border: 1px solid rgba(201,168,76,0.35); border-radius: 2rem;
  padding: 0.35rem 1rem; background: rgba(201,168,76,0.07); margin-top: 0.5rem;
}
.service-card__bg-number {
  position: absolute; right: -0.5rem; top: 1rem;
  font-family: var(--font-main); font-size: 5rem; font-weight: 900;
  color: var(--gray-100); line-height: 1; pointer-events: none; z-index: 0;
  transition: var(--transition);
}
.service-card--featured .service-card__bg-number { color: var(--white-10); }

/* ══════════════════════════════════════════
   WHY SECTION
══════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.why-card {
  background: var(--white-10); border: 1px solid var(--white-15);
  border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); position: relative;
}
.why-card:hover { background: var(--white-15); transform: translateY(-4px); }
.why-card__num {
  font-family: var(--font-main); font-size: 3.5rem; font-weight: 900;
  color: var(--white-10); position: absolute; top: 1rem; right: 1.25rem; line-height: 1;
}
.why-card__icon {
  width: 52px; height: 52px; background: var(--white-10);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--white); margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.05rem; color: var(--white); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.875rem; color: var(--gray-300); line-height: 1.7; }

.why-bottom { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; padding-top: 3rem; border-top: 1px solid var(--white-10); }
.why-quote {
  position: relative; padding: 2.5rem;
  background: var(--white-10); border-radius: var(--radius-lg); border: 1px solid var(--white-15);
}
.why-quote__mark {
  font-family: Georgia, serif; font-size: 5rem; line-height: 0.6;
  color: var(--white-20); position: absolute; top: 1.5rem; left: 1.5rem;
}
.why-quote p { font-size: 1rem; color: var(--gray-200); line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; padding-top: 1rem; }
.why-quote__author { display: flex; align-items: center; gap: 1rem; }
.why-quote__avatar {
  width: 44px; height: 44px; background: var(--white-20); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 700; font-size: 1.1rem; color: var(--white);
}
.why-quote__author strong { display: block; color: var(--white); font-size: 0.95rem; }
.why-quote__author span { color: var(--gray-400); font-size: 0.8rem; }

.why-accreditations h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 1rem; }
.accred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.accred-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.875rem 1rem; background: var(--white-10);
  border: 1px solid var(--white-15); border-radius: var(--radius); color: var(--white);
}
.accred-item svg { flex-shrink: 0; }
.accred-item span { font-size: 0.8rem; font-family: var(--font-main); font-weight: 500; }

/* ══════════════════════════════════════════
   PROJECTS
══════════════════════════════════════════ */
.projects-filter { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.625rem 1.25rem; font-family: var(--font-main); font-size: 0.875rem;
  font-weight: 500; color: var(--text-light); background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: 100px; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--gray-200); transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: var(--navy); }
.project-card__link { display: block; text-decoration: none; color: inherit; }
.project-card__img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.project-card__img-actual { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.project-card:hover .project-card__img-actual { transform: scale(1.05); }
.project-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.project-card__placeholder--1 { background: linear-gradient(135deg, #0a1628 0%, #1e3050 100%); color: rgba(255,255,255,0.2); }
.project-card__placeholder--2 { background: linear-gradient(135deg, #1e3050 0%, #2a4266 100%); color: rgba(255,255,255,0.2); }
.project-card__placeholder--3 { background: linear-gradient(135deg, #152238 0%, #1e3050 100%); color: rgba(255,255,255,0.2); }
.project-card__placeholder--4 { background: linear-gradient(135deg, #0d1f36 0%, #1a3a5c 100%); color: rgba(255,255,255,0.2); }
.project-card__placeholder--5 { background: linear-gradient(135deg, #0a1628 0%, #152238 100%); color: rgba(255,255,255,0.2); }
.project-card__placeholder--6 { background: linear-gradient(135deg, #1a2d4a 0%, #243d5e 100%); color: rgba(255,255,255,0.2); }

.project-card__overlay {
  position: absolute; inset: 0; background: var(--navy-80);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__view {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.5rem; background: var(--white); color: var(--navy);
  border-radius: var(--radius-sm); font-family: var(--font-main); font-size: 0.875rem;
  font-weight: 600; transform: translateY(10px); transition: transform 0.3s;
}
.project-card:hover .project-card__view { transform: translateY(0); }
.project-card__tag {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--navy); color: var(--white);
  font-family: var(--font-main); font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.75rem; border-radius: 100px;
}
.project-card__body { padding: 1.5rem; }
.project-card__body h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--navy); }
.project-card__body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 1rem; }
.project-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.8rem; color: var(--gray-400); }
.project-card__meta span:first-child { display: flex; align-items: center; gap: 0.3rem; }
.project-score { font-weight: 700; color: var(--navy); font-family: var(--font-main); }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-aggregate { display: flex; justify-content: center; gap: 4rem; margin-bottom: 3rem; flex-wrap: wrap; }
.reviews-score { text-align: center; }
.reviews-score__num { font-family: var(--font-main); font-size: 3rem; font-weight: 900; color: var(--white); line-height: 1; }
.reviews-score__stars { font-size: 1.5rem; color: var(--gray-300); margin-bottom: 0.25rem; }
.reviews-score__label { font-size: 0.85rem; color: var(--gray-400); }
.reviews-score__source {
  font-size: 0.75rem; font-family: var(--font-main); font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-300);
  border: 1px solid var(--white-15); display: inline-block;
  padding: 0.2rem 0.75rem; border-radius: 100px; margin-top: 0.5rem;
}
.reviews-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
.review-card {
  background: var(--white-10); border: 1px solid var(--white-15);
  border-radius: var(--radius-lg); padding: 1.75rem; transition: var(--transition);
}
.review-card:hover { background: var(--white-15); transform: translateY(-4px); }
.review-card--featured { border-color: rgba(255,255,255,0.3); background: var(--white-15); }
.review-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--white-20);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-main); font-weight: 700; color: var(--white); font-size: 1rem; flex-shrink: 0;
}
.review-card__meta { flex: 1; }
.review-card__meta strong { display: block; font-size: 0.875rem; color: var(--white); font-family: var(--font-main); }
.review-card__meta span { font-size: 0.75rem; color: var(--gray-400); }
.review-card__source {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-family: var(--font-main); font-weight: 600;
  color: var(--gray-300); padding: 0.25rem 0.625rem;
  border: 1px solid var(--white-15); border-radius: 100px; white-space: nowrap;
}
.review-card__stars { font-size: 0.9rem; color: var(--white); margin-bottom: 0.25rem; letter-spacing: 0.1em; }
.review-card__score { display: inline-block; font-family: var(--font-main); font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 0.75rem; }
.review-card__text { font-size: 0.875rem; color: var(--gray-300); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.review-card__job { font-family: var(--font-main); font-size: 0.75rem; font-weight: 600; color: var(--gray-400); letter-spacing: 0.05em; text-transform: uppercase; border-top: 1px solid var(--white-10); padding-top: 0.75rem; }
.reviews-cta { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════
   BRANDS
══════════════════════════════════════════ */
.brands-track-wrapper { overflow: hidden; position: relative; margin: 0 -2rem; }
.brands-track-wrapper::before,
.brands-track-wrapper::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 1;
}
.brands-track-wrapper::before { left: 0; background: linear-gradient(to right, var(--gray-100), transparent); }
.brands-track-wrapper::after { right: 0; background: linear-gradient(to left, var(--gray-100), transparent); }
.brands-track { display: flex; gap: 1.5rem; width: max-content; animation: brandScroll 30s linear infinite; padding: 0.5rem 2rem; }
.brands-track:hover { animation-play-state: paused; }
@keyframes brandScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-item {
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  padding: 1.5rem 2.5rem; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
  min-width: 150px; transition: var(--transition); flex-shrink: 0;
}
.brand-item:hover { border-color: var(--navy); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.brand-item__logo {
  width: 60px; height: 60px; background: var(--navy);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--white);
  font-family: var(--font-main); font-weight: 900; font-size: 1rem;
}
.brand-item__name { font-family: var(--font-main); font-size: 0.8rem; font-weight: 600; color: var(--text-mid); text-align: center; white-space: nowrap; }

/* ═══════════════════════════════════════════
   CRAFT SHOWCASE — Cinematic Split Section
═══════════════════════════════════════════ */
.craft-showcase {
  display: flex;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
}

/* Panels */
.craft-panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.craft-showcase:has(.craft-panel--left:hover) .craft-panel--left  { flex: 1.45; }
.craft-showcase:has(.craft-panel--left:hover) .craft-panel--right { flex: 0.55; }
.craft-showcase:has(.craft-panel--right:hover) .craft-panel--right { flex: 1.45; }
.craft-showcase:has(.craft-panel--right:hover) .craft-panel--left  { flex: 0.55; }

/* Background image */
.craft-panel__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.craft-panel:hover .craft-panel__img { transform: scale(1); }

/* Overlay gradients */
.craft-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 15, 35, 0.96) 0%,
    rgba(8, 15, 35, 0.65) 45%,
    rgba(8, 15, 35, 0.15) 100%
  );
  transition: opacity 0.6s ease;
}
.craft-panel__overlay--warm {
  background: linear-gradient(
    to top,
    rgba(8, 15, 35, 0.94) 0%,
    rgba(40, 25, 10, 0.55) 45%,
    rgba(8, 15, 35, 0.10) 100%
  );
}
.craft-panel:hover .craft-panel__overlay { opacity: 0.92; }

/* Content */
.craft-panel__content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 3rem 3.5rem;
  width: 100%;
  transform: translateY(18px);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.craft-panel:hover .craft-panel__content { transform: translateY(0); }

/* Eyebrow */
.craft-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 2rem;
  backdrop-filter: blur(4px);
  background: rgba(201, 168, 76, 0.08);
}

/* Title */
.craft-panel__title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 1.2rem;
  letter-spacing: -0.02em;
}
.craft-panel__title em {
  font-style: normal;
  color: #c9a84c;
  position: relative;
  display: inline-block;
}
.craft-panel__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #c9a84c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease 0.2s;
}
.craft-panel:hover .craft-panel__title em::after { transform: scaleX(1); }

/* Description */
.craft-panel__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin: 0 0 1.8rem;
  max-width: 380px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}
.craft-panel:hover .craft-panel__text { opacity: 1; transform: translateY(0); }

/* Stats row */
.craft-panel__stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease 0.18s, transform 0.5s ease 0.18s;
}
.craft-panel:hover .craft-panel__stats { opacity: 1; transform: translateY(0); }
.craft-panel__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.craft-panel__stat span {
  font-family: var(--font-main);
  font-size: 1.6rem;
  font-weight: 900;
  color: #c9a84c;
  line-height: 1;
}
.craft-panel__stat {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

/* CTA button */
.craft-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: #c9a84c;
  padding: 0.85rem 1.8rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease 0.25s, transform 0.5s ease 0.25s, background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}
.craft-panel:hover .craft-panel__cta { opacity: 1; transform: translateY(0); }
.craft-panel__cta:hover { background: #e0bc60; transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(201, 168, 76, 0.5); }
.craft-panel__cta--light {
  color: var(--navy);
  background: #fff;
  box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.craft-panel__cta--light:hover { background: #f0f0f0; box-shadow: 0 8px 28px rgba(255,255,255,0.35); }

/* Large panel number */
.craft-panel__number {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: var(--font-main);
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.6s ease, font-size 0.6s ease;
  z-index: 1;
}
.craft-panel:hover .craft-panel__number { color: rgba(201, 168, 76, 0.12); font-size: 7rem; }

/* Vertical divider */
.craft-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  pointer-events: none;
  transition: left 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.craft-divider__line {
  flex: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.6), transparent);
}
.craft-divider__badge {
  width: 48px;
  height: 48px;
  background: #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15), 0 0 30px rgba(201,168,76,0.3);
  animation: craftPulse 3s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes craftPulse {
  0%, 100% { box-shadow: 0 0 0 6px rgba(201,168,76,0.15), 0 0 30px rgba(201,168,76,0.3); }
  50%       { box-shadow: 0 0 0 12px rgba(201,168,76,0.08), 0 0 50px rgba(201,168,76,0.5); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .craft-showcase { flex-direction: column; min-height: auto; }
  .craft-panel { min-height: 70vw; flex: none !important; }
  .craft-divider { flex-direction: row; position: relative; left: auto; top: auto; width: 100%; height: 48px; transform: none; }
  .craft-divider__line { flex: 1; height: 1px; width: auto; background: linear-gradient(to right, transparent, rgba(201,168,76,0.6), transparent); }
  .craft-panel__content { padding: 2rem 1.5rem; transform: translateY(0); }
  .craft-panel__text, .craft-panel__stats, .craft-panel__cta { opacity: 1; transform: translateY(0); }
  .craft-panel__title { font-size: 1.8rem; }
  .craft-showcase:has(.craft-panel--left:hover) .craft-panel--left,
  .craft-showcase:has(.craft-panel--left:hover) .craft-panel--right,
  .craft-showcase:has(.craft-panel--right:hover) .craft-panel--right,
  .craft-showcase:has(.craft-panel--right:hover) .craft-panel--left { flex: none; }
}

/* ══════════════════════════════════════════
   QUOTE SECTION
══════════════════════════════════════════ */
.quote-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.quote-info .section-header { text-align: left; margin: 0 0 1.5rem; }
.quote-info__desc { font-size: 0.95rem; color: var(--gray-300); line-height: 1.8; margin-bottom: 2rem; }
.quote-info__features { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.quote-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: var(--gray-200); font-family: var(--font-main); }
.quote-feature svg { color: var(--gray-300); flex-shrink: 0; }
.quote-info__contact { display: flex; flex-direction: column; gap: 0.75rem; }
.quote-contact-btn {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.5rem; background: var(--white-10);
  border: 1px solid var(--white-15); border-radius: var(--radius);
  transition: var(--transition); color: var(--white);
}
.quote-contact-btn:hover { background: var(--white-20); transform: translateX(4px); }
.quote-contact-btn--wa { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.1); }
.quote-contact-btn--wa:hover { background: rgba(37,211,102,0.2); }
.quote-contact-btn small { display: block; font-size: 0.72rem; color: var(--gray-400); font-family: var(--font-main); }
.quote-contact-btn strong { font-size: 1rem; font-family: var(--font-main); }
.quote-form-wrap { background: var(--white); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-xl); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer-wave { line-height: 0; background: var(--gray-100); }
.footer-wave svg { width: 100%; height: 60px; }
.footer__main { background: var(--navy); padding: 5rem 0 3rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer__logo { margin-bottom: 1.25rem; }
.footer__logo .nav__logo-t, .footer__logo .nav__logo-stones { color: var(--white); }
.footer__logo small { color: var(--gray-400); }
.footer__tagline { font-size: 0.875rem; color: var(--gray-300); line-height: 1.7; margin-bottom: 1.5rem; }
.footer__social { display: flex; gap: 0.5rem; margin-bottom: 1.75rem; }
.social-icon {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--white-15);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); transition: var(--transition);
}
.social-icon:hover { background: var(--white-15); color: var(--white); border-color: var(--white-20); transform: translateY(-2px); }
.footer__badges { display: flex; flex-direction: column; gap: 0.625rem; }
.footer__badge { display: flex; align-items: center; gap: 0.625rem; font-size: 0.8rem; color: var(--gray-300); }
.footer__badge svg { color: var(--gray-400); flex-shrink: 0; }
.footer__heading { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1.25rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links li a { font-size: 0.875rem; color: var(--gray-300); transition: color 0.2s, padding-left 0.2s; }
.footer__links li a:hover { color: var(--white); padding-left: 0.25rem; }
.footer__contact-list { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.footer__contact-item { display: flex; gap: 0.875rem; align-items: flex-start; }
.footer__contact-item svg { color: var(--gray-400); flex-shrink: 0; margin-top: 2px; }
.footer__contact-item strong { display: block; font-size: 0.78rem; color: var(--gray-400); font-family: var(--font-main); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.2rem; }
.footer__contact-item a, .footer__contact-item span { font-size: 0.875rem; color: var(--gray-200); }
.footer__contact-item a:hover { color: var(--white); }
.footer__emergency p { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 0.75rem; font-family: var(--font-main); }
.footer__bottom { background: var(--navy-mid); padding: 1.25rem 0; border-top: 1px solid var(--white-10); }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer__copy { font-size: 0.78rem; color: var(--gray-400); }
.footer__copy span { color: var(--gray-300); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.78rem; color: var(--gray-400); }
.footer__bottom-links a:hover { color: var(--white); }

/* ── Footer Extras: Map + Credentials + Payment ── */
.footer__extras { background: var(--navy-mid); border-top: 1px solid var(--white-10); padding: 3rem 0; }
.footer__extras-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; align-items: start; }
.footer__map-col .footer__heading { margin-bottom: 1rem; }
.footer__map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--white-10); position: relative; }
.footer__map-frame iframe { width: 100%; height: 240px; border: 0; display: block; filter: grayscale(20%); }
.footer__map-img { width: 100%; max-height: 260px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--white-10); display: block; }
.footer__map-label { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 0.875rem; background: var(--navy); color: var(--gray-300); font-size: 0.8rem; font-family: var(--font-main); }
.footer__map-label svg { fill: var(--gray-400); flex-shrink: 0; }
.footer__creds-col { display: flex; flex-direction: column; gap: 2rem; }
.footer__cred-block .footer__heading { margin-bottom: 0.875rem; }
.footer__cred-badges { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__cred-badge {
  display: flex; align-items: center; gap: 0.625rem;
  font-size: 0.8rem; color: var(--gray-300);
  padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--white-10); border-radius: var(--radius-sm);
}
.footer__cred-badge svg { color: #22c55e; flex-shrink: 0; }
.footer__payment-block .footer__heading { margin-bottom: 0.875rem; }
.footer__payment-methods { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.payment-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.35rem 0.7rem; border-radius: 4px;
  font-family: var(--font-main); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--white-10); color: var(--gray-200);
  border: 1px solid var(--white-15);
}
.payment-badge--visa            { background: #1a1f71; color: #fff; }
.payment-badge--mastercard      { background: #eb001b; color: #fff; }
.payment-badge--american-express{ background: #007bc1; color: #fff; }
.payment-badge--paypal          { background: #003087; color: #fff; }
.payment-badge--apple-pay       { background: #000; color: #fff; }
.payment-badge--google-pay      { background: #4285f4; color: #fff; }

/* Homepage reviews score cards on dark background */
.reviews-scores--home { margin-bottom: 3rem; }
.reviews-scores--home .review-score-card {
  background: var(--white-10); border-color: var(--white-20);
  color: var(--white);
}
.reviews-scores--home .review-score-card__logo { color: var(--gray-200); }
.reviews-scores--home .review-score-card__score { color: var(--white); }
.reviews-scores--home .review-score-card__label { color: var(--gray-400); }

/* ══════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════ */
.page-hero {
  background: var(--navy); padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--white-10);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 900; }
.page-main { padding: 4rem 0; }
.page-content { max-width: 860px; line-height: 1.8; }
.page-content h2, .page-content h3 { margin: 2rem 0 1rem; }
.page-content p { margin-bottom: 1.25rem; }

/* ══════════════════════════════════════════
   FLOATING CTA & BACK TO TOP
══════════════════════════════════════════ */
.floating-cta { position: fixed; bottom: 2rem; right: 1.5rem; z-index: 500; display: none; flex-direction: column; gap: 0.75rem; }
.floating-cta__call, .floating-cta__whatsapp {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.25rem; border-radius: 100px;
  font-family: var(--font-main); font-size: 0.875rem; font-weight: 700;
  box-shadow: var(--shadow-xl); transition: var(--transition);
}
.floating-cta__call { background: var(--navy); color: var(--white); }
.floating-cta__call:hover { transform: scale(1.05); background: var(--navy-light); }
.floating-cta__whatsapp { background: #25D366; color: var(--white); }
.floating-cta__whatsapp:hover { transform: scale(1.05); background: #1da851; }

.back-to-top {
  position: fixed; bottom: 2rem; left: 1.5rem; z-index: 500;
  width: 44px; height: 44px; background: var(--white);
  border: 1.5px solid var(--gray-200); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--navy); color: var(--white); border-color: var(--navy); transform: translateY(-3px); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
[data-aos="fade-up"]    { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-left"]  { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos="fade-right"] { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-aos].aos-animate  { opacity: 1; transform: none; }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }

.spin { animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollLine { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes brandScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ══════════════════════════════════════════
   RESPONSIVE TABLET ≤ 1024px
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-wrap { max-width: 560px; margin: 0 auto; }
  .hero__stats { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
  .hero__stat { padding: 0.5rem 0.5rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-bottom { grid-template-columns: 1fr; }
  .home-founder__inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: span 2; }
  .trust-divider { display: none; }
  .trust-bar__inner { gap: 1.5rem; }
  .footer__extras-inner { grid-template-columns: 1fr; gap: 2rem; }
  .reviews-scores { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════
   RESPONSIVE MOBILE ≤ 768px
══════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .topbar { display: none; }
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .nav__menu, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .site-logo-img { height: 34px; max-width: 150px; }
  .hero { padding: 4rem 0 3rem; min-height: auto; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero__subtitle { font-size: 0.9rem; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero__stat { padding: 0.75rem; background: var(--white-10); border-radius: var(--radius-sm); }
  .hero__stat-divider { display: none; }
  .hero__scroll { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .accred-grid { grid-template-columns: 1fr; }
  .home-stats-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-aggregate { gap: 2rem; }
  .quote-form-wrap { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__map-frame iframe { height: 180px; }
  .reviews-scores, .reviews-scores--home { grid-template-columns: 1fr; }
  .floating-cta { display: flex; }
  .floating-cta__call span, .floating-cta__whatsapp span { display: none; }
  .floating-cta__call, .floating-cta__whatsapp { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .btn--lg { padding: 0.875rem 1.5rem; font-size: 0.9375rem; }
}

/* ── Accessibility ── */
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; border-radius: 2px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .brands-track { animation: none; }
}

/* ══════════════════════════════════════════
   PAGE TEMPLATES — Shared
══════════════════════════════════════════ */
.section--gray { background: var(--gray-100); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy p { color: var(--white); }
.section--filter { padding: 2.5rem 0 2rem; }

/* Page Hero */
.page-hero {
  background: var(--navy);
  padding: 7rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin: 0.5rem 0 1rem;
}
.page-hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.75); max-width: 640px; margin: 0 auto; }
.section-tag--light { background: var(--white-15); color: var(--white); }

/* Breadcrumb */
.breadcrumb-bar { background: var(--gray-100); padding: 0.75rem 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-light); }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { text-decoration: underline; }

/* CTA Band */
.cta-band { padding: 5rem 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__text h2 { color: var(--white); font-size: 1.875rem; margin-bottom: 0.5rem; }
.cta-band__text p { color: rgba(255,255,255,0.75); }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn--outline-white { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-white:hover { background: var(--white-15); border-color: var(--white); }
.btn--white { background: var(--white); color: var(--navy); border: 2px solid var(--white); }
.btn--white:hover { background: var(--gray-100); }
.btn--block { width: 100%; justify-content: center; }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #128C7E; border-color: #128C7E; }

/* ══════════════════════════════════════════
   SERVICES PAGE
══════════════════════════════════════════ */
.services-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-full-card {
  display: flex;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); border-color: var(--navy-pale); }
.service-full-card--featured { grid-column: 1 / -1; background: var(--navy); color: var(--white); border-color: var(--navy); }
.service-full-card--featured h2, .service-full-card--featured .service-full-card__excerpt { color: var(--white); }
.service-full-card--featured .service-full-card__icon { color: var(--white); }
.service-full-card__icon { flex-shrink: 0; color: var(--navy); }
.service-full-card__body { flex: 1; }
.service-full-card__title { font-size: 1.25rem; margin-bottom: 0.75rem; }
.service-full-card__excerpt { color: var(--text-mid); margin-bottom: 1rem; font-size: 0.9375rem; }
.service-full-card__features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.service-full-card__features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); }
.service-full-card--featured .service-full-card__features li { color: rgba(255,255,255,0.8); }
.service-full-card--featured .service-full-card__features svg { stroke: rgba(255,255,255,0.6); }

/* ══════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════ */
.about-founder__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}
.about-founder__portrait {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--gray-200);
}
.about-founder__initials {
  font-family: var(--font-main);
  font-size: 4rem;
  font-weight: 800;
  color: var(--navy);
}
.about-founder__logo-wrap img { max-width: 200px; margin: auto; }
.about-founder__quote { position: relative; padding: 2rem 2rem 2rem 3rem; }
.about-founder__quote-mark { position: absolute; top: 0; left: 0; color: var(--gray-200); width: 3rem; height: 3rem; }
.about-founder__quote p { font-size: 1.125rem; line-height: 1.8; color: var(--text-mid); font-style: italic; }
.about-founder__sig { margin-top: 1.5rem; }
.about-founder__sig strong { display: block; font-family: var(--font-main); font-size: 1rem; color: var(--navy); }
.about-founder__sig span { font-size: 0.875rem; color: var(--text-light); }

.stats-grid--about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-block { padding: 2rem; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.stat-block__number { font-family: var(--font-main); font-size: 3rem; font-weight: 800; color: var(--navy); }
.stat-block__suffix { font-family: var(--font-main); font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-block__label { display: block; font-size: 0.875rem; color: var(--text-light); margin-top: 0.25rem; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2rem; transition: var(--transition); }
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.value-card__icon { width: 52px; height: 52px; background: var(--gray-100); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: var(--navy); }
.value-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--text-light); }

.areas-list { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 2rem; }
.area-tag { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.875rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: 100px; font-size: 0.8125rem; color: var(--text-mid); }
.area-tag svg { fill: var(--navy); flex-shrink: 0; }

/* ══════════════════════════════════════════
   HOME — FOUNDER / STORY SECTION
══════════════════════════════════════════ */
.home-founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 860px;
  margin-top: 3.5rem;
}
.home-founder__blockquote {
  background: rgba(255,255,255,0.05);
  border-left: 4px solid rgba(255,255,255,0.2);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2.5rem;
  margin: 0 0 2rem;
}
.home-founder__mark {
  color: rgba(255,255,255,0.12);
  display: block;
  margin-bottom: 1.25rem;
}
.home-founder__blockquote p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin: 0;
}
.home-founder__sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.home-founder__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.home-founder__sig strong { display: block; color: var(--white); font-size: 0.9375rem; font-family: var(--font-main); font-weight: 700; }
.home-founder__sig span { color: rgba(255,255,255,0.5); font-size: 0.8125rem; }
.home-accred { display: flex; flex-wrap: wrap; gap: 0.625rem; }
.home-accred__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-main);
  font-weight: 500;
}
.home-accred__item svg { color: rgba(255,255,255,0.45); flex-shrink: 0; }

/* 2×2 Stats grid — dark bg */
.home-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.home-stat-block {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.home-stat-block:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-3px);
}
.home-stat-block__num {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.home-stat-block__suffix {
  font-family: var(--font-main);
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}
.home-stat-block__label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ══════════════════════════════════════════
   HOME — AREAS COVERED
══════════════════════════════════════════ */
.areas-section {
  background: var(--navy);
  padding: 4rem 0 4.5rem;
}
.areas-header {
  text-align: center;
  margin-bottom: 2rem;
}
.areas-title {
  font-family: var(--font-main);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin: 0.75rem 0 0;
  line-height: 1.3;
}
.areas-title em { color: rgba(255,255,255,0.6); font-style: normal; }
.areas-section .area-tag {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.78);
}
.areas-section .area-tag svg { fill: rgba(255,255,255,0.45); }

/* ══════════════════════════════════════════
   CONTACT PAGE — NEW
══════════════════════════════════════════ */

/* Hero */
.contact-hero { position: relative; background: var(--navy); padding: 5rem 0 3rem; overflow: hidden; }
.contact-hero__bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(42,66,102,0.6) 0%, transparent 70%); pointer-events: none; }
.contact-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.contact-hero__text h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin: 0.75rem 0 1rem; line-height: 1.2; }
.contact-hero__text p { color: rgba(255,255,255,0.75); font-size: 1.0625rem; line-height: 1.7; margin-bottom: 1.5rem; }
.contact-hero__status { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.contact-status { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 0.875rem; border-radius: 100px; font-size: 0.8125rem; font-weight: 700; }
.contact-status--open { background: rgba(34,197,94,0.2); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.contact-status--closed { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.contact-status__dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.4} }
.contact-hero__hours { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* Channel cards */
.contact-hero__cards { display: flex; flex-direction: column; gap: 0.875rem; }
.contact-channel-card { display: flex; align-items: center; gap: 1rem; padding: 1.125rem 1.375rem; border-radius: var(--radius); background: var(--white-10); border: 1px solid var(--white-15); color: var(--white); text-decoration: none; transition: var(--transition); }
.contact-channel-card:hover { background: var(--white-20); transform: translateX(4px); }
.contact-channel-card__icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-channel-card--phone .contact-channel-card__icon { background: var(--navy-light); }
.contact-channel-card--wa .contact-channel-card__icon { background: #25d366; }
.contact-channel-card--email .contact-channel-card__icon { background: var(--navy-light); }
.contact-channel-card__label { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.6); }
.contact-channel-card__value { display: block; font-weight: 700; font-size: 0.9375rem; }
.contact-channel-card__arrow { margin-left: auto; color: rgba(255,255,255,0.4); flex-shrink: 0; }

/* Main layout */
.contact-main { padding-top: 4rem; }
.contact-main__layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 3.5rem; align-items: start; }

/* Form card */
.contact-form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow-xl); }
.contact-form-card__header { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
.contact-form-card__header h2 { font-size: 1.625rem; margin-bottom: 0.5rem; }
.contact-form-card__header p { color: var(--text-mid); font-size: 0.9375rem; }
.req { color: #ef4444; }
.contact-form__checkbox { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.8125rem; color: var(--text-mid); cursor: pointer; }
.contact-form__checkbox input { margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; }
.contact-form__guarantee { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.875rem; font-size: 0.8rem; color: var(--text-light); }

/* Info sidebar */
.contact-info-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.25rem; box-shadow: var(--shadow-sm); }
.contact-info-card--trust { border-left: 3px solid var(--navy); }
.contact-info-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; color: var(--navy); }
.contact-info-card__header h3 { font-size: 1rem; font-weight: 700; margin: 0; }
.contact-hours { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-hours__row { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; padding: 0.375rem 0; border-bottom: 1px solid var(--gray-100); }
.contact-hours__row span:first-child { color: var(--text-mid); }
.contact-hours__row span:last-child { font-weight: 600; color: var(--navy); }
.contact-hours__emergency { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem; font-size: 0.8125rem; font-weight: 600; color: #dc2626; }
.contact-address { font-style: normal; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.875rem; }
.contact-info-card__link { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.85rem; font-weight: 600; color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--navy); padding-bottom: 1px; }
.contact-trust-list { display: flex; flex-direction: column; gap: 0.625rem; }
.contact-trust-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--text-mid); }
.contact-trust-item a { color: var(--navy); font-weight: 600; text-decoration: none; }
.contact-promise { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: var(--navy); border-radius: var(--radius); color: var(--white); }
.contact-promise__icon { color: #fbbf24; flex-shrink: 0; margin-top: 2px; }
.contact-promise strong { display: block; font-size: 0.9375rem; margin-bottom: 0.25rem; }
.contact-promise span { font-size: 0.8125rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* Map */
.contact-map-wrap { position: relative; height: 420px; overflow: hidden; }
.contact-map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-map-overlay { position: absolute; top: 1.25rem; left: 50%; transform: translateX(-50%); z-index: 10; pointer-events: none; }
.contact-map-pin { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--white); padding: 0.5rem 1rem; border-radius: 100px; box-shadow: var(--shadow-lg); font-size: 0.875rem; font-weight: 700; color: var(--navy); }

/* FAQ */
.contact-faq { padding: 5rem 0; }
.contact-faq__inner { display: grid; grid-template-columns: 280px 1fr; gap: 4rem; align-items: start; }
.contact-faq__heading { position: sticky; top: calc(var(--header-h) + var(--topbar-h) + 2rem); }
.contact-faq__heading h2 { font-size: 1.875rem; margin-top: 0.75rem; }
.contact-faq__list { display: flex; flex-direction: column; }
.contact-faq__item { border-bottom: 1px solid var(--gray-200); }
.contact-faq__q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 1.25rem 0; background: none; border: none; text-align: left; font-family: var(--font-main); font-size: 1rem; font-weight: 600; color: var(--navy); cursor: pointer; gap: 1rem; }
.contact-faq__q:hover { color: var(--navy-pale); }
.contact-faq__caret { flex-shrink: 0; transition: transform 0.25s; }
.contact-faq__q[aria-expanded="true"] .contact-faq__caret { transform: rotate(180deg); }
.contact-faq__a { padding: 0 0 1.25rem; }
.contact-faq__a p { color: var(--text-mid); line-height: 1.8; font-size: 0.9375rem; margin: 0; }

/* Emergency band */
.contact-emergency-band { padding: 4rem 0; }
.contact-emergency-band__inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.contact-emergency-band__icon { color: #fbbf24; flex-shrink: 0; }
.contact-emergency-band__text { flex: 1; }
.contact-emergency-band__text h2 { color: var(--white); font-size: 1.75rem; margin-bottom: 0.375rem; }
.contact-emergency-band__text p { color: rgba(255,255,255,0.75); margin: 0; }
.contact-emergency-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Contact Form (shared styles preserved) */
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field label { font-size: 0.8125rem; font-weight: 600; color: var(--navy); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.9375rem; font-family: var(--font-body); transition: var(--transition); background: var(--white); }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,22,40,0.08); }
.contact-form button[type="submit"] { margin-top: 1rem; width: 100%; justify-content: center; }
.contact-form__response { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-sm); display: none; }
.contact-form__response.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.contact-form__response.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* Contact Form (template-part) */
.contact-form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.contact-form__field { display: flex; flex-direction: column; gap: 0.375rem; }
.contact-form__field--full { grid-column: 1 / -1; }
.contact-form__field label { font-size: 0.8125rem; font-weight: 600; color: var(--navy); }
.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea { padding: 0.75rem 1rem; border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm); font-size: 0.9375rem; transition: var(--transition); }
.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,22,40,0.08); }
.contact-form button[type="submit"] { margin-top: 1rem; width: 100%; justify-content: center; }
.contact-form__response { margin-top: 1rem; padding: 1rem; border-radius: var(--radius-sm); display: none; }
.contact-form__response.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.contact-form__response.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* Quote Form (template-part) */
/* ── Quote Form (base — light card context, e.g. hero white card) ── */
.quote-form { display: flex; flex-direction: column; gap: 0.875rem; }
.quote-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.quote-form__field { display: flex; flex-direction: column; gap: 0.3rem; }
.quote-form__field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  font-family: var(--font-main);
}
.quote-form__field label span[aria-hidden] { color: var(--navy-pale); margin-left: 2px; }
.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--navy);
  font-size: 0.9rem;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.quote-form__field input::placeholder,
.quote-form__field textarea::placeholder { color: var(--gray-300); }
.quote-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892a4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
  cursor: pointer;
  background-color: var(--gray-50);
}
.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
}
.quote-form__field textarea { resize: vertical; min-height: 80px; }
.quote-form__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}
.quote-form__note {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.78rem;
  color: var(--text-light);
  flex: 1;
}
.quote-form button[type="submit"] {
  flex-shrink: 0;
}
.quote-form__response { font-size: 0.875rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); display: none; margin-top: 0.5rem; }
.quote-form__response.success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; display: block; }
.quote-form__response.error   { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ── Quote form inside the main contact/dark section ── */
.quote-section .quote-form__field label { color: rgba(255,255,255,0.8); }
.quote-section .quote-form__field input,
.quote-section .quote-form__field select,
.quote-section .quote-form__field textarea {
  background: var(--white-10);
  border-color: var(--white-20);
  color: var(--white);
}
.quote-section .quote-form__field input::placeholder,
.quote-section .quote-form__field textarea::placeholder { color: rgba(255,255,255,0.4); }
.quote-section .quote-form__field select { background-color: var(--white-10); }
.quote-section .quote-form__field select option { background: var(--navy); color: var(--white); }
.quote-section .quote-form__field input:focus,
.quote-section .quote-form__field select:focus,
.quote-section .quote-form__field textarea:focus { border-color: rgba(255,255,255,0.6); background: var(--white-15); box-shadow: none; }
.quote-section .quote-form__note { color: rgba(255,255,255,0.5); }
.quote-section .quote-form button[type="submit"] { background: var(--white); color: var(--navy); border-color: var(--white); }
.quote-section .quote-form button[type="submit"]:hover { background: var(--gray-100); }

/* ══════════════════════════════════════════
   REVIEWS PAGE
══════════════════════════════════════════ */
.reviews-scores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review-score-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center; box-shadow: var(--shadow-md); }
.review-score-card__logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; font-size: 0.9375rem; margin-bottom: 1rem; color: var(--navy); }
.review-score-card__score { font-family: var(--font-main); font-size: 3.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.review-score-card__stars { font-size: 1.5rem; color: #f59e0b; margin: 0.5rem 0; }
.review-score-card__label { font-size: 0.875rem; color: var(--text-light); }
.reviews-grid--page { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.reviews-cta { text-align: center; margin-top: 3rem; }
.reviews-cta p { color: var(--text-light); margin-bottom: 1rem; }
.trustindex-wrap { margin-top: 2rem; }

/* ══════════════════════════════════════════
   BLOG — ARCHIVE (home.php)
══════════════════════════════════════════ */
.page-hero--blog { padding-bottom: 2rem; }
.blog-hero__cats { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.blog-cat-pill { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.875rem; background: var(--white-15); color: var(--white); border: 1px solid var(--white-20); border-radius: 100px; font-size: 0.8125rem; font-weight: 500; text-decoration: none; transition: var(--transition); }
.blog-cat-pill:hover { background: var(--white); color: var(--navy); }
.blog-cat-pill__count { background: var(--white-20); border-radius: 100px; padding: 0 0.4rem; font-size: 0.7rem; font-weight: 700; }

/* Featured post */
.blog-featured { padding: 0 0 0; }
.blog-featured__card { display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); text-decoration: none; color: inherit; transition: var(--transition); }
.blog-featured__card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px rgba(10,22,40,0.18); }
.blog-featured__img { position: relative; flex: 1 1 55%; min-height: 380px; overflow: hidden; }
.blog-featured__img-actual { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.blog-featured__card:hover .blog-featured__img-actual { transform: scale(1.04); }
.blog-featured__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.blog-featured__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.25) 0%, transparent 60%); }
.blog-featured__label { position: absolute; top: 1.25rem; left: 1.25rem; background: var(--navy); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.75rem; border-radius: 100px; }
.blog-featured__body { flex: 1 1 45%; background: var(--white); padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.blog-featured__meta { font-size: 0.8125rem; color: var(--text-light); display: flex; align-items: center; gap: 0.5rem; }
.blog-featured__title { font-size: clamp(1.375rem, 2.5vw, 1.875rem); line-height: 1.3; color: var(--navy); margin: 0; }
.blog-featured__excerpt { color: var(--text-mid); line-height: 1.7; font-size: 0.9375rem; }

/* Blog card grid */
.blog-archive { padding-top: 3rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-grid--3 { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: var(--navy); }
.blog-card__link { display: block; text-decoration: none; color: inherit; }
.blog-card__img { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.blog-card__img-actual { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-card:hover .blog-card__img-actual { transform: scale(1.05); }
.blog-card__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.blog-cat-badge { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--navy); color: var(--white); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.25rem 0.625rem; border-radius: 100px; text-decoration: none; }
.blog-cat-badge--light { background: var(--white); color: var(--navy); }
.blog-card__body { padding: 1.25rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card__meta { font-size: 0.775rem; color: var(--text-light); display: flex; align-items: center; gap: 0.375rem; }
.blog-dot { color: var(--gray-300); }
.blog-card__title { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.4; margin: 0.25rem 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card__excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; flex: 1; }
.blog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--gray-100); }
.blog-card__author { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: var(--text-mid); font-weight: 500; }
.blog-card__avatar { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.blog-card__read { font-size: 0.8rem; font-weight: 600; color: var(--navy); }

/* Empty state */
.blog-empty { text-align: center; padding: 6rem 2rem; }
.blog-empty__icon { width: 80px; height: 80px; background: var(--gray-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--gray-400); }
.blog-empty h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.blog-empty p { color: var(--text-light); margin-bottom: 1.5rem; }

/* ══════════════════════════════════════════
   BLOG — SINGLE POST (single.php)
══════════════════════════════════════════ */
.post-hero { position: relative; background: var(--navy); min-height: 420px; display: flex; flex-direction: column; justify-content: flex-end; }
.post-hero__img { position: absolute; inset: 0; }
.post-hero__img-actual { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.5) 50%, rgba(10,22,40,0.25) 100%); }
.post-hero__inner { position: relative; z-index: 1; padding: 3rem 0 3rem; }
.post-hero__content { max-width: 820px; }
.post-hero__meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; flex-wrap: wrap; }
.post-hero__back { display: inline-flex; align-items: center; gap: 0.375rem; color: rgba(255,255,255,0.7); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.post-hero__back:hover { color: var(--white); }
.post-hero__title { color: var(--white); font-size: clamp(1.75rem, 4vw, 3rem); line-height: 1.2; margin-bottom: 1.25rem; }
.post-hero__byline { display: flex; align-items: center; gap: 0.875rem; }
.post-hero__avatar { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--white-20); object-fit: cover; }
.post-hero__author { display: block; color: var(--white); font-weight: 600; font-size: 0.9rem; }
.post-hero__date { display: block; color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-top: 0.1rem; }

/* Post layout */
.post-single { padding-top: 3rem; }
.post-single__layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.post-single__sidebar { position: sticky; top: calc(var(--header-h) + var(--topbar-h) + 1.5rem); }

/* TOC */
.post-toc { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.post-toc__toggle { display: flex; align-items: center; gap: 0.5rem; background: none; border: none; cursor: pointer; font-family: var(--font-main); font-size: 0.9rem; font-weight: 700; color: var(--navy); padding: 0; width: 100%; }
.post-toc__caret { margin-left: auto; transition: transform 0.25s; }
.post-toc__toggle[aria-expanded="false"] .post-toc__caret { transform: rotate(-90deg); }
.post-toc__list { margin: 1rem 0 0; padding-left: 1rem; list-style: none; overflow: hidden; transition: max-height 0.3s ease; }
.post-toc__toggle[aria-expanded="false"] + .post-toc__list { max-height: 0 !important; }
.post-toc__item { margin-bottom: 0.5rem; }
.post-toc__item--h3 { padding-left: 1rem; }
.post-toc__item a { font-size: 0.85rem; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.post-toc__item a:hover { color: var(--navy); }

/* Post content */
.post-content { margin-bottom: 2.5rem; }
.post-content.prose img { border-radius: var(--radius); max-width: 100%; height: auto; margin: 1.5rem 0; }
.post-content.prose blockquote { border-left: 4px solid var(--navy); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--gray-50); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.post-content.prose blockquote p { margin: 0; font-style: italic; color: var(--navy); font-size: 1.0625rem; }
.post-content.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

/* Tags */
.post-tags { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--gray-200); }
.post-tags__label { font-size: 0.8125rem; font-weight: 600; color: var(--text-mid); margin-right: 0.25rem; }
.post-tag { display: inline-block; padding: 0.25rem 0.75rem; background: var(--gray-100); color: var(--navy); border-radius: 100px; font-size: 0.8rem; font-weight: 500; text-decoration: none; transition: var(--transition); }
.post-tag:hover { background: var(--navy); color: var(--white); }

/* Share bar */
.post-share { display: flex; align-items: center; flex-wrap: wrap; gap: 0.625rem; margin-bottom: 2rem; }
.post-share__label { font-size: 0.8rem; font-weight: 600; color: var(--text-light); }
.post-share__btn { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.4rem 0.875rem; border-radius: 100px; font-size: 0.8rem; font-weight: 600; text-decoration: none; transition: var(--transition); }
.post-share__btn--fb { background: #1877f2; color: #fff; }
.post-share__btn--fb:hover { background: #0d6fd4; color: #fff; }
.post-share__btn--tw { background: #000; color: #fff; }
.post-share__btn--tw:hover { background: #333; color: #fff; }
.post-share__btn--wa { background: #25d366; color: #fff; }
.post-share__btn--wa:hover { background: #1da851; color: #fff; }

/* Author card */
.post-author { display: flex; align-items: flex-start; gap: 1.25rem; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 2rem; }
.post-author__avatar { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.post-author__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); }
.post-author__name { display: block; font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0.2rem 0 0.5rem; }
.post-author__bio { font-size: 0.875rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

/* Post navigation */
.post-nav { display: flex; align-items: stretch; gap: 1rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.post-nav__item { flex: 1; display: flex; flex-direction: column; gap: 0.25rem; padding: 1.25rem; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); text-decoration: none; transition: var(--transition); }
.post-nav__item:hover { border-color: var(--navy); background: var(--gray-50); }
.post-nav__item--next { text-align: right; }
.post-nav__dir { font-size: 0.75rem; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.post-nav__title { font-size: 0.9rem; font-weight: 600; color: var(--navy); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Sidebar */
.sidebar-cat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.sidebar-cat-link { display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); font-size: 0.875rem; color: var(--text-mid); text-decoration: none; transition: var(--transition); }
.sidebar-cat-link:hover, .sidebar-cat-link.active { background: var(--gray-100); color: var(--navy); font-weight: 600; }
.sidebar-cat-link span { background: var(--gray-200); border-radius: 100px; padding: 0.1rem 0.5rem; font-size: 0.7rem; font-weight: 700; }
.sidebar-recent { display: flex; flex-direction: column; gap: 0.875rem; }
.sidebar-recent__item { display: flex; align-items: center; gap: 0.875rem; text-decoration: none; }
.sidebar-recent__thumb { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.sidebar-recent__thumb--placeholder { background: var(--gray-100); }
.sidebar-recent__title { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-recent__date { display: block; font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; }

/* Related posts */
.related-posts { padding-top: 4rem; }

/* ══════════════════════════════════════════
   PROJECTS ARCHIVE
══════════════════════════════════════════ */
.projects-grid--archive { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--radius-sm); border: 1.5px solid var(--gray-200); font-weight: 600; font-size: 0.875rem; color: var(--navy); transition: var(--transition); }
.pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: var(--white); }
.pagination .page-numbers:hover:not(.current) { background: var(--gray-100); }
.no-results { text-align: center; padding: 4rem 0; color: var(--text-light); }

/* ══════════════════════════════════════════
   SINGLE SERVICE
══════════════════════════════════════════ */
.service-hero { background: var(--navy); padding: 5rem 0; }
.service-hero__inner { display: flex; align-items: center; gap: 2.5rem; }
.service-hero__icon { color: var(--white); flex-shrink: 0; opacity: 0.9; }
.service-hero__content h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 3rem); margin: 0.5rem 0 0.75rem; }
.service-hero__excerpt { color: rgba(255,255,255,0.75); font-size: 1.0625rem; margin-bottom: 1.5rem; }
.service-hero__actions { display: flex; gap: 1rem; }
.service-single { padding-top: 4rem; }
.service-single__layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.prose { line-height: 1.8; color: var(--text-mid); }
.prose h2 { font-size: 1.625rem; margin: 2rem 0 1rem; }
.prose h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.5rem; }

/* Sidebar */
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 1.5rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.sidebar-card h3 { font-size: 1rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--gray-200); }
.sidebar-card--cta { background: var(--navy); border-color: var(--navy); }
.sidebar-card--cta h3 { color: var(--white); border-color: var(--white-15); }
.sidebar-card--cta p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1rem; }
.sidebar-features { display: flex; flex-direction: column; gap: 0.625rem; }
.sidebar-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--text-mid); }
.sidebar-features svg { flex-shrink: 0; stroke: var(--navy); }
.sidebar-links { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-links a { font-size: 0.875rem; color: var(--navy); display: flex; align-items: center; gap: 0.375rem; }
.sidebar-links a::before { content: '→'; }
.sidebar-links a:hover { color: var(--navy-pale); text-decoration: underline; }

/* ══════════════════════════════════════════
   SINGLE PROJECT
══════════════════════════════════════════ */
.project-hero-image { width: 100%; max-height: 500px; overflow: hidden; }
.project-hero-image__img { width: 100%; height: 100%; object-fit: cover; }
.project-single { padding-top: 3rem; }
.project-single__layout { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.project-single__cat { display: inline-block; background: var(--gray-100); color: var(--navy); font-size: 0.8125rem; font-weight: 600; padding: 0.25rem 0.875rem; border-radius: 100px; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.project-single__title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
.project-single__rating { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.5rem; }
.project-single__rating .stars { color: #f59e0b; }
.project-single__source { font-size: 0.875rem; color: var(--text-light); }
.project-single__content { margin-top: 1rem; }
.project-details { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1rem; font-size: 0.875rem; }
.project-details dt { color: var(--text-light); }
.project-details dd { color: var(--navy); font-weight: 600; }
.sidebar-projects { display: flex; flex-direction: column; gap: 0.75rem; }
.sidebar-project { display: flex; align-items: center; gap: 0.75rem; }
.sidebar-project__thumb { width: 60px; height: 50px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--gray-100); }
.sidebar-project__thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-project span { font-size: 0.875rem; font-weight: 600; color: var(--navy); }
.sidebar-project:hover span { text-decoration: underline; }

/* ══════════════════════════════════════════
   RESPONSIVE — Page Templates
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-founder__inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-founder__portrait { max-width: 220px; }
  .stats-grid--about { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-single__layout, .project-single__layout { grid-template-columns: 1fr; }
  .service-single__sidebar, .project-single__sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .contact-page__layout { grid-template-columns: 1fr; }
  .contact-hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-main__layout { grid-template-columns: 1fr; }
  .contact-faq__inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-faq__heading { position: static; }
  .contact-emergency-band__inner { flex-direction: column; text-align: center; }
  .contact-emergency-band__actions { justify-content: center; }
  .reviews-grid--page { grid-template-columns: repeat(2, 1fr); }
  .reviews-scores { grid-template-columns: repeat(2, 1fr); }
  .projects-grid--archive { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .post-single__layout { grid-template-columns: 1fr; }
  .post-single__sidebar { position: static; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .blog-featured__card { flex-direction: column; }
  .blog-featured__img { min-height: 280px; }
}
@media (max-width: 768px) {
  .page-hero { padding: 5rem 0 3rem; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .service-hero__inner { flex-direction: column; text-align: center; }
  .service-hero__actions { justify-content: center; flex-wrap: wrap; }
  .about-founder__quote { padding: 1.5rem; }
  .stats-grid--about { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .service-single__sidebar, .project-single__sidebar { grid-template-columns: 1fr; }
  .contact-form__grid { grid-template-columns: 1fr; }
  .quote-form__row { grid-template-columns: 1fr; }
  .reviews-scores { grid-template-columns: 1fr; }
  .reviews-grid--page { grid-template-columns: 1fr; }
  .projects-grid--archive { grid-template-columns: 1fr; }
  .services-page__grid { grid-template-columns: 1fr; }
  .service-full-card { flex-direction: column; }
  .service-full-card--featured { grid-column: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured__card { flex-direction: column; }
  .blog-featured__img { max-height: 260px; }
  .blog-featured__body { padding: 1.5rem; }
  .post-single__layout { grid-template-columns: 1fr; }
  .post-single__sidebar { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .post-nav { flex-direction: column; gap: 1rem; }
  .post-hero__title { font-size: clamp(1.5rem, 6vw, 2rem); }
}
}

/* ═══════════════════════════════════════════
   INTERIOR DESIGN PAGE — Pure Design Studio
═══════════════════════════════════════════ */

/* ── Hero ── */
.id-hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:#0a0f1e}
.id-hero__bg{position:absolute;inset:0;background-size:cover;background-position:center;transform:scale(1.06);animation:idZoom 14s ease-out forwards;filter:saturate(0.85)}
@keyframes idZoom{to{transform:scale(1)}}
.id-hero__overlay{position:absolute;inset:0;background:linear-gradient(120deg,rgba(5,8,20,.95) 0%,rgba(5,8,20,.75) 50%,rgba(5,8,20,.2) 100%)}
.id-hero__grain{position:absolute;inset:0;opacity:.025;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");pointer-events:none}
.id-hero__content{position:relative;z-index:2;padding:9rem 0 6rem;max-width:780px;margin-left:max(2rem,calc((100vw - 1200px)/2));animation:idFadeUp .9s .1s both}
@keyframes idFadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.id-hero__studio{font-family:var(--font-main);font-size:.72rem;font-weight:600;letter-spacing:.3em;text-transform:uppercase;color:rgba(255,255,255,.4);margin:0 0 2rem}
.id-hero__studio span{color:#c9a84c}
.id-hero__title{font-family:var(--font-main);font-size:clamp(3.2rem,7vw,6rem);font-weight:900;line-height:.98;letter-spacing:-.04em;margin:0 0 1.8rem;color:#fff}
.id-hero__title-line{display:block}
.id-hero__title-line--gold{color:#c9a84c;font-style:italic}
.id-hero__sub{font-size:1.05rem;line-height:1.8;color:rgba(255,255,255,.65);max-width:500px;margin:0 0 2.5rem}
.id-hero__ctas{display:flex;gap:.9rem;flex-wrap:wrap;margin-bottom:3rem}
.id-hero__awards{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap}
.id-hero__award{display:flex;flex-direction:column;gap:.2rem}
.id-hero__award strong{font-family:var(--font-main);font-size:1.3rem;font-weight:900;color:#c9a84c;line-height:1}
.id-hero__award span{font-size:.65rem;font-weight:600;text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.4)}
.id-hero__award-sep{width:1px;height:36px;background:rgba(255,255,255,.12)}
.id-hero__scroll-hint{position:absolute;right:3rem;bottom:3rem;display:flex;flex-direction:column;align-items:center;gap:.7rem;z-index:2;animation:idFadeUp .9s .5s both}
.id-hero__scroll-track{width:1px;height:60px;background:rgba(255,255,255,.12);position:relative;overflow:hidden}
.id-hero__scroll-thumb{position:absolute;top:0;left:0;right:0;height:30px;background:linear-gradient(to bottom,transparent,#c9a84c);animation:scrollDrop 2s ease-in-out infinite}
@keyframes scrollDrop{0%{transform:translateY(-30px)}100%{transform:translateY(60px)}}
.id-hero__scroll-hint span{font-size:.6rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;color:rgba(255,255,255,.3);writing-mode:vertical-rl}

/* ── Shared Buttons ── */
.id-btn{display:inline-flex;align-items:center;gap:.55rem;padding:.9rem 1.9rem;border-radius:var(--radius);font-family:var(--font-main);font-size:.85rem;font-weight:700;text-decoration:none;letter-spacing:.02em;transition:all .3s;border:1.5px solid transparent}
.id-btn--gold{background:#c9a84c;color:#0a0f1e;border-color:#c9a84c;box-shadow:0 4px 22px rgba(201,168,76,.3)}
.id-btn--gold:hover{background:#deba5c;box-shadow:0 8px 32px rgba(201,168,76,.5);transform:translateY(-2px)}
.id-btn--lg{padding:1.1rem 2.4rem;font-size:.95rem}
.id-btn--ghost{background:rgba(255,255,255,.06);color:#fff;border-color:rgba(255,255,255,.2);backdrop-filter:blur(6px)}
.id-btn--ghost:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.5)}
.id-btn--wa{background:#25d366;color:#fff;border-color:#25d366}
.id-btn--wa:hover{background:#1db954;transform:translateY(-2px)}
.id-btn--outline-light{background:transparent;color:rgba(255,255,255,.75);border-color:rgba(255,255,255,.25)}
.id-btn--outline-light:hover{border-color:rgba(255,255,255,.6);color:#fff}

/* ── Philosophy ── */
.id-philosophy{background:#050814;padding:6rem 0}
.id-philosophy__inner{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.id-philosophy__mark{font-family:Georgia,serif;font-size:8rem;line-height:.5;color:#c9a84c;opacity:.4;margin-bottom:1rem}
.id-philosophy blockquote{font-family:Georgia,serif;font-size:clamp(1.1rem,2vw,1.5rem);line-height:1.75;color:rgba(255,255,255,.85);margin:0 0 1.5rem;font-weight:400}
.id-philosophy blockquote em{color:#c9a84c;font-style:italic}
.id-philosophy__attr{font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:rgba(255,255,255,.3)}
.id-philosophy__pillars{display:grid;grid-template-columns:1fr 1fr;gap:2rem}
.id-philosophy__pillar{opacity:0;transform:translateY(16px);transition:opacity .5s ease,transform .5s ease}
.id-philosophy__pillar.is-visible{opacity:1;transform:translateY(0)}
.id-philosophy__pillar-line{width:32px;height:2px;background:#c9a84c;margin-bottom:1rem}
.id-philosophy__pillar h3{font-family:var(--font-main);font-size:.95rem;font-weight:800;color:#fff;margin:0 0 .5rem}
.id-philosophy__pillar p{font-size:.82rem;line-height:1.65;color:rgba(255,255,255,.45);margin:0}

/* ── Specialism Accordion ── */
.id-spec__strip{margin-top:3rem}
.id-spec__accordion{display:flex;height:540px;gap:3px;overflow:hidden;border-radius:var(--radius-lg)}
.id-spec__item{position:relative;flex:1;overflow:hidden;cursor:pointer;transition:flex .7s cubic-bezier(.77,0,.175,1)}
.id-spec__item.is-active{flex:4}
.id-spec__item-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform .7s ease;transform:scale(1.05)}
.id-spec__item.is-active .id-spec__item-bg{transform:scale(1)}
.id-spec__item-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(5,8,20,.97) 0%,rgba(5,8,20,.5) 60%,transparent 100%);transition:opacity .4s}
.id-spec__item:not(.is-active) .id-spec__item-overlay{background:rgba(5,8,20,.75)}
.id-spec__item-content{position:relative;z-index:1;height:100%;display:flex;flex-direction:column;justify-content:flex-end;padding:2rem 1.5rem}
.id-spec__num{font-family:var(--font-main);font-size:.65rem;font-weight:700;letter-spacing:.2em;color:#c9a84c;margin-bottom:.5rem;display:block}
.id-spec__title{font-family:var(--font-main);font-size:clamp(.95rem,1.5vw,1.3rem);font-weight:800;color:#fff;margin:0;writing-mode:vertical-rl;transform:rotate(180deg);transition:writing-mode .3s,transform .3s}
.id-spec__item.is-active .id-spec__title{writing-mode:horizontal-tb;transform:none;font-size:clamp(1.3rem,2.2vw,1.8rem);margin-bottom:.8rem}
.id-spec__detail{max-height:0;overflow:hidden;opacity:0;transition:max-height .5s ease,opacity .4s ease}
.id-spec__item.is-active .id-spec__detail{max-height:300px;opacity:1}
.id-spec__detail p{font-size:.85rem;line-height:1.7;color:rgba(255,255,255,.7);margin:0 0 1rem;max-width:420px}
.id-spec__tags{display:flex;flex-wrap:wrap;gap:.4rem;margin-bottom:1.2rem}
.id-spec__tags span{font-size:.65rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;color:#c9a84c;border:1px solid rgba(201,168,76,.35);border-radius:2rem;padding:.25rem .7rem;background:rgba(201,168,76,.07)}
.id-spec__cta{display:inline-flex;align-items:center;gap:.4rem;font-size:.78rem;font-weight:700;color:#c9a84c;text-decoration:none;transition:gap .2s}
.id-spec__cta:hover{gap:.7rem}

/* ── Masonry Gallery ── */
.id-masonry{display:grid;grid-template-columns:repeat(4,1fr);grid-auto-rows:260px;gap:5px;margin-top:3rem}
.id-masonry__item{position:relative;overflow:hidden;border-radius:6px;cursor:pointer;background:var(--gray-100);opacity:0;transform:scale(.97);transition:opacity .5s,transform .5s}
.id-masonry__item.is-visible{opacity:1;transform:scale(1)}
.id-masonry__item--tall  {grid-row:span 2}
.id-masonry__item--wide  {grid-column:span 2}
.id-masonry__item--square{}
.id-masonry__img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.25,.46,.45,.94)}
.id-masonry__item:hover .id-masonry__img{transform:scale(1.07)}
.id-masonry__placeholder{position:absolute;inset:0;background:linear-gradient(135deg,#0d1829,#1a2d50);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.1)}
.id-masonry__hover{position:absolute;inset:0;background:linear-gradient(to top,rgba(5,8,20,.95) 0%,rgba(5,8,20,.3) 55%,transparent 100%);opacity:0;transition:opacity .35s;display:flex;align-items:flex-end;padding:1.5rem}
.id-masonry__item:hover .id-masonry__hover{opacity:1}
.id-masonry__hover h3{font-family:var(--font-main);font-size:.9rem;font-weight:700;color:#fff;margin:0 0 .25rem}
.id-masonry__hover p{font-size:.75rem;color:rgba(255,255,255,.55);margin:0 0 .7rem}
.id-masonry__open{display:inline-flex;align-items:center;gap:.35rem;font-size:.7rem;font-weight:700;letter-spacing:.06em;text-transform:uppercase;color:#c9a84c}

/* ── Modal ── */
.id-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem}
.id-modal__bg{position:absolute;inset:0;background:rgba(5,8,20,.9);backdrop-filter:blur(8px)}
.id-modal__box{position:relative;z-index:1;background:#fff;border-radius:var(--radius-lg);width:100%;max-width:940px;max-height:90vh;overflow:hidden;display:grid;grid-template-columns:46% 54%;box-shadow:0 40px 100px rgba(0,0,0,.5);transform:translateY(30px) scale(.95);opacity:0;transition:transform .38s cubic-bezier(.34,1.3,.64,1),opacity .38s ease}
.id-modal.is-open .id-modal__box{transform:translateY(0) scale(1);opacity:1}
.id-modal__x{position:absolute;top:1rem;right:1rem;z-index:2;width:38px;height:38px;border-radius:50%;border:none;background:rgba(255,255,255,.9);backdrop-filter:blur(4px);display:flex;align-items:center;justify-content:center;cursor:pointer;box-shadow:0 2px 12px rgba(0,0,0,.12);transition:transform .2s,box-shadow .2s}
.id-modal__x:hover{transform:scale(1.1);box-shadow:0 4px 20px rgba(0,0,0,.2)}
.id-modal__figure{position:relative;background:#f0f2f5;margin:0}
.id-modal__figure img{width:100%;height:100%;object-fit:cover;display:block}
.id-modal__no-img{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;color:var(--gray-300)}
.id-modal__info{padding:2.5rem;overflow-y:auto;display:flex;flex-direction:column;gap:.9rem;max-height:90vh}
.id-modal__chips{display:flex;flex-wrap:wrap;gap:.4rem}
.id-modal__chips span{font-size:.7rem;font-weight:600;background:var(--gray-100);color:var(--text-mid);padding:.3rem .8rem;border-radius:2rem}
.id-modal__info h2{font-family:var(--font-main);font-size:1.6rem;font-weight:900;color:var(--navy);margin:0}
.id-modal__info p{font-size:.88rem;line-height:1.75;color:var(--text-mid);margin:0}
.id-modal__dl{display:flex;gap:1.5rem;flex-wrap:wrap;padding:1rem;background:var(--gray-50);border-radius:var(--radius);margin:0}
.id-modal__dl>div{display:flex;flex-direction:column;gap:.2rem}
.id-modal__dl dt{font-size:.65rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:var(--text-mid)}
.id-modal__dl dd{font-family:var(--font-main);font-size:1rem;font-weight:800;color:var(--navy);margin:0}
.id-modal__btns{display:flex;gap:.7rem;flex-wrap:wrap;margin-top:auto;padding-top:1rem;border-top:1px solid var(--gray-100)}

/* ── Process ── */
.id-process{background:#050814}
.id-process .section-tag,.id-process .section-title,.id-process__header p{color:#fff!important}
.id-process .section-title em{color:#c9a84c}
.id-process__inner{display:grid;grid-template-columns:340px 1fr;gap:5rem;align-items:start}
.id-process__header{position:sticky;top:6rem}
.id-process__header p{font-size:.95rem;line-height:1.75;color:rgba(255,255,255,.5)!important;margin:1rem 0 2.5rem}
.id-process__steps{display:flex;flex-direction:column;gap:0;padding:1rem 0}
.id-process__step{display:grid;grid-template-columns:56px 1fr;gap:1.5rem;align-items:start;opacity:0;transform:translateX(20px);transition:opacity .5s,transform .5s;position:relative}
.id-process__step.is-visible{opacity:1;transform:translateX(0)}
.id-process__step-num{width:52px;height:52px;border-radius:50%;background:transparent;border:1.5px solid rgba(201,168,76,.3);display:flex;align-items:center;justify-content:center;font-family:var(--font-main);font-size:.8rem;font-weight:800;color:#c9a84c;flex-shrink:0;transition:all .4s;position:relative;z-index:1}
.id-process__step:hover .id-process__step-num{background:#c9a84c;color:#050814;border-color:#c9a84c;box-shadow:0 0 0 8px rgba(201,168,76,.1)}
.id-process__step-body{padding:0 0 2.5rem}
.id-process__step-body h3{font-family:var(--font-main);font-size:1rem;font-weight:800;color:#fff;margin:0 0 .5rem;padding-top:.75rem}
.id-process__step-body p{font-size:.83rem;line-height:1.7;color:rgba(255,255,255,.45);margin:0}
.id-process__step-arrow{grid-column:1;display:flex;justify-content:center;color:rgba(201,168,76,.25);margin:-1rem 0;height:2rem}
.id-process__foot{padding:2rem 0 0;grid-column:1/-1}

/* ── Articles ── */
.id-articles__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.id-art-card{background:#fff;border-radius:var(--radius-lg);overflow:hidden;border:1px solid var(--gray-200);box-shadow:var(--shadow-sm);transition:transform .3s,box-shadow .3s}
.id-art-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-md)}
.id-art-card__img-wrap{display:block;position:relative;aspect-ratio:16/9;overflow:hidden}
.id-art-card__img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
.id-art-card:hover .id-art-card__img{transform:scale(1.05)}
.id-art-card__img-fallback{width:100%;height:100%;background:linear-gradient(135deg,var(--navy),#1a2d50)}
.id-art-card__read{position:absolute;top:.7rem;right:.7rem;background:rgba(5,8,20,.75);color:#c9a84c;font-size:.65rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:.3rem .7rem;border-radius:2rem;backdrop-filter:blur(4px)}
.id-art-card__body{padding:1.5rem}
.id-art-card__date{font-size:.72rem;color:var(--text-mid);margin-bottom:.6rem;display:block}
.id-art-card__body h3{font-family:var(--font-main);font-size:1rem;font-weight:800;color:var(--navy);margin:0 0 .6rem;line-height:1.4}
.id-art-card__body h3 a{color:inherit;text-decoration:none}
.id-art-card__body h3 a:hover{color:#c9a84c}
.id-art-card__body p{font-size:.83rem;color:var(--text-mid);line-height:1.65;margin:0 0 1rem}
.id-art-card__more{display:inline-flex;align-items:center;gap:.35rem;font-size:.78rem;font-weight:700;color:var(--navy);text-decoration:none;transition:color .2s,gap .2s}
.id-art-card__more:hover{color:#c9a84c;gap:.6rem}

/* ── Closing CTA ── */
.id-closing{position:relative;padding:9rem 0;overflow:hidden}
.id-closing__img{position:absolute;inset:0;background-size:cover;background-position:center;filter:saturate(.7)}
.id-closing__overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(5,8,20,.97) 0%,rgba(5,8,20,.88) 100%)}
.id-closing__content{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:4rem;flex-wrap:wrap}
.id-closing__pre{font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;color:#c9a84c;display:block;margin-bottom:.8rem}
.id-closing__text h2{font-family:var(--font-main);font-size:clamp(2.2rem,4.5vw,3.5rem);font-weight:900;line-height:1.1;color:#fff;margin:0 0 1rem;letter-spacing:-.02em}
.id-closing__text h2 em{color:#c9a84c;font-style:italic}
.id-closing__body{font-size:.95rem;line-height:1.75;color:rgba(255,255,255,.55);margin:0;max-width:440px}
.id-closing__actions{display:flex;flex-direction:column;gap:.8rem;min-width:260px}

/* ── Responsive ── */
@media(max-width:1024px){
  .id-philosophy__inner{grid-template-columns:1fr}
  .id-spec__accordion{height:420px}
  .id-masonry{grid-template-columns:repeat(2,1fr)}
  .id-masonry__item--tall,.id-masonry__item--wide{grid-column:span 1;grid-row:span 1}
  .id-process__inner{grid-template-columns:1fr}
  .id-process__header{position:static}
  .id-modal__box{grid-template-columns:1fr;max-height:85vh;overflow-y:auto}
  .id-modal__figure{aspect-ratio:16/9}
  .id-hero__scroll-hint{display:none}
}
@media(max-width:768px){
  .id-hero__content{margin-left:1.5rem;padding-top:7rem}
  .id-hero__title{font-size:3rem}
  .id-spec__accordion{flex-direction:column;height:auto}
  .id-spec__item{min-height:80px;flex:1 0 80px}
  .id-spec__item.is-active{flex:1 0 420px}
  .id-spec__title{writing-mode:horizontal-tb!important;transform:none!important;font-size:1rem!important}
  .id-masonry{grid-template-columns:1fr 1fr;grid-auto-rows:200px}
  .id-articles__grid{grid-template-columns:1fr}
  .id-closing__content{flex-direction:column}
  .id-philosophy__pillars{grid-template-columns:1fr}
}

/* ════════════════════════════════════════════
   ABOUT US — minimal editorial redesign (au-)
════════════════════════════════════════════ */

/* shared buttons */
.au-btn{display:inline-flex;align-items:center;gap:.5rem;padding:.85rem 1.75rem;border-radius:6px;font-family:var(--font-main);font-size:.875rem;font-weight:700;text-decoration:none;white-space:nowrap;transition:all .25s;border:2px solid transparent;}
.au-btn--gold{background:#c9a84c;color:#0a1628;}
.au-btn--gold:hover{background:#ddb94f;transform:translateY(-2px);}
.au-btn--wa{background:#25d366;color:#fff;}
.au-btn--wa:hover{background:#1ebe5d;transform:translateY(-2px);}
.au-btn--lg{padding:1rem 2.25rem;font-size:.9375rem;}

/* ① HERO */
.au-hero{
  position:relative;background:var(--navy);overflow:hidden;
  padding:10rem 0 6rem;min-height:90vh;display:flex;flex-direction:column;justify-content:center;
}
.au-hero__year{
  position:absolute;right:-2rem;bottom:-3rem;
  font-family:var(--font-main);font-size:clamp(12rem,22vw,20rem);font-weight:900;
  color:rgba(255,255,255,.03);line-height:1;letter-spacing:-.05em;
  pointer-events:none;user-select:none;
}
.au-hero__inner{position:relative;z-index:1;max-width:720px;}
.au-hero__tag{
  font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:#c9a84c;margin-bottom:1.5rem;
}
.au-hero__title{
  font-family:var(--font-main);font-size:clamp(3rem,6vw,5.5rem);
  font-weight:900;line-height:1.05;color:#fff;margin:0 0 1.75rem;
}
.au-hero__title em{color:#c9a84c;font-style:normal;}
.au-hero__sub{font-size:1.0625rem;color:rgba(255,255,255,.55);line-height:1.8;max-width:540px;margin-bottom:2.5rem;}
.au-hero__line{
  position:absolute;bottom:0;left:0;right:0;height:1px;
  background:linear-gradient(to right,transparent,rgba(201,168,76,.4) 30%,rgba(201,168,76,.4) 70%,transparent);
}

/* ② FOUNDER — photo + quote */
.au-split{display:none;}
.au-founder{
  display:grid;grid-template-columns:1fr 1fr;
  background:#080f23;
}
.au-founder__photo-col{
  position:relative;overflow:hidden;min-height:560px;
}
.au-founder__photo-wrap{
  position:absolute;inset:0;
}
.au-founder__photo-wrap::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to right,transparent 55%,#080f23 100%);
  pointer-events:none;z-index:1;
}
.au-founder__photo{
  width:100%;height:100%;object-fit:cover;object-position:center top;
  display:block;filter:brightness(.92) contrast(1.05);
  transition:transform 7s ease;
}
.au-founder:hover .au-founder__photo{transform:scale(1.04);}
.au-founder__photo-badge{
  position:absolute;bottom:2rem;left:2rem;z-index:2;
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.7rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  color:#c9a84c;border:1px solid rgba(201,168,76,.4);border-radius:2rem;
  padding:.45rem 1.1rem;background:rgba(8,15,35,.8);backdrop-filter:blur(8px);
}
.au-founder__quote-col{
  padding:5rem clamp(2rem,5vw,4rem);
  display:flex;flex-direction:column;justify-content:center;
}
.au-founder__quote-col blockquote{
  font-size:1.075rem;line-height:1.9;color:rgba(255,255,255,.72);
  font-style:italic;margin:0 0 2.5rem;font-family:var(--font-body);
}
.au-founder__quote-col footer{display:flex;flex-direction:column;gap:.35rem;}
.au-founder__quote-col strong{color:#fff;font-family:var(--font-main);font-size:.9375rem;font-weight:700;}
.au-founder__quote-col span{font-size:.78rem;color:rgba(255,255,255,.38);letter-spacing:.04em;}
.au-split__dark{display:none;}
.au-split__mark{width:40px;height:auto;color:rgba(201,168,76,.25);margin-bottom:2rem;flex-shrink:0;}
.au-split__rule{display:block;width:36px;height:2px;background:#c9a84c;margin-bottom:.75rem;}
.au-split__dark strong{color:#fff;font-family:var(--font-main);font-size:.9375rem;font-weight:700;}
.au-split__dark span{font-size:.78rem;color:rgba(255,255,255,.38);letter-spacing:.04em;}

.au-split__stats{
  background:var(--gray-50);padding:5rem 2.5rem;
  display:grid;grid-template-columns:1fr;gap:0;
}
.au-stat{
  padding:2.25rem 1.5rem;border-bottom:1px solid var(--gray-200);
  display:flex;flex-direction:column;gap:.5rem;
  opacity:0;transform:translateY(16px);transition:opacity .5s,transform .5s;
}
.au-stat:last-child{border-bottom:none;}
.au-stat.is-vis{opacity:1;transform:translateY(0);}
.au-stat__n{
  font-family:var(--font-main);font-size:clamp(2.5rem,4vw,3.5rem);
  font-weight:900;color:var(--navy);line-height:1;letter-spacing:-.03em;
}
.au-stat__l{font-size:.75rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--gray-400);}

/* ③ PRINCIPLES */
.au-principles{background:#fff;border-top:1px solid var(--gray-200);border-bottom:1px solid var(--gray-200);}
.au-principles__grid{display:grid;grid-template-columns:repeat(3,1fr);}
.au-principle{
  padding:4rem 3rem;border-right:1px solid var(--gray-200);
  opacity:0;transform:translateY(20px);transition:opacity .55s,transform .55s;
}
.au-principle:last-child{border-right:none;}
.au-principle.is-vis{opacity:1;transform:translateY(0);}
.au-principle__n{
  display:block;font-family:var(--font-main);font-size:3.5rem;font-weight:900;
  color:var(--gray-200);line-height:1;margin-bottom:1.5rem;letter-spacing:-.04em;
}
.au-principle__title{font-size:1.125rem;color:var(--navy);margin:0 0 .75rem;font-weight:700;}
.au-principle__text{font-size:.875rem;color:var(--gray-500);line-height:1.75;margin:0;}

/* ④ CTA */
.au-cta{background:var(--navy);padding:7rem 0;}
.au-cta__inner{
  display:flex;align-items:center;justify-content:space-between;gap:4rem;flex-wrap:wrap;
}
.au-cta__pre{
  font-size:.7rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(255,255,255,.35);margin-bottom:.5rem;
}
.au-cta__heading h2{
  font-family:var(--font-main);font-size:clamp(2.25rem,5vw,4rem);
  font-weight:900;color:#c9a84c;margin:0 0 1rem;line-height:1.05;
}
.au-cta__sub{font-size:.9375rem;color:rgba(255,255,255,.45);max-width:380px;line-height:1.75;}
.au-cta__btns{display:flex;gap:.875rem;flex-shrink:0;flex-wrap:wrap;}

/* ── Responsive ── */
@media(max-width:1024px){
  .au-founder{grid-template-columns:1fr;}
  .au-founder__photo-col{min-height:420px;}
  .au-founder__photo-wrap::after{background:linear-gradient(to bottom,transparent 60%,#080f23 100%);}
  .au-cta__inner{flex-direction:column;text-align:center;}
  .au-cta__sub{margin:0 auto;}
  .au-cta__btns{justify-content:center;}
  .au-principle{padding:3rem 2rem;}
}
@media(max-width:768px){
  .au-principles__grid{grid-template-columns:1fr;}
  .au-principle{border-right:none;border-bottom:1px solid var(--gray-200);}
  .au-principle:last-child{border-bottom:none;}
  .au-founder__photo-col{min-height:320px;}
  .au-founder__quote-col{padding:3rem 1.5rem;}
  .au-hero{min-height:auto;padding:8rem 0 5rem;}
  .au-hero__year{font-size:40vw;}
}

/* ═══════════════════════════════════════════
   SERVICES ACCREDITATION BADGES
═══════════════════════════════════════════ */
.services-accreds{
  display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center;margin:-1rem 0 3rem;
}
.services-accred{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;
  color:var(--text-light);border:1px solid var(--gray-200);border-radius:2rem;
  padding:.4rem 1rem;background:var(--white);
}
.services-accred--highlight{
  color:#0a1628;border-color:#c9a84c;background:rgba(201,168,76,.07);
}
.section--dark .services-accred,.section--navy .services-accred{
  background:rgba(255,255,255,.05);border-color:rgba(255,255,255,.15);color:rgba(255,255,255,.65);
}

/* ═══════════════════════════════════════════
   HEATING FEATURE — Fireplace Showcase
═══════════════════════════════════════════ */
.fire-feature{
  position:relative;min-height:75vh;display:flex;align-items:center;overflow:hidden;
}
.fire-feature__bg{
  position:absolute;inset:0;background-size:cover;background-position:center;
  transform:scale(1.04);transition:transform 8s ease-out;
}
.fire-feature:hover .fire-feature__bg{transform:scale(1);}
.fire-feature__veil{
  position:absolute;inset:0;
  background:linear-gradient(105deg,rgba(8,15,35,.9) 0%,rgba(8,15,35,.65) 55%,rgba(8,15,35,.15) 100%);
}
.fire-feature__body{
  position:relative;z-index:2;padding:6rem 2rem;
}
.fire-feature__eyebrow{
  display:flex;align-items:center;gap:.5rem;
  font-size:.72rem;font-weight:700;letter-spacing:.2em;text-transform:uppercase;
  color:#c9a84c;margin:0 0 1.25rem;
}
.fire-feature__title{
  font-family:var(--font-main);font-size:clamp(2.75rem,5.5vw,5rem);
  font-weight:900;line-height:1.0;color:#fff;margin:0 0 1.5rem;letter-spacing:-.03em;
}
.fire-feature__title em{color:#c9a84c;font-style:normal;}
.fire-feature__text{
  font-size:1.05rem;line-height:1.75;color:rgba(255,255,255,.72);
  max-width:520px;margin:0 0 2rem;
}
.fire-feature__pills{
  display:flex;flex-wrap:wrap;gap:.5rem;margin-bottom:2.25rem;
}
.fire-feature__pills span{
  font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(255,255,255,.75);border:1px solid rgba(255,255,255,.22);
  border-radius:2rem;padding:.35rem 1rem;
  transition:background .2s,border-color .2s;
}
.fire-feature__pills span:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.4);}
@media(max-width:768px){
  .fire-feature{min-height:60vh;}
  .fire-feature__body{padding:5rem 1.5rem;}
  .fire-feature__veil{background:linear-gradient(180deg,rgba(8,15,35,.75) 0%,rgba(8,15,35,.85) 100%);}
}
