/* ========================================
   PARAHK INTERNATIONAL GEM TESTING LABORATORY
   Main Stylesheet
   ======================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --off-white: #F9F7F3;
  --paper: #FFFFFF;
  --ink: #211C17;
  --soft-ink: #5B5348;
  --diamond-blue: #1CA7E8;
  --logo-orange: #E64A19;
  --champagne: #C9A661;
  --s1: #4B2E83;
  --s2: #6E7FC7;
  --s3: #2F5FE0;
  --s4: #1E9D53;
  --s5: #F6D515;
  --s6: #F2941A;
  --s7: #D8202B;
  --spectrum: linear-gradient(90deg,
    var(--s1) 0%, var(--s1) 14.28%,
    var(--s2) 14.28%, var(--s2) 28.56%,
    var(--s3) 28.56%, var(--s3) 42.84%,
    var(--s4) 42.84%, var(--s4) 57.12%,
    var(--s5) 57.12%, var(--s5) 71.4%,
    var(--s6) 71.4%, var(--s6) 85.68%,
    var(--s7) 85.68%, var(--s7) 100%);
  --font-heading: 'Oswald', 'Helvetica Neue', sans-serif;
  --font-eyebrow: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Source Sans 3', 'Open Sans', 'Helvetica Neue', sans-serif;
  --shadow-sm: 0 2px 8px rgba(33,28,23,0.06);
  --shadow-md: 0 8px 30px rgba(33,28,23,0.1);
  --shadow-lg: 0 16px 50px rgba(33,28,23,0.14);
  --radius: 6px;
  --transition: 250ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--off-white);
  line-height: 1.6;
  font-size: 14px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }

/* ===== NEWS / RESEARCH / CONTENT IMAGES ===== */
.content-img,
.news-img,
.research-img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }
*, *::before, *::after { overflow-wrap: break-word; word-break: break-word; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 12px;
  color: var(--champagne);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 4px;
  background: var(--spectrum);
  margin: 12px auto 0;
  border-radius: 2px;
}
.section-subtitle {
  color: var(--soft-ink);
  font-size: 14px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  min-height: 44px;
  white-space: nowrap;
}
.btn-primary {
  background: var(--logo-orange);
  color: #fff;
  border: 2px solid var(--logo-orange);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: #c43d14;
  border-color: #c43d14;
  box-shadow: 0 6px 24px rgba(230,74,25,0.35);
  transform: translateY(-2px);
}
/* Verify Certificate button — transparent, thin orange border */
.verify-cert-btn {
  background: transparent !important;
  border: 0.5px solid #FB5415 !important;
  color: #FB5415 !important;
}
.verify-cert-btn:hover,
.verify-cert-btn:focus-visible {
  background: #FB5415 !important;
  color: #fff !important;
}
.btn-outline {
  background: transparent;
  color: var(--paper);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 3px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spectrum bar */
.spectrum-bar {
  height: 8px;
  width: 100%;
  background: var(--spectrum);
}

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249,247,243,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.35s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(33,28,23,0.12);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 7px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  gap: 6px;
  margin-left: -25px;
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
}
.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FB5415;
  white-space: nowrap;
  line-height: 1;
  padding-bottom: 2px;
  transform: translateY(0px);
}


/* Desktop Nav */
.main-nav { display: flex; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #4b4b4b;
  transition: color 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: var(--logo-orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active {
  color: var(--logo-orange);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}
.nav-link svg { transition: transform var(--transition); }
.nav-link[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.nav-cta-btn {
  border: 1.5px solid var(--logo-orange) !important;
  border-radius: var(--radius);
  color: var(--logo-orange) !important;
  font-weight: 500;
  transition: all 0.35s ease !important;
}
.nav-cta-btn::after {
  display: none !important;
}
.nav-cta-btn:hover {
  background: var(--logo-orange) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(230,74,25,0.25);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 200ms ease;
  border-top: 5px solid transparent;
  background-image: linear-gradient(var(--paper), var(--paper)),
    var(--spectrum);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.3px;
  transition: all var(--transition);
  text-transform: none;
}
.dropdown li a:hover {
  background: rgba(28,167,232,0.06);
  color: var(--logo-orange);
  padding-left: 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  z-index: 1001;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 300ms ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--paper);
  z-index: 999;
  padding: 80px 24px 32px;
  overflow-y: auto;
  transition: right 350ms cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.mobile-nav-list { display: flex; flex-direction: column; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #4b4b4b;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  text-align: left;
}
.mobile-nav-link:hover, .mobile-nav-link:focus {
  color: var(--logo-orange);
}
.mobile-cta-btn {
  color: var(--logo-orange) !important;
  border: 1.5px solid var(--logo-orange);
  border-radius: var(--radius);
  padding: 12px 20px !important;
  margin-top: 8px;
  justify-content: center;
}
.mobile-dropdown {
  display: none;
  padding-left: 16px;
}
.mobile-dropdown.active { display: block; }
.mobile-dropdown li a {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  color: var(--soft-ink);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.mobile-dropdown li a:hover { color: var(--logo-orange); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  height: 690px;
  overflow: hidden;
  background: var(--ink);
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hero-slide-img {
  width: 100%;
  height: 690px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-slide.active .hero-slide-img {
  transform: scale(1.05);
  transition: transform 7s ease-out;
}
.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.55) 0%,
    rgba(255,255,255,0.30) 40%,
    rgba(0,0,0,0.05) 100%
  );
}
.hero-content {
  position: absolute;
  z-index: 2;
  padding: 0 24px;
  max-width: 90%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hero-content h1,
.hero-headline {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 6vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-shadow: 1px 1px 0 rgba(255,255,255,0.3);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}
.hero-slide.active .hero-headline {
  opacity: 1;
  transform: translateY(0);
}
.hero-eyebrow {
  font-family: var(--font-eyebrow);
  font-weight: 600;
  font-size: 12px;
  color: var(--champagne);
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.1s;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.hero-eyebrow::before {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--champagne);
  border-radius: 2px;
}
.hero-slide.active .hero-eyebrow {
  opacity: 1;
  transform: translateY(0);
}
.hero-desc {
  color: rgba(0,0,0,0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.35s;
}
.hero-slide.active .hero-desc {
  opacity: 1;
  transform: translateY(0);
}
.hero-btns .btn-primary {
  background: transparent;
  color: #000;
  border: 2px solid rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.35s ease;
}
.hero-btns .btn-primary:hover,
.hero-btns .btn-primary:focus-visible {
  background: #000;
  border-color: #000;
  color: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.5s;
}
.hero-slide.active .hero-btns {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
  border: none;
  cursor: pointer;
  border-radius: 50%;
}
.hero-arrow svg {
  background: rgba(0,0,0,0.7);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s ease;
}
.hero-arrow:hover,
.hero-arrow:focus-visible {
  transform: translateY(-50%) scale(1.1);
  background: rgba(255,255,255,0.25);
}
.hero-arrow:hover svg {
  background: var(--logo-orange);
  box-shadow: 0 4px 16px rgba(230,74,25,0.4);
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 5;
}
.hero-dot {
  width: 40px;
  height: 36px;
  border-radius: 2px;
  background: transparent;
  transition: all var(--transition);
  overflow: visible;
  position: relative;
  padding: 0;
  border: none;
  cursor: pointer;
}
.hero-dot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  transition: background var(--transition);
}
.hero-dot::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 6px;
  width: 0;
  background: var(--champagne);
  border-radius: 3px;
  transition: width 0.1s linear;
  z-index: 1;
}
.hero-dot.active::before {
  background: rgba(255,255,255,0.35);
}
.hero-dot.active::after {
  width: 100%;
}
.hero-dot:hover::before {
  background: rgba(255,255,255,0.55);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: clamp(60px, 10vw, 120px) 0 clamp(10px, 3vw, 70px) 0;
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(180deg, rgba(28,167,232,0.03) 0%, transparent 100%);
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/11;
}
.about-image-frame::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--champagne);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.5;
  transition: all 0.4s ease;
}
.about-image-frame:hover::before {
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  opacity: 0.8;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 6/5;
  border-radius: var(--radius);
}
.about-text-col h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-text-col p {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.counter-item {
  text-align: center;
  padding: 16px 8px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.counter-item:hover {
  background: rgba(28,167,232,0.04);
}
.counter-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--logo-orange);
  display: block;
  line-height: 1;
}
.counter-label {
  font-size: 11px;
  color: var(--soft-ink);
  margin-top: 6px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--paper);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,97,0.3), transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  border-top: 4px solid transparent;
  background-image: linear-gradient(var(--off-white), var(--off-white)),
    var(--spectrum);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--spectrum);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  margin-bottom: 24px;
  transition: transform 0.4s ease;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,167,232,0.06);
  border-radius: 12px;
}
.service-card:hover .service-icon {
  transform: scale(1.1) rotate(3deg);
  background: rgba(28,167,232,0.1);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
  transition: color var(--transition);
}
.service-card:hover h3 {
  color: var(--logo-orange);
}
.service-card p {
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.card-link {
  font-weight: 600;
  font-size: 12px;
  color: var(--logo-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}
.card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--logo-orange);
  transition: width 0.35s ease;
}
.card-link:hover {
  color: var(--diamond-blue);
  gap: 10px;
}
.card-link:hover::after {
  width: 100%;
  background: var(--diamond-blue);
}

/* ========================================
   PROCESS
   ======================================== */
.process {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
  background: linear-gradient(180deg, var(--off-white) 0%, var(--paper) 50%, var(--off-white) 100%);
}
.process-timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.process-line {
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 5px;
  background: var(--spectrum);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(28,167,232,0.15);
}
.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 80px;
}
.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--off-white);
  border: 3px solid var(--diamond-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--diamond-blue);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  box-shadow: 0 4px 12px rgba(28,167,232,0.12);
}
.process-step:hover .step-number {
  background: var(--diamond-blue);
  color: #fff;
  transform: translateX(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(28,167,232,0.3);
}
.step-content {
  background: rgba(255,255,255,0.6);
  padding: 20px 16px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}
.process-step:hover .step-content {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}
.step-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.step-content p {
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.65;
  max-width: 200px;
  margin: 0 auto;
}

/* ========================================
   NEWS
   ======================================== */
.news {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--paper);
}
.news-slider-wrapper {
  position: relative;
}
.news-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--off-white);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.news-card:hover .news-card-img img {
  transform: scale(1.08);
}
.news-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--logo-orange);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(230,74,25,0.25);
}
.news-card-body {
  padding: 24px;
}
.news-card-body h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 10px;
  transition: color var(--transition);
}
.news-card:hover .news-card-body h3 {
  color: var(--logo-orange);
}
.news-card-body p {
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.news-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.news-prev, .news-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: all var(--transition);
}
.news-prev:hover, .news-next:hover {
  background: var(--logo-orange);
  border-color: var(--logo-orange);
  color: #fff;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: clamp(50px, 8vw, 90px) 0;
  background: #F5F3EF;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(28,167,232,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(230,74,25,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.google-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12), 0 2px 6px rgba(0,0,0,0.08);
}
.google-g {
  flex-shrink: 0;
}
.google-rating-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.google-rating-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28px;
  color: #202124;
  line-height: 1;
}
.google-stars-small {
  display: flex;
  gap: 1px;
}
.google-stars-small .star {
  font-size: 16px;
  color: #dadce0;
}
.google-stars-small .star.filled {
  color: #fbbc04;
}
.google-stars-small .star.half {
  color: #fbbc04;
  position: relative;
}
.google-review-count {
  font-size: 13px;
  color: #70757a;
}
.testimonial-slider-wrapper {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.testimonial-slider {
  position: relative;
  min-height: 220px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 72px;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, var(--diamond-blue), var(--logo-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}
.testimonial-quote {
  margin-bottom: 20px;
  position: relative;
}
.testimonial-quote p {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.7;
  color: #3c4043;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--diamond-blue), #2196f3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(28,167,232,0.35);
  transition: transform 0.3s ease;
}
.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.08);
}
.testimonial-author-info {
  flex: 1;
  min-width: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #202124;
}
.testimonial-author span {
  font-size: 12px;
  color: #70757a;
}
.testimonial-stars {
  color: #fbbc04;
  font-size: 18px;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}
.test-prev, .test-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5f6368;
  transition: all var(--transition);
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.test-prev:hover, .test-next:hover {
  background: var(--diamond-blue);
  border-color: var(--diamond-blue);
  color: #fff;
  box-shadow: 0 4px 12px rgba(28,167,232,0.3);
  transform: scale(1.05);
}
.testimonial-dots {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
  justify-content: center;
}
.test-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  transition: all var(--transition);
  border: none;
  padding: 4px;
  cursor: pointer;
}
.test-dot.active {
  background: var(--diamond-blue);
  transform: scale(1.2);
  box-shadow: 0 0 2px rgba(28,167,232,0.4);
  padding: 4px;
}
.test-dot:hover {
  background: rgba(28,167,232,0.5);
}

/* ========================================
   TEAM
   ======================================== */
.team {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card { text-align: center; }
.team-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 3/4;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33,28,23,0.85), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-overlay {
  opacity: 1;
}
.team-overlay p {
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  line-height: 1.6;
}
.team-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.team-card > span {
  font-size: 12px;
  color: var(--logo-orange);
  display: block;
  margin-bottom: 4px;
}
.team-card > small {
  font-size: 11px;
  color: var(--soft-ink);
}

/* ========================================
   ACCREDITATIONS
   ======================================== */
.accreditations {
  padding: clamp(50px, 8vw, 80px) 0;
}
.accreditations-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
}
.accreditation-item {
  text-align: center;
}
.accreditation-item img {
  height: 60px;
  width: auto;
  margin: 0 auto 8px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all var(--transition);
}
.accreditation-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.accreditation-item span {
  font-size: 11px;
  color: var(--soft-ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.accreditation-item--featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.accreditation-item--featured img {
  height: 60px;
  width: auto;
  margin: 0 auto 10px;
  filter: grayscale(40%) sepia(20%);
  opacity: 0.7;
  transition: all var(--transition);
}
.accreditation-item--featured:hover img {
  filter: grayscale(0%) sepia(0%);
  opacity: 1;
  transform: scale(1.08);
}
.accreditation-item__title {
  font-size: 18px;
  font-weight: 700;
  color: #D4AF37;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
}
.accreditation-item__subtitle {
  font-size: 11px;
  color: var(--soft-ink);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--paper);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after {
  opacity: 1;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  border: 3px solid rgba(255,255,255,0);
  z-index: 1;
  transition: border-color 0.4s ease;
}
.gallery-item:hover::before {
  border-color: rgba(255,255,255,0.3);
}
.gallery-cta {
  text-align: center;
  margin-top: 36px;
}
.gallery-cta .btn-outline {
  color: var(--ink);
  border-color: var(--ink);
}
.gallery-cta .btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.lightbox-close {
  top: 20px;
  right: 20px;
}
.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: clamp(60px, 10vw, 120px) 0;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
  position: relative;
}
.faq-toggle::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: var(--logo-orange);
  border-radius: 2px;
  transition: height 0.3s ease;
}
.faq-toggle:hover::before {
  height: 24px;
}
.faq-toggle:hover {
  color: var(--logo-orange);
  padding-left: 8px;
}
.faq-toggle:focus-visible {
  outline: 2px solid var(--diamond-blue);
  outline-offset: 4px;
  border-radius: 2px;
}
.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--logo-orange);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 600px;
}
.faq-answer p {
  padding-bottom: 20px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.7;
}
.faq-answer a {
  color: var(--diamond-blue);
  text-decoration: underline;
  text-decoration-color: rgba(28,167,232,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.faq-answer a:hover {
  text-decoration-color: var(--diamond-blue);
}

/* ========================================
   CONTACT / MAP
   ======================================== */
.contact {
  padding: clamp(60px, 10vw, 120px) 0;
  background: var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.map-container {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  background: #e8e8e8;
  min-height: 400px;
  box-shadow: var(--shadow-md);
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  background: linear-gradient(135deg, #f0ede6, #e8e4db);
  z-index: 2;
  transition: all var(--transition);
}
.map-placeholder:hover {
  background: linear-gradient(135deg, #e8e4db, #ddd8cc);
}
.map-placeholder p {
  font-size: 13px;
  color: var(--soft-ink);
}
.map-placeholder.hidden {
  opacity: 0;
  visibility: hidden;
}
.map-iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Contact Form */
.contact-form {
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
  transition: color var(--transition);
}
.form-group label span {
  color: var(--logo-orange);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--ink);
  font-size: 14px;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235B5348' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--diamond-blue);
  box-shadow: 0 0 0 4px rgba(28,167,232,0.12);
  background: var(--paper);
}
.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(0,0,0,0.2);
}
.form-group input.error,
.form-group textarea.error {
  border-color: var(--logo-orange);
}
.form-error {
  font-size: 12px;
  color: var(--logo-orange);
  display: block;
  min-height: 0;
  transition: all var(--transition);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: rgba(30,157,83,0.08);
  border-radius: var(--radius);
  color: var(--s4);
  font-size: 13px;
  margin-top: 16px;
}
.form-success[hidden] {
  display: none;
}

/* Contact Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.contact-detail-item svg {
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-detail-item strong {
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
}
.contact-detail-item p, .contact-detail-item span {
  font-size: 13px;
  color: var(--soft-ink);
  line-height: 1.6;
}
.contact-detail-item a {
  color: var(--soft-ink);
  transition: color var(--transition);
}
.contact-detail-item a:hover {
  color: var(--logo-orange);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: clamp(50px, 8vw, 80px) 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: var(--paper);
  border-radius: 12px;
  padding: 48px 56px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.newsletter-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--spectrum);
}
.newsletter-text h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 8px;
}
.newsletter-text p {
  color: var(--soft-ink);
  font-size: 14px;
}
.newsletter-input-group {
  display: flex;
  gap: 12px;
  min-width: 400px;
}
.newsletter-input-group input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: var(--radius);
  background: var(--off-white);
  font-size: 14px;
  transition: all 0.3s ease;
}
.newsletter-input-group input:focus {
  outline: none;
  border-color: var(--diamond-blue);
  box-shadow: 0 0 0 4px rgba(28,167,232,0.12);
}
.newsletter-input-group input:hover {
  border-color: rgba(0,0,0,0.2);
}
.nl-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--s4);
  margin-top: 10px;
}
.nl-success[hidden] {
  display: none;
}

/* ========================================
   CTA BAND
   ======================================== */
.cta-band {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(230,74,25,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .spectrum-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.cta-content {
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(20px, 3vw, 32px);
  color: var(--paper);
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #1a1612;
  color: rgba(255,255,255,0.7);
  padding-top: 64px;
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--spectrum);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  margin-bottom: 16px;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}
.footer-logo .logo-word {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 40;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #FB5415;
  text-transform: none;
  margin: 0;
  margin-right: 6px;
  display: inline;
}
.footer-logo .logo-sub {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 40;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #FB5415;
  text-transform: uppercase;
  margin: 0;
  display: inline;
}
.footer-about > p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.footer-social {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.35s ease;
}
.social-link:hover, .social-link:focus-visible {
  background: var(--spectrum);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(230,74,25,0.2);
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--paper);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--spectrum);
  border-radius: 2px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-col ul li a:hover {
  color: var(--champagne);
  padding-left: 6px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(255,255,255,0.35);
}
.footer-contact li span,
.footer-contact li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-contact li a:hover {
  color: var(--champagne);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-developer {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-developer a {
  color: var(--champagne);
  font-weight: 600;
  transition: color var(--transition);
  position: relative;
}
.footer-developer a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--champagne);
  transition: width var(--transition);
}
.footer-developer a:hover {
  color: #fff;
}
.footer-developer a:hover::after {
  width: 100%;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--logo-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s ease;
  box-shadow: 0 4px 16px rgba(230,74,25,0.3);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #c43d14;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(230,74,25,0.4);
}

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }

  /* Header */
  .header-inner { gap: 16px; padding: 7px 16px; }
  .nav-logo { margin-left: 10px; }

  /* About */
  .about-grid { gap: 40px; }
  .about-text-col h2 { font-size: clamp(22px, 4vw, 30px); }

  /* Services */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Process */
  .process-timeline { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .process-line { display: none; }
  .process-step { flex: 0 0 calc(50% - 16px); padding-top: 0; }
  .step-number { position: relative; left: auto; transform: none; margin: 0 auto 16px; }

  /* News */
  .news-slider { grid-template-columns: repeat(3, 1fr); }

  /* Testimonials */
  .testimonial-slider { min-height: 260px; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Accreditations */
  .accreditations-grid { gap: 32px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .newsletter-input-group { min-width: auto; width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-logo .logo-word { font-size: 22px; }
  .footer-logo .logo-sub { font-size: 14px; }

  /* Section headers */
  .section-header h2 { font-size: clamp(28px, 5vw, 48px); }
  .section-header { margin-bottom: 44px; }
}

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  .container { padding: 0 16px; }

  /* ---- HEADER / NAV ---- */
  .header-inner { padding: 8px 12px; gap: 12px; }
  .nav-logo { margin-left: 10px; }
  .nav-logo img { height: 46px; width: auto; }
  .nav-logo-text { font-size: 12px; white-space: normal; line-height: 1.1; }
  .nav-logo { gap: 4px; }
  .hamburger { width: 40px; height: 40px; }

  /* Mobile menu full width */
  .mobile-menu { width: 100%; max-width: 100vw; padding: 70px 24px 32px; }
  .mobile-nav-link { font-size: 15px; padding: 16px 0; }
  .mobile-dropdown li a { padding: 14px 0; font-size: 14px; }

  /* ---- HERO ---- */
  .hero-content { padding: 0 16px; max-width: 90%; }
  .hero-headline { font-size: clamp(26px, 8vw, 40px); line-height: 1.08; margin-bottom: 14px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 10px; }
  .hero-desc { font-size: 13px; margin-bottom: 24px; max-width: 100%; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn { padding: 11px 24px; font-size: 13px; min-height: 42px; }
  .hero-arrow { width: 40px; height: 40px; }
  .hero-arrow svg { width: 30px; height: 30px; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  .hero-dots { bottom: 16px; gap: 6px; }
  .hero-dot { width: 30px; height: 30px; }

  /* ---- SECTION HEADERS ---- */
  .section-header h2 { font-size: clamp(22px, 6vw, 36px); }
  .section-header { margin-bottom: 36px; }
  .section-subtitle { font-size: 13px; }
  .eyebrow { font-size: 11px; letter-spacing: 1.2px; }

  /* ---- ABOUT ---- */
  .about { padding: clamp(48px, 8vw, 80px) 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image-frame::before { top: -8px; left: -8px; right: 8px; bottom: 8px; }
  .about-img { aspect-ratio: 16/10; border-radius: var(--radius); }
  .about-text-col h2 { font-size: clamp(20px, 5vw, 26px); margin-bottom: 14px; }
  .about-text-col p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }
  .about-counters { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 28px; padding-top: 24px; }
  .counter-number { font-size: clamp(22px, 5vw, 30px); }
  .counter-label { font-size: 10px; letter-spacing: 0.3px; }
  .counter-item { padding: 12px 4px; }

  /* ---- SERVICES ---- */
  .services { padding: clamp(48px, 8vw, 80px) 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 20px; }
  .service-icon { width: 52px; height: 52px; border-radius: 10px; margin-bottom: 18px; }
  .service-icon svg { width: 36px; height: 36px; }
  .service-card h3 { font-size: 16px; margin-bottom: 10px; }
  .service-card p { font-size: 13px; line-height: 1.65; margin-bottom: 16px; }

  /* ---- PROCESS ---- */
  .process { padding: clamp(48px, 8vw, 80px) 0; }
  .process-timeline { flex-direction: column; gap: 0; }
  .process-step {
    flex: none;
    width: 100%;
    text-align: left;
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .process-step:last-child { border-bottom: none; }
  .step-number {
    position: relative;
    left: auto;
    transform: none;
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 15px;
    margin: 0;
  }
  .step-content {
    text-align: left;
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .step-content h3 { font-size: 14px; margin-bottom: 6px; }
  .step-content p { max-width: none; margin: 0; font-size: 12.5px; }

  /* ---- NEWS ---- */
  .news { padding: clamp(48px, 8vw, 80px) 0; }
  .news-card-img { aspect-ratio: 4 / 3; }
  .news-slider {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .news-card-body { padding: 18px 16px; }
  .news-card-body h3 { font-size: 14px; }
  .news-card-body p { font-size: 12.5px; }

  /* ---- TESTIMONIALS ---- */
  .testimonials { padding: clamp(40px, 7vw, 72px) 0; }
  .testimonial-slider { min-height: 280px; }
  .testimonial-card { padding: 24px 18px; border-radius: 14px; }
  .testimonial-card::before { font-size: 52px; top: 8px; left: 12px; }
  .testimonial-quote { margin-bottom: 16px; }
  .testimonial-quote p { font-size: 14px; line-height: 1.65; }
  .testimonial-author { gap: 10px; padding-top: 14px; flex-wrap: wrap; }
  .testimonial-author strong { font-size: 13px; }
  .testimonial-author span { font-size: 11px; }
  .testimonial-avatar { width: 38px; height: 38px; font-size: 12px; }
  .testimonial-stars { font-size: 14px; letter-spacing: 1px; }
  .testimonial-controls { gap: 8px; margin-top: 24px; }
  .test-prev, .test-next { width: 38px; height: 38px; }
  .testimonial-dots { gap: 4px; }
  .test-dot { width: 3px; height: 3px; padding: 4px; }

  /* Google badge */
  .google-rating-badge { padding: 10px 18px; gap: 10px; flex-wrap: wrap; justify-content: center; }
  .google-rating-num { font-size: 22px; }
  .google-g { width: 24px; height: 24px; }
  .google-stars-small .star { font-size: 13px; }
  .google-review-count { font-size: 12px; }
  .google-rating-info { gap: 8px; }

  /* ---- ACCREDITATIONS ---- */
  .accreditations { padding: clamp(40px, 7vw, 64px) 0; }
  .accreditations-grid { gap: 24px 20px; }
  .accreditation-item img { height: 44px; max-width: 110px; }
  .accreditation-item span { font-size: 9px; }
  .accreditation-item__title { font-size: 14px; }

  /* ---- GALLERY ---- */
  .gallery { padding: clamp(48px, 8vw, 80px) 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item { aspect-ratio: 1/1; border-radius: 6px; }

  /* ---- FAQ ---- */
  .faq { padding: clamp(48px, 8vw, 80px) 0; }
  .faq-list { padding: 0 8px; }
  .faq-toggle { padding: 18px 0; font-size: 14px; gap: 12px; }
  .faq-toggle::before { left: -8px; }
  .faq-toggle:hover { padding-left: 4px; }
  .faq-answer p { font-size: 13px; line-height: 1.65; padding-bottom: 16px; }

  /* ---- CONTACT ---- */
  .contact { padding: clamp(48px, 8vw, 80px) 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid > *:first-child { order: 1; }
  .contact-grid > *:last-child { order: 0; }
  .map-container { aspect-ratio: 16/10; min-height: 220px; border-radius: 6px; }
  .contact-form { margin-bottom: 24px; }
  .form-group { margin-bottom: 16px; }
  .form-group label { font-size: 12px; margin-bottom: 5px; }
  .form-group input, .form-group select, .form-group textarea {
    padding: 11px 12px;
    font-size: 14px;
    border-radius: var(--radius);
  }
  .form-group textarea { min-height: 90px; }

  /* ---- NEWSLETTER ---- */
  .newsletter { padding: clamp(40px, 7vw, 64px) 0; }
  .newsletter-inner { padding: 28px 16px; border-radius: 10px; gap: 20px; }
  .newsletter-text h3 { font-size: 18px; }
  .newsletter-text p { font-size: 13px; }
  .newsletter-input-group { flex-direction: column; width: 100%; gap: 10px; }
  .newsletter-input-group input { padding: 11px 14px; font-size: 14px; width: 100%; }
  .newsletter-input-group .btn { width: 100%; min-height: 44px; }

  /* ---- CTA BAND ---- */
  .cta-content { padding: clamp(48px, 7vw, 80px) 0; }
  .cta-content h2 { font-size: clamp(18px, 5vw, 28px); margin-bottom: 12px; }
  .cta-content p { font-size: 13px; margin-bottom: 24px; }

  /* ---- FOOTER ---- */
  .site-footer { padding-top: 48px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-logo .logo-word { font-size: 22px; }
  .footer-logo .logo-sub { font-size: 14px; }
  .footer-about > p { font-size: 12.5px; }
  .footer-social { gap: 10px; }
  .social-link { width: 40px; height: 40px; }
  .social-link svg { width: 18px; height: 18px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 14px; padding-bottom: 10px; }
  .footer-col ul li { margin-bottom: 8px; }
  .footer-col ul li a { font-size: 12.5px; }
  .footer-contact li { gap: 8px; }
  .footer-contact li svg { width: 14px; height: 14px; margin-top: 2px; }
  .footer-contact li span, .footer-contact li a { font-size: 12px; line-height: 1.5; }
  .footer-bottom { padding: 16px 0; gap: 8px; }
  .footer-bottom p { font-size: 11px; }
  .footer-developer { font-size: 11px; }
  .footer-developer a { font-size: 11px; }

  /* ---- BACK TO TOP ---- */
  .back-to-top { bottom: 14px; right: 14px; width: 42px; height: 42px; }
  .back-to-top svg { width: 18px; height: 18px; }

  /* ---- LIGHTBOX ---- */
  .lightbox-content { max-width: 95vw; max-height: 80vh; }
  .lightbox-content img { max-height: 80vh; }
  .lightbox-close { top: 12px; right: 12px; width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

  /* ---- IMAGES: ensure nothing overflows ---- */
  img { max-width: 100%; height: auto; }
  .about-img, .team-photo img, .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .accreditation-item img { max-width: 100%; height: auto; }
}

/* ========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ======================================== */
@media (max-width: 480px) {
  .container { padding: 0 12px; }

  /* ---- HEADER ---- */
  .header-inner { padding: 6px 10px; gap: 8px; }
  .nav-logo img { height: 38px; width: auto; }
  .nav-logo-text { font-size: 10px; letter-spacing: 0.3px; }
  .nav-logo { gap: 3px; align-items: flex-end; }
  .hamburger { width: 36px; height: 36px; padding: 8px; }
  .hamburger-line { width: 20px; height: 2px; }

  /* Mobile menu */
  .mobile-menu { padding: 60px 16px 24px; }
  .mobile-nav-link { font-size: 13px; padding: 14px 0; letter-spacing: 0.05em; }
  .mobile-dropdown li a { padding: 12px 0; font-size: 12px; }

  /* ---- HERO ---- */
  .hero-content { padding: 0 12px; max-width: 90%; }
  .hero-headline { font-size: clamp(24px, 9vw, 36px); line-height: 1.1; margin-bottom: 10px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 1px; margin-bottom: 8px; }
  .hero-eyebrow::before { width: 30px; height: 2px; bottom: -3px; }
  .hero-desc { font-size: 12px; margin-bottom: 20px; line-height: 1.6; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; padding: 12px 20px; font-size: 12px; min-height: 44px; }
  .hero-arrow { width: 36px; height: 36px; }
  .hero-arrow svg { width: 26px; height: 26px; }
  .hero-prev { left: 4px; }
  .hero-next { right: 4px; }
  .hero-dots { bottom: 12px; gap: 5px; }
  .hero-dot { width: 26px; height: 26px; }

  /* ---- SECTION HEADERS ---- */
  .section-header h2 { font-size: clamp(20px, 7vw, 30px); }
  .section-header { margin-bottom: 28px; }
  .section-header h2::after { width: 40px; height: 3px; margin-top: 8px; }
  .section-subtitle { font-size: 12px; }
  .eyebrow { font-size: 10px; margin-bottom: 6px; }

  /* ---- ABOUT ---- */
  .about { padding: clamp(36px, 7vw, 60px) 0; }
  .about-grid { gap: 24px; }
  .about-image-frame { border-radius: 6px; }
  .about-image-frame::before { top: -6px; left: -6px; right: 6px; bottom: 6px; border-width: 1.5px; }
  .about-img { aspect-ratio: 4/3; border-radius: 6px; }
  .about-text-col h2 { font-size: clamp(18px, 5vw, 24px); margin-bottom: 10px; }
  .about-text-col p { font-size: 12.5px; line-height: 1.65; margin-bottom: 10px; }
  .about-counters { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 20px; padding-top: 18px; }
  .counter-item { padding: 10px 2px; }
  .counter-number { font-size: clamp(20px, 6vw, 28px); }
  .counter-label { font-size: 9px; letter-spacing: 0.3px; margin-top: 4px; }

  /* ---- SERVICES ---- */
  .services { padding: clamp(36px, 7vw, 60px) 0; }
  .services-grid { gap: 12px; }
  .service-card { padding: 22px 16px; border-radius: 6px; }
  .service-icon { width: 46px; height: 46px; border-radius: 8px; margin-bottom: 14px; }
  .service-icon svg { width: 30px; height: 30px; }
  .service-card h3 { font-size: 15px; margin-bottom: 8px; }
  .service-card p { font-size: 12.5px; line-height: 1.6; margin-bottom: 14px; }
  .card-link { font-size: 11px; letter-spacing: 0.8px; }

  /* ---- PROCESS ---- */
  .process { padding: clamp(36px, 7vw, 60px) 0; }
  .process-step { gap: 12px; padding: 10px 0; }
  .step-number { width: 36px; height: 36px; min-width: 36px; font-size: 13px; border-width: 2px; }
  .step-content h3 { font-size: 13px; margin-bottom: 4px; }
  .step-content p { font-size: 11.5px; line-height: 1.55; }

  /* ---- NEWS ---- */
  .news { padding: clamp(36px, 7vw, 60px) 0; }
  .news-slider { gap: 12px; }
  .news-card-body { padding: 14px 12px; }
  .news-card-body h3 { font-size: 13px; margin-bottom: 8px; }
  .news-card-body p { font-size: 12px; line-height: 1.55; margin-bottom: 12px; }
  .news-tag { font-size: 9px; padding: 4px 10px; top: 10px; left: 10px; }

  /* ---- TESTIMONIALS ---- */
  .testimonials { padding: clamp(32px, 6vw, 56px) 0; }
  .testimonial-slider { min-height: 300px; }
  .testimonial-card { padding: 20px 14px; border-radius: 12px; }
  .testimonial-card::before { font-size: 44px; top: 6px; left: 10px; }
  .testimonial-quote { margin-bottom: 14px; }
  .testimonial-quote p { font-size: 13px; line-height: 1.6; }
  .testimonial-author { gap: 8px; padding-top: 12px; flex-wrap: wrap; }
  .testimonial-author-info { min-width: 0; }
  .testimonial-author strong { font-size: 12px; }
  .testimonial-author span { font-size: 10px; }
  .testimonial-avatar { width: 34px; height: 34px; font-size: 11px; border-radius: 50%; }
  .testimonial-stars { font-size: 13px; letter-spacing: 1px; }
  .testimonial-controls { gap: 6px; margin-top: 20px; }
  .test-prev, .test-next { width: 34px; height: 34px; border-width: 1.5px; }
  .test-prev svg, .test-next svg { width: 14px; height: 14px; }
  .testimonial-dots { gap: 3px; }
  .test-dot { width: 2px; height: 2px; padding: 3px; }

  /* Google badge */
  .google-rating-badge { padding: 8px 14px; gap: 8px; border-radius: 30px; }
  .google-rating-num { font-size: 18px; }
  .google-g { width: 20px; height: 20px; }
  .google-stars-small .star { font-size: 12px; }
  .google-review-count { font-size: 11px; }

  /* ---- ACCREDITATIONS ---- */
  .accreditations { padding: clamp(32px, 6vw, 52px) 0; }
  .accreditations-grid { gap: 16px 12px; }
  .accreditation-item img { height: 36px; max-width: 90px; }
  .accreditation-item span { font-size: 8px; letter-spacing: 0.3px; }
  .accreditation-item__title { font-size: 12px; }

  /* ---- GALLERY ---- */
  .gallery { padding: clamp(36px, 7vw, 60px) 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { aspect-ratio: 1/1; border-radius: 5px; }

  /* ---- FAQ ---- */
  .faq { padding: clamp(36px, 7vw, 60px) 0; }
  .faq-list { padding: 0 4px; }
  .faq-toggle { padding: 14px 0; font-size: 13px; gap: 10px; min-height: 42px; }
  .faq-toggle::before { display: none; }
  .faq-chevron { width: 16px; height: 16px; }
  .faq-answer p { font-size: 12px; line-height: 1.6; padding-bottom: 14px; }

  /* ---- CONTACT ---- */
  .contact { padding: clamp(36px, 7vw, 60px) 0; }
  .contact-grid { gap: 20px; }
  .map-container { min-height: 200px; border-radius: 5px; }
  .contact-form { margin-bottom: 16px; }
  .form-group { margin-bottom: 14px; }
  .form-group label { font-size: 11px; margin-bottom: 4px; }
  .form-group input, .form-group select, .form-group textarea { padding: 10px 11px; font-size: 13px; }
  .form-group textarea { min-height: 80px; }
  .btn-submit { min-height: 44px; }

  /* ---- NEWSLETTER ---- */
  .newsletter { padding: clamp(32px, 6vw, 52px) 0; }
  .newsletter-inner { padding: 22px 14px; gap: 16px; border-radius: 8px; }
  .newsletter-text h3 { font-size: 16px; margin-bottom: 6px; }
  .newsletter-text p { font-size: 12px; }
  .newsletter-input-group { gap: 8px; }
  .newsletter-input-group input { padding: 10px 12px; font-size: 13px; }

  /* ---- CTA BAND ---- */
  .cta-content { padding: clamp(40px, 7vw, 64px) 0; }
  .cta-content h2 { font-size: clamp(17px, 5.5vw, 24px); margin-bottom: 10px; }
  .cta-content p { font-size: 12px; margin-bottom: 20px; line-height: 1.6; }
  .cta-content .btn { padding: 11px 22px; font-size: 12px; min-height: 42px; }

  /* ---- FOOTER ---- */
  .site-footer { padding-top: 36px; }
  .footer-grid { gap: 24px; padding-bottom: 20px; }
  .footer-logo { white-space: normal; }
  .footer-logo .logo-word { font-size: 20px; margin-right: 4px; }
  .footer-logo .logo-sub { font-size: 12px; }
  .footer-about > p { font-size: 12px; line-height: 1.6; margin-bottom: 16px; }
  .footer-social { gap: 8px; flex-wrap: wrap; }
  .social-link { width: 36px; height: 36px; border-radius: 5px; }
  .social-link svg { width: 16px; height: 16px; }
  .footer-col { margin-bottom: 4px; }
  .footer-col h4 { font-size: 12px; margin-bottom: 10px; }
  .footer-col ul li { margin-bottom: 6px; }
  .footer-col ul li a { font-size: 12px; }
  .footer-contact li { gap: 6px; margin-bottom: 10px; }
  .footer-contact li svg { width: 12px; height: 12px; }
  .footer-contact li span, .footer-contact li a { font-size: 11px; line-height: 1.4; }
  .footer-bottom { padding: 14px 0; gap: 6px; }
  .footer-bottom p { font-size: 10px; }
  .footer-developer { font-size: 10px; }
  .footer-developer a { font-size: 10px; }

  /* ---- BACK TO TOP ---- */
  .back-to-top { bottom: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; }
  .back-to-top svg { width: 16px; height: 16px; }

  /* ---- LIGHTBOX ---- */
  .lightbox-close { top: 8px; right: 8px; width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.5); }
  .lightbox-prev { left: 6px; width: 36px; height: 36px; }
  .lightbox-next { right: 6px; width: 36px; height: 36px; }
  .lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 18px; height: 18px; }
  .lightbox-content { max-width: 98vw; max-height: 75vh; padding: 0 4px; }
  .lightbox-content img { max-height: 75vh; border-radius: 4px; }

  /* ---- FORM ERROR ---- */
  .form-error { font-size: 11px; }
  .form-success { font-size: 12px; padding: 12px; gap: 8px; }

  /* ---- GLOBAL TWEAKS ---- */
  .btn { padding: 10px 20px; font-size: 12px; min-height: 40px; }
  img { max-width: 100%; height: auto; }

  .about-image-frame { aspect-ratio: 4/3; }
  .about-img,
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .accreditation-item img { max-width: 80px; height: 32px; }
  .accreditation-item__title { font-size: 11px; }
  .gallery-item { aspect-ratio: 1/1; }

  /* ---- HORIZONTAL SCROLL PREVENTION ---- */
  body, html { overflow-x: hidden; max-width: 100vw; }
}

/* ========================================
   PREFERS REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .hero-slide-img {
    transition: none !important;
    transform: none !important;
  }
  .hero-slide.active .hero-slide-img {
    transform: none !important;
  }
  .hero-content > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  html { scroll-behavior: auto; }
}

.resizing .hero-slide-img,
.resizing .hero-slide-bg {
  transition: none !important;
}

/* ========================================
   FOCUS VISIBLE
   ======================================== */
:focus-visible {
  outline: 3px solid var(--diamond-blue);
  outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--diamond-blue);
  outline-offset: 3px;
}

/* ========================================
   SVG IMAGE HANDLING
   ======================================== */
.about-img,
.team-photo img,
.gallery-item img {
  object-fit: cover;
  object-position: center;
}
.accreditation-item img {
  height: auto;
  max-height: 48px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}
/* SVG images in hero get dark background for contrast */
.hero-slide-bg {
  background-color: #1a2332;
}
/* Gallery lightbox SVG support */
.lightbox-content img[src$=".svg"] {
  max-width: 80vw;
  max-height: 80vh;
  background: var(--paper);
  padding: 20px;
  border-radius: 8px;
}
/* Prevent any image from overflowing its parent */
.hero-slide-bg,
.about-image-frame,
.gallery-item,
.news-card-img,
.map-container {
  max-width: 100%;
  overflow: hidden;
}

/* ============================================
   HERO - FINAL MOBILE & TABLET FIX
   Image on top, text below. Keeps position:absolute
   so the existing crossfade carousel still works.
   ============================================ */
@media (max-width: 1024px) {
  .hero-slide-bg {
    top: 0; left: 0; right: 0; bottom: auto;
    height: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-slide-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .hero-content {
    top: auto; bottom: 0; left: 0; right: 0;
    height: 55%;
    width: 100%; max-width: 100%;
    transform: none;
    background: var(--off-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 24px;
  }
  .hero-desc { color: var(--soft-ink); }
  .hero-eyebrow::before { left: 50%; transform: translateX(-50%); }
  .hero-btns { justify-content: center; }
  .hero-arrow { top: 22.5%; }
  .hero-dots { top: calc(45% - 20px); bottom: auto; }
}

@media (max-width: 480px) {
  .hero-slide-bg { height: 42%; }
  .hero-content { height: 58%; padding: 14px 16px; }
  .hero-arrow { top: 21%; }
  .hero-dots { top: calc(42% - 16px); }
}

@media (max-width: 1024px) {
  .hero-slide-bg {
    display: block !important;
    position: relative;
  }

  .hero-slide-img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: auto !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    margin: 0 !important;
  }
  .hero-arrow {
    z-index: 6;
  }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
}

/* ========================================
   NOSCRIPT FALLBACK
   ======================================== */
noscript .reveal {
  opacity: 1;
  transform: none;
}
