:root {
  --ink: #151515;
  --muted: #5d625f;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #ded9d0;
  --orange: #f05a24;
  --rust: #a43b1e;
  --amber: #ffbf3f;
  --cyan: #27b7a4;
  --charcoal: #262a27;
  --sand: #d2b48c;
  --green: #2f5d50;
  --shadow: 0 22px 60px rgba(21, 21, 21, 0.16);
  --hero-dark: #0b1612;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--orange); color: var(--white); }

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--amber) 78%, white);
  outline-offset: 4px;
}

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

/* ═══════════════════════════════════════
   SCROLL PROGRESS
════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--cyan));
  box-shadow: 0 0 14px rgba(240, 90, 36, 0.55);
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════════ */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0; left: 0; right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
  min-height: 80px;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(11, 22, 18, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  transition: min-height 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(222, 217, 208, 0.7);
  box-shadow: 0 8px 40px rgba(21, 21, 21, 0.12);
}

/* ── Brand ── */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo-ring {
  position: relative;
  width: 148px;
  height: 54px;
  padding: 5px 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(240, 90, 36, 0.28);
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

.brand-logo-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 6px;
  display: block;
}

.brand:hover .brand-logo-ring {
  transform: scale(1.03);
  box-shadow: 0 12px 28px rgba(240, 90, 36, 0.2);
}

.brand-text strong,
.brand-text small {
  display: block;
  white-space: nowrap;
}

.brand-text strong {
  font-size: 1rem;
  color: var(--white);
  transition: color 0.3s ease;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.76rem;
  transition: color 0.3s ease;
}

.site-header.is-scrolled .brand-text strong { color: var(--ink); }
.site-header.is-scrolled .brand-text small  { color: var(--muted); }

/* ── Nav toggle (mobile) ── */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  cursor: pointer;
  order: 3;
  transition: background 0.25s ease;
}

.nav-toggle:hover { background: rgba(255, 255, 255, 0.16); }

.site-header.is-scrolled .nav-toggle {
  background: var(--white);
  border-color: var(--line);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.22s ease, background 0.3s ease;
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only) { background: var(--ink); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Site nav ── */

.site-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-weight: 700;
  font-size: 0.88rem;
}

.nav-link {
  position: relative;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  transition: color 0.22s ease, background 0.22s ease;
}

.nav-link::after {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 2px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  color: var(--amber);
}

.nav-link.is-active::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav-link { color: var(--charcoal); }
.site-header.is-scrolled .nav-link:hover { color: var(--orange); background: rgba(240, 90, 36, 0.06); }
.site-header.is-scrolled .nav-link.is-active { color: var(--orange); }

/* ── Header actions ── */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid transparent;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.8rem;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.header-phone svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
  flex-shrink: 0;
}

.header-phone-alt {
  font-size: 0.8rem;
}

.admin-link {
  background: linear-gradient(135deg, var(--green), #173a34) !important;
  box-shadow: 0 8px 22px rgba(47, 93, 80, 0.28) !important;
}

.admin-link:hover,
.admin-link:focus-visible {
  box-shadow: 0 14px 32px rgba(47, 93, 80, 0.42) !important;
}

.header-phone:hover,
.header-phone:focus-visible {
  color: var(--white);
  border-bottom-color: rgba(255, 191, 63, 0.75);
  background: transparent;
}

.site-header.is-scrolled .header-phone {
  color: var(--charcoal);
  border-bottom-color: transparent;
}

.site-header.is-scrolled .header-phone:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
  background: transparent;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--rust));
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 8px 22px rgba(240, 90, 36, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: buttonGlow 3.5s ease-in-out infinite;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(240, 90, 36, 0.42);
  animation: none;
}

.header-cta.admin-link {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
  animation: none;
}

.site-header.is-scrolled .header-cta.admin-link {
  color: var(--charcoal);
  background: var(--white);
  border-color: var(--line);
}

.header-cta.admin-link:hover,
.header-cta.admin-link:focus-visible {
  color: var(--white);
  background: var(--charcoal);
  border-color: transparent;
}

/* ── Mobile nav backdrop ── */

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-backdrop.is-open {
  display: block;
  opacity: 1;
}

/* ═══════════════════════════════════════
   HERO / BANNER
════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  /* Dark industrial CSS art background */
  background-color: var(--hero-dark);
  background-image:
    radial-gradient(ellipse at 12% 58%, rgba(240, 90, 36, 0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 88% 22%, rgba(39, 183, 164, 0.16) 0%, transparent 45%),
    radial-gradient(ellipse at 52% 92%, rgba(255, 191, 63, 0.1) 0%, transparent 38%),
    linear-gradient(160deg, #0d1c16 0%, #101f19 30%, #0a1510 65%, var(--hero-dark) 100%);
}

/* Blueprint grid overlay */
.hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(39, 183, 164, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 183, 164, 0.052) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Diagonal accent band */
.hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(135deg, transparent 52%, rgba(240, 90, 36, 0.055) 52%, rgba(240, 90, 36, 0) 72%),
    linear-gradient(135deg, transparent 62%, rgba(255, 191, 63, 0.035) 62%, rgba(255, 191, 63, 0) 78%);
  pointer-events: none;
}

.hero-mobile-animation {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
}

body.is-mobile-banner .hero-visual-wrap {
  display: none !important;
}

body.is-mobile-banner .hero-mobile-animation {
  display: block;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(9, 16, 13, 0.26), rgba(9, 16, 13, 0.62)),
    url("assets/project-02.jpg") center/cover no-repeat;
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.08);
  animation: mobileHeroPan 18s ease-in-out infinite alternate;
}

body.is-mobile-banner .hero-mobile-animation::before,
body.is-mobile-banner .hero-mobile-animation::after {
  position: absolute;
  inset: -8%;
  content: "";
  pointer-events: none;
}

body.is-mobile-banner .hero-mobile-animation::before {
  background:
    linear-gradient(120deg, transparent 0 40%, rgba(240, 90, 36, 0.18) 45%, transparent 55%),
    linear-gradient(60deg, transparent 0 42%, rgba(39, 183, 164, 0.14) 46%, transparent 58%);
  mix-blend-mode: screen;
  animation: mobileHeroSweep 8s ease-in-out infinite;
}

body.is-mobile-banner .hero-mobile-animation::after {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 191, 63, 0.16), transparent 22%),
    radial-gradient(circle at 78% 65%, rgba(240, 90, 36, 0.12), transparent 18%);
  animation: mobileHeroPulse 5.5s ease-in-out infinite alternate;
}

/* Glowing floating orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(88px);
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(240, 90, 36, 0.55) 0%, rgba(240, 90, 36, 0) 70%);
  top: -220px; left: -100px;
  animation: orbFloat1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(39, 183, 164, 0.42) 0%, rgba(39, 183, 164, 0) 70%);
  top: 5%; right: -80px;
  animation: orbFloat2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255, 191, 63, 0.38) 0%, rgba(255, 191, 63, 0) 70%);
  bottom: 12%; left: 30%;
  animation: orbFloat3 14s ease-in-out infinite alternate;
}

/* Hero inner grid (content | scaffold) */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr clamp(270px, 40%, 520px);
  gap: 48px;
  align-items: center;
  width: 100%;
  flex: 1;
  padding: 120px clamp(18px, 5vw, 72px) 48px;
  animation: riseIn 0.9s ease both;
}

/* Hero badge pill */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  padding: 8px 18px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  width: fit-content;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(39, 183, 164, 0.7);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* Hero text */
.hero-content {
  color: var(--white);
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.6;
}

/* Hero scaffold visual */
.hero-visual-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  animation: riseIn 1.1s 0.25s ease both;
}

.hero-scaffold-svg {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(39, 183, 164, 0.1));
}

/* Hero ghost CTA button */
.btn.hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.btn.hero-ghost:hover,
.btn.hero-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.42);
  transform: translateY(-2px);
}

/* Hero stat bar */
.hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  margin-top: auto;
}

.hero-facts div {
  padding: 22px 28px;
  background: rgba(0, 0, 0, 0.32);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-facts div:hover {
  background: rgba(240, 90, 36, 0.25);
  transform: translateY(-3px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 900;
  font-size: 1.02rem;
}

.hero-facts a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 191, 63, 0.25);
}

.hero-facts a:hover,
.hero-facts a:focus-visible {
  color: var(--amber);
  border-bottom-color: rgba(255, 191, 63, 0.5);
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: calc(22% + 24px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s ease;
}

.hero-scroll:hover { color: rgba(255, 255, 255, 0.7); }

.hero-scroll-mouse {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 22px;
  height: 34px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  padding-top: 5px;
}

.hero-scroll-wheel {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

.hero-scroll-label { animation: scrollFade 1.8s ease-in-out infinite; }

/* Hero tags */
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.hero-tags span {
  padding: 7px 13px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: default;
}

.hero-tags span:hover {
  background: rgba(240, 90, 36, 0.25);
  border-color: rgba(240, 90, 36, 0.5);
  transform: translateY(-2px);
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-contact-inline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-contact-divider {
  color: rgba(255, 255, 255, 0.32);
}

.hero-phone-link {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 191, 63, 0.36);
  text-underline-offset: 3px;
}

.hero-phone-link:hover,
.hero-phone-link:focus-visible {
  color: var(--amber);
}

/* ═══════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, rgba(255,255,255,0), rgba(255,255,255,0.36), rgba(255,255,255,0));
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(120%);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--rust));
  box-shadow: 0 16px 34px rgba(240, 90, 36, 0.32);
  animation: buttonGlow 3s ease-in-out infinite;
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: linear-gradient(135deg, #f96535, var(--orange));
  box-shadow: 0 22px 50px rgba(240, 90, 36, 0.48);
  transform: translateY(-2px);
  animation: none;
}

.btn.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(10px);
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 36px rgba(21, 21, 21, 0.2);
  transform: translateY(-2px);
}

.btn .ripple {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}

/* ═══════════════════════════════════════
   INFO STRIP
════════════════════════════════════════ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 32px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--amber));
  flex-shrink: 0;
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: 0; }

h2 { font-size: clamp(2rem, 4vw, 3.6rem); }

h3 { font-size: 1.2rem; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  color: var(--white);
  background: linear-gradient(90deg, var(--charcoal), #1c332e);
  box-shadow: 0 18px 54px rgba(21, 21, 21, 0.18);
}

.info-strip a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 48px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.info-strip a:hover,
.info-strip a:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.strip-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--orange);
  opacity: 0.9;
}

.info-strip span,
.contact-list span,
.map-card span {
  display: block;
  color: var(--sand);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-strip strong,
.contact-list strong,
.map-card strong {
  display: block;
  margin-top: 6px;
}

/* ═══════════════════════════════════════
   SECTIONS
════════════════════════════════════════ */

.section,
.split-section,
.quote-band,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.76fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading .eyebrow,
.section-heading h2 { grid-column: 1; }

.section-heading p:not(.eyebrow) {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* ═══════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════════ */

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 26px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover {
  z-index: 1;
  border-color: rgba(240, 90, 36, 0.3);
  box-shadow: 0 32px 72px rgba(21, 21, 21, 0.14), 0 0 0 1px rgba(240, 90, 36, 0.1);
  transform: translateY(-10px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(240, 90, 36, 0.1), rgba(255, 191, 63, 0.07));
  border: 1px solid rgba(240, 90, 36, 0.16);
  border-radius: 10px;
  color: var(--orange);
  transition: background 0.32s ease, border-color 0.32s ease, color 0.32s ease, transform 0.32s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.32s ease;
}

.service-icon-wrap svg { width: 24px; height: 24px; }

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--orange), var(--rust));
  border-color: transparent;
  color: var(--white);
  transform: rotate(-6deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(240, 90, 36, 0.38);
}

.service-number {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.service-card h3 { margin-top: 10px; }

.service-card p,
.why-grid p,
.split-copy p,
.map-card p,
.site-footer p { color: var(--muted); }

/* ═══════════════════════════════════════
   ABOUT / SPLIT SECTION
════════════════════════════════════════ */

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(39, 183, 164, 0.08), rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.split-copy p { font-size: 1.04rem; }

.trust-list { display: grid; gap: 12px; margin-top: 28px; }

.trust-list div {
  padding: 16px 0 16px 18px;
  border-top: 1px solid var(--line);
  border-left: 4px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease, padding-left 0.25s ease;
}

.trust-list div:hover {
  padding-left: 24px;
  background: rgba(240, 90, 36, 0.05);
  border-left-color: var(--orange);
}

.trust-list strong,
.trust-list span { display: block; }

.trust-list span { color: var(--muted); }

.about-panel { position: relative; }

.about-panel::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  content: "";
  border: 2px solid var(--amber);
  transition: border-color 0.3s ease;
}

.about-panel:hover::before { border-color: var(--orange); }

.about-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-panel:hover img { transform: scale(1.02); }

.panel-note {
  position: absolute;
  z-index: 2;
  left: 22px;
  bottom: 22px;
  padding: 18px 22px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: 0 16px 42px rgba(21, 21, 21, 0.18);
  transition: transform 0.3s ease;
}

.about-panel:hover .panel-note { transform: translateX(5px); }

.panel-note span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.panel-note strong { font-size: 2rem; }

/* ═══════════════════════════════════════
   GALLERY
════════════════════════════════════════ */

.work-section {
  background:
    linear-gradient(135deg, rgba(240, 90, 36, 0.07), rgba(39, 183, 164, 0.08)),
    #f2f0eb;
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-auto-rows: minmax(220px, 26vw);
  gap: 14px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.12);
  cursor: pointer;
}

.gallery figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(21, 21, 21, 0.7) 0%, rgba(21, 21, 21, 0.1) 50%, rgba(21, 21, 21, 0) 100%);
  opacity: 0.65;
  transition: opacity 0.4s ease;
}

.gallery figure:first-child { grid-row: span 2; }

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery figure:hover img { transform: scale(1.07); }
.gallery figure:hover::after { opacity: 0.9; }

.gallery figcaption {
  position: absolute;
  z-index: 1;
  left: 14px; right: 14px; bottom: 14px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(21, 21, 21, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  backdrop-filter: blur(8px);
  font-weight: 800;
  transform: translateY(6px);
  transition: transform 0.4s ease;
}

.gallery figure:hover figcaption { transform: translateY(0); }

/* ═══════════════════════════════════════
   WHY SECTION
════════════════════════════════════════ */

.why-section {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(240, 90, 36, 0.18), rgba(39, 183, 164, 0.16) 42%, rgba(21, 21, 21, 0)),
    var(--charcoal);
}

.section-heading.compact { display: block; max-width: 820px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: rgba(255, 255, 255, 0.16);
}

.why-grid div {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  background: #2d312e;
  transition: transform 0.32s cubic-bezier(0.23, 1, 0.32, 1), background 0.32s ease;
}

.why-grid div::before {
  position: absolute;
  top: 0; left: 24px;
  width: 54px; height: 4px;
  content: "";
  background: var(--cyan);
  transition: width 0.32s ease, background 0.32s ease;
}

.why-grid div:hover { background: #373d38; transform: translateY(-6px); }
.why-grid div:hover::before { width: 82px; background: linear-gradient(90deg, var(--cyan), var(--amber)); }

.why-grid p { color: rgba(255, 255, 255, 0.7); }

.why-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: 16px;
  background: rgba(39, 183, 164, 0.14);
  border: 1px solid rgba(39, 183, 164, 0.26);
  border-radius: 8px;
  color: var(--cyan);
  transition: background 0.32s ease, color 0.32s ease, border-color 0.32s ease, transform 0.32s cubic-bezier(0.23, 1, 0.32, 1);
}

.why-icon-wrap svg { width: 20px; height: 20px; }

.why-grid div:hover .why-icon-wrap {
  background: rgba(255, 191, 63, 0.18);
  border-color: rgba(255, 191, 63, 0.38);
  color: var(--amber);
  transform: rotate(8deg) scale(1.08);
}

.why-grid h3 { margin-top: 0; margin-bottom: 8px; }

/* ═══════════════════════════════════════
   QUOTE SECTION
════════════════════════════════════════ */

.quote-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(255, 191, 63, 0.16), rgba(0, 0, 0, 0) 38%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.045) 0 1px, rgba(255, 255, 255, 0) 1px 18px),
    linear-gradient(135deg, var(--green), #173a34);
}

.quote-band p { color: rgba(255, 255, 255, 0.78); }

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.quote-form label:nth-child(4),
.quote-form button,
.form-note { grid-column: 1 / -1; }

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 4px rgba(255, 191, 63, 0.2);
  outline: 0;
  transform: translateY(-1px);
}

textarea { resize: vertical; }

.form-note { margin: 0; font-size: 0.9rem; }

/* ═══════════════════════════════════════
   CONTACT SECTION
════════════════════════════════════════ */

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.75fr);
  gap: 18px;
}

.contact-card, .map-card {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(21, 21, 21, 0.08);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.contact-list a {
  padding: 18px;
  background: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: rgba(240, 90, 36, 0.06);
  transform: translateY(-3px);
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(240, 90, 36, 0.24), rgba(39, 183, 164, 0.1)),
    var(--charcoal);
}

.map-card .btn.secondary { width: fit-content; }

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

.site-footer {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer::before {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--cyan), var(--orange));
  background-size: 200% 100%;
  animation: gradientShift 5s linear infinite;
}

.site-footer strong, .site-footer span { display: block; }
.site-footer span { color: var(--sand); }
.site-footer p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, 0.65); }

/* ═══════════════════════════════════════
   CHATBOT
════════════════════════════════════════ */

.chatbot {
  position: fixed;
  z-index: 30;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  width: min(390px, calc(100vw - 32px));
  pointer-events: none;
}

.chatbot-toggle, .chatbot-panel { pointer-events: auto; }

.chatbot-toggle {
  position: absolute;
  right: 0; bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--rust));
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  animation: chatTogglePulse 3s ease-in-out infinite;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.25s ease, box-shadow 0.3s ease;
}

.chatbot-toggle:hover, .chatbot-toggle:focus-visible {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 28px 62px rgba(240, 90, 36, 0.42), 0 0 0 6px rgba(240, 90, 36, 0.14);
  animation: none;
}

.chatbot-toggle[aria-expanded="true"] {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  pointer-events: none;
  animation: none;
}

.chatbot-pulse {
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(255, 191, 63, 0.68);
  animation: pulse 1.9s infinite;
}

.chatbot-panel {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(220px, 44vh) auto auto auto;
  max-height: min(640px, calc(100vh - 34px));
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(222, 217, 208, 0.8);
  border-radius: 16px;
  box-shadow: 0 32px 90px rgba(21, 21, 21, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px);
  transform: translateY(22px) scale(0.94);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1), transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.chatbot-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, #c04a1a 55%, rgba(39, 183, 164, 0.55) 100%);
}

.chatbot-header-info { display: flex; align-items: center; gap: 12px; min-width: 0; }

.chatbot-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: rgba(255, 255, 255, 0.2);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  font-weight: 900;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chatbot-header strong, .chatbot-header span { display: block; }
.chatbot-header span { margin-top: 2px; color: rgba(255, 255, 255, 0.75); font-size: 0.8rem; }

.chatbot-header button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chatbot-header button:hover { background: rgba(255, 255, 255, 0.26); transform: rotate(90deg); }
.chatbot-header button svg { width: 16px; height: 16px; }

.chatbot-messages {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(240, 90, 36, 0.04), rgba(39, 183, 164, 0.07)),
    var(--paper);
}

.chat-message {
  width: fit-content;
  max-width: 88%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 0.93rem;
  line-height: 1.48;
  box-shadow: 0 4px 14px rgba(21, 21, 21, 0.08);
  animation: messageSlideIn 0.26s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.chat-message.bot { align-self: flex-start; color: var(--ink); background: var(--white); border-bottom-left-radius: 4px; border-left: 3px solid var(--orange); }
.chat-message.user { align-self: flex-end; color: var(--white); background: linear-gradient(135deg, var(--charcoal), #383e39); border-bottom-right-radius: 4px; }
.chat-message.loading { color: var(--muted); font-style: italic; }

.chatbot-prompts {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 14px 6px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chatbot-prompts button {
  flex: 0 0 auto;
  padding: 7px 12px;
  color: var(--orange);
  background: rgba(240, 90, 36, 0.07);
  border: 1px solid rgba(240, 90, 36, 0.2);
  border-radius: 999px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.chatbot-prompts button:hover { background: var(--orange); color: var(--white); border-color: transparent; transform: translateY(-1px); }

.chatbot-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.chatbot-form input { min-height: 42px; border-color: var(--line); border-radius: 8px; background: rgba(242, 240, 237, 0.6); }
.chatbot-form input:focus { background: var(--white); }

.chatbot-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--rust));
  border: 0;
  border-radius: 8px;
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-form button:hover { transform: scale(1.07); box-shadow: 0 8px 22px rgba(240, 90, 36, 0.38); }
.chatbot-form button svg { width: 18px; height: 18px; }

.chatbot-note {
  margin: 0;
  padding: 7px 14px 12px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.76rem;
  border-top: 1px solid rgba(222, 217, 208, 0.5);
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.74s cubic-bezier(0.23, 1, 0.32, 1), transform 0.74s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   KEYFRAMES
════════════════════════════════════════ */

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 191, 63, 0.68); }
  70%  { box-shadow: 0 0 0 12px rgba(255, 191, 63, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 191, 63, 0); }
}

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

@keyframes orbFloat1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(55px, 45px) scale(1.14); }
}

@keyframes orbFloat2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-45px, 65px) scale(0.88); }
}

@keyframes orbFloat3 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(35px, -55px) scale(1.1); }
}

@keyframes buttonGlow {
  0%, 100% { box-shadow: 0 16px 34px rgba(240, 90, 36, 0.32), 0 0 0 0 rgba(240, 90, 36, 0); }
  50%       { box-shadow: 0 16px 34px rgba(240, 90, 36, 0.32), 0 0 26px 5px rgba(240, 90, 36, 0.16); }
}

@keyframes chatTogglePulse {
  0%, 100% { box-shadow: 0 20px 52px rgba(21, 21, 21, 0.28), 0 0 0 0 rgba(240, 90, 36, 0.38); }
  50%       { box-shadow: 0 20px 52px rgba(21, 21, 21, 0.28), 0 0 0 10px rgba(240, 90, 36, 0); }
}

@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes rippleAnim {
  to { transform: scale(4); opacity: 0; }
}

@keyframes messageSlideIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  80%  { opacity: 0; transform: translateY(10px); }
  100% { opacity: 0; transform: translateY(0); }
}

@keyframes scrollFade {
  0%, 80% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* ═══════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 1000px
════════════════════════════════════════ */

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .nav-toggle { display: flex; align-items: center; justify-content: center; }

  .site-nav {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0;
    z-index: 101;
    width: min(320px, 85vw);
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 90px 16px 32px;
    background: var(--white);
    box-shadow: -8px 0 48px rgba(21, 21, 21, 0.18);
    overflow-y: auto;
    animation: none;
  }

  .site-nav.is-open {
    display: flex;
    animation: slideInRight 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
  }

  .nav-link {
    color: var(--charcoal);
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .nav-link:hover { background: rgba(240, 90, 36, 0.06); color: var(--orange); }
  .nav-link.is-active { color: var(--orange); background: rgba(240, 90, 36, 0.06); }
  .nav-link::after { bottom: 6px; }

  .header-phone { display: none; }

  .info-strip,
  .section-heading,
  .split-section,
  .quote-band,
  .contact-section { grid-template-columns: 1fr; }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p:not(.eyebrow) { grid-column: auto; }

  .service-grid, .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .hero-visual-wrap { display: none; }

  .hero-scroll { display: none; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 700px
════════════════════════════════════════ */

@media (max-width: 700px) {
  .hero-inner { padding: 110px 18px 32px; }

  .brand-logo-ring {
    width: 128px;
    height: 48px;
    padding: 5px 7px;
  }

  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }

  .hero-actions, .btn { width: 100%; }

  .hero-facts,
  .service-grid,
  .why-grid,
  .quote-form,
  .contact-list { grid-template-columns: 1fr; }

  .info-strip a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .about-panel::before { inset: -10px 10px 10px -10px; }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, 62vw);
  }

  .gallery figure:first-child { grid-row: auto; }

  .site-footer { display: block; }
  .site-footer p { margin-top: 12px; }

  .chatbot { right: 12px; bottom: 12px; width: calc(100vw - 24px); }
  .chatbot-panel { grid-template-rows: auto minmax(220px, 48vh) auto auto auto; }
  .chatbot-toggle { right: 0; min-height: 52px; padding: 0 16px; }

  .header-actions { gap: 6px; }
  .header-cta { padding: 0 14px; font-size: 0.82rem; }
  .header-cta.admin-link { display: none; }
}

/* ═══════════════════════════════════════
   SLIDE-IN ANIMATION FOR MOBILE NAV
════════════════════════════════════════ */

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes mobileHeroPan {
  0% { transform: scale(1.08) translate3d(0, 0, 0); }
  100% { transform: scale(1.14) translate3d(-2%, -2%, 0); }
}

@keyframes mobileHeroSweep {
  0% { transform: translateX(-10%); opacity: 0.18; }
  50% { opacity: 0.36; }
  100% { transform: translateX(10%); opacity: 0.18; }
}

@keyframes mobileHeroPulse {
  0% { opacity: 0.4; }
  100% { opacity: 0.9; }
}

/* ═══════════════════════════════════════
   INFO STRIP — upgraded
════════════════════════════════════════ */

.info-strip a {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.28s ease, transform 0.28s ease;
  position: relative;
}

.info-strip a::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.info-strip a:hover::before,
.info-strip a:focus-visible::before { transform: scaleX(1); }

.strip-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(240, 90, 36, 0.15);
  border: 1px solid rgba(240, 90, 36, 0.25);
  border-radius: 10px;
  color: var(--orange);
  transition: background 0.28s ease, transform 0.28s ease;
}

.strip-icon-wrap svg { width: 22px; height: 22px; }

.info-strip a:hover .strip-icon-wrap {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}

.strip-text span {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.strip-text strong {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
  font-weight: 900;
}

.strip-phone-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.strip-phone-row .info-phone {
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   SERVICES — upgraded
════════════════════════════════════════ */

.services-section {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(240, 90, 36, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(39, 183, 164, 0.05) 0%, transparent 55%),
    var(--paper);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 4px;
}

.service-card p {
  flex: 1;
}

.service-card-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.86rem;
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-link svg {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.service-link:hover {
  gap: 10px;
  color: var(--rust);
}

.service-link:hover svg { transform: translateX(3px); }

.services-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding: 28px 36px;
  background:
    linear-gradient(135deg, rgba(240, 90, 36, 0.06), rgba(255, 191, 63, 0.04)),
    var(--white);
  border: 1px solid rgba(240, 90, 36, 0.14);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}

.services-cta-bar strong {
  display: block;
  font-size: 1.06rem;
  margin-bottom: 4px;
}

.services-cta-bar p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

/* ═══════════════════════════════════════
   ABOUT — upgraded
════════════════════════════════════════ */

.about-section {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(39, 183, 164, 0.07), transparent 55%),
    var(--white);
}

.about-quote {
  margin: 22px 0 20px;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: linear-gradient(135deg, rgba(240, 90, 36, 0.05), transparent);
  border-radius: 0 6px 6px 0;
  font-size: 1.04rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

.trust-list div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-left: none;
  transition: background 0.25s ease;
}

.trust-list div:hover {
  padding-left: 0;
  background: transparent;
  border-left-color: transparent;
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  margin-top: 2px;
  background: linear-gradient(135deg, var(--orange), var(--rust));
  border-radius: 999px;
  color: var(--white);
}

.trust-check svg { width: 14px; height: 14px; }

.trust-list strong { display: block; margin-bottom: 3px; }
.trust-list span   { display: block; color: var(--muted); font-size: 0.94rem; }

.about-panel { position: relative; }

.about-panel-frame {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: 0;
  border: 2px solid var(--amber);
  transition: border-color 0.3s ease;
}

.about-panel:hover .about-panel-frame { border-color: var(--orange); }

.about-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: block;
}

.about-panel:hover img { transform: scale(1.02); }

.panel-note {
  transition: transform 0.3s ease;
}

.about-panel:hover .panel-note { transform: translateX(5px); }

.panel-location {
  position: absolute;
  z-index: 2;
  right: -14px;
  top: 32px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(21, 21, 21, 0.2);
  animation: float 4s ease-in-out infinite alternate;
}

.panel-location svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

@keyframes float {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

/* ═══════════════════════════════════════
   GALLERY — upgraded
════════════════════════════════════════ */

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: minmax(220px, 26vw) minmax(220px, 26vw);
  gap: 14px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(21, 21, 21, 0.14);
  cursor: pointer;
}

.gallery figure:first-child { grid-row: span 2; }

.gallery-figure-wide {
  grid-column: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery figure:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(0deg,
    rgba(15, 15, 15, 0.56) 0%,
    rgba(15, 15, 15, 0.16) 42%,
    rgba(15, 15, 15, 0) 72%
  );
  opacity: 0.42;
  transition: opacity 0.38s ease;
}

.gallery figure:hover .gallery-overlay { opacity: 0.76; }

.gallery-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--orange);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  transform: translateY(4px);
  transition: transform 0.38s ease;
}

.gallery figure:hover .gallery-tag { transform: translateY(0); }

.gallery figcaption {
  color: var(--white);
  font-weight: 800;
  font-size: 0.84rem;
  transform: translateY(6px);
  transition: transform 0.38s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.gallery figure:hover figcaption { transform: translateY(0); }

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.gallery-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-fb-btn {
  color: var(--white);
  background: #1877f2;
  border-color: transparent;
  flex-shrink: 0;
}

.gallery-fb-btn:hover,
.gallery-fb-btn:focus-visible {
  background: #1464d4;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(24, 119, 242, 0.35);
}

/* ═══════════════════════════════════════
   WHY — upgraded
════════════════════════════════════════ */

.why-grid div {
  position: relative;
  overflow: hidden;
  padding: 32px 28px;
}

.why-num {
  position: absolute;
  top: -8px;
  right: 16px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.03em;
}

.why-grid h3 { font-size: 1.08rem; margin-bottom: 10px; }

/* ═══════════════════════════════════════
   QUOTE — upgraded
════════════════════════════════════════ */

.quote-copy h2,
.quote-copy p { margin-bottom: 0; }

.quote-benefits {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.5;
}

.qb-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
  background: rgba(39, 183, 164, 0.2);
  border: 1px solid rgba(39, 183, 164, 0.35);
  border-radius: 999px;
  color: var(--cyan);
}

.qb-icon svg { width: 11px; height: 11px; }

.quote-alt-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.quote-alt-contact a {
  color: var(--amber);
  font-weight: 900;
  transition: color 0.2s ease;
}

.quote-alt-contact a:hover { color: var(--white); }

.quote-alt-contact span {
  color: rgba(255, 255, 255, 0.36);
}

/* ═══════════════════════════════════════
   CONTACT — upgraded
════════════════════════════════════════ */

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-list a.contact-phone {
  background: var(--white);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  background: rgba(240, 90, 36, 0.04);
  transform: translateY(-2px);
}

.contact-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
}

.contact-icon-wrap svg { width: 18px; height: 18px; }

.phone-icon { background: rgba(240, 90, 36, 0.1); color: var(--orange); }
.email-icon { background: rgba(39, 183, 164, 0.1); color: var(--cyan); }
.ig-icon    { background: rgba(193, 53, 132, 0.1); color: #c13584; }
.fb-icon    { background: rgba(24, 119, 242, 0.1); color: #1877f2; }

.contact-list a:hover .phone-icon { background: var(--orange); color: var(--white); }
.contact-list a:hover .email-icon { background: var(--cyan); color: var(--white); }
.contact-list a:hover .ig-icon    { background: #c13584; color: var(--white); }
.contact-list a:hover .fb-icon    { background: #1877f2; color: var(--white); }

.contact-list span  { display: block; color: var(--muted); font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-list strong { display: block; margin-top: 3px; font-size: 0.92rem; }

.contact-list a.contact-phone strong {
  font-size: 0.88rem;
  line-height: 1.45;
}

.contact-list a.contact-phone .contact-icon-wrap {
  width: 36px;
  height: 36px;
}

/* Map card — redesigned */
.map-card {
  background:
    linear-gradient(145deg, rgba(240, 90, 36, 0.18), rgba(39, 183, 164, 0.1) 60%),
    var(--charcoal);
  border: none;
  border-radius: 10px;
}

.map-card-address {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.map-pin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(240, 90, 36, 0.22);
  border: 1px solid rgba(240, 90, 36, 0.35);
  border-radius: 10px;
  color: var(--orange);
  margin-top: 2px;
}

.map-pin-icon svg { width: 20px; height: 20px; }

.map-card-address span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.map-card-address strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  display: block;
  margin-bottom: 4px;
}

.map-card-address address {
  color: rgba(255, 255, 255, 0.65);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.5;
}

.map-card-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 20px;
}

.map-btn {
  width: 100%;
  justify-content: center;
  gap: 8px;
}

.map-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
  font-weight: 700;
  transition: color 0.2s ease;
  text-align: center;
}

.map-call-link:hover { color: rgba(255, 255, 255, 0.9); }

/* ═══════════════════════════════════════
   FOOTER — full redesign
════════════════════════════════════════ */

.site-footer {
  background: #0e120f;
  color: var(--white);
  position: relative;
}

.site-footer::before {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--amber), var(--cyan), var(--orange));
  background-size: 200% 100%;
  animation: gradientShift 5s linear infinite;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 64px clamp(18px, 5vw, 72px) 48px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.footer-logo-ring {
  width: 154px;
  height: 58px;
  flex-shrink: 0;
}

.footer-brand-text strong,
.footer-brand-text small { display: block; }

.footer-brand-text strong {
  font-size: 1rem;
  font-weight: 900;
  color: var(--white);
}

.footer-brand-text small {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.65);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social-link svg { width: 18px; height: 18px; }

.footer-social-link:hover {
  background: var(--orange);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-3px);
}

/* Link columns */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col-heading {
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 4px;
}

/* CTA column */
.footer-cta-col p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0 0 18px;
}

.footer-cta-btn {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.footer-cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-cta-phone svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--orange); }

.footer-cta-phone:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
}

.footer-back-top {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.footer-back-top svg { width: 14px; height: 14px; }
.footer-back-top:hover { color: var(--amber); }

/* ═══════════════════════════════════════
   RESPONSIVE — new sections
════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer-brand { grid-column: span 2; flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .footer-brand > p { flex: 1 1 100%; }
}

@media (max-width: 1000px) {
  .services-cta-bar { flex-direction: column; align-items: flex-start; }
  .gallery-footer    { flex-direction: column; align-items: flex-start; }
  .contact-section   { grid-template-columns: 1fr; }
  .about-section.split-section { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .info-strip { grid-template-columns: 1fr; }
  .info-strip a { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .contact-list { grid-template-columns: 1fr; }
  .gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery figure:first-child { grid-row: auto; }
  .gallery-figure-wide { grid-column: auto; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 40px 18px 32px;
  }
  .footer-brand { grid-column: auto; flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .panel-location { right: 8px; font-size: 0.76rem; }
  .about-panel-frame { inset: -10px 10px 10px -10px; }
}

.info-strip .info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.28s ease, transform 0.28s ease;
  position: relative;
}

.info-strip .info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.info-strip .info-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.info-strip .info-card:hover::before {
  transform: scaleX(1);
}

.info-strip .info-card:hover .strip-icon-wrap {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}

.strip-text strong a {
  display: inline-flex;
  padding: 0;
  border: 0;
}

.strip-text strong a::before {
  content: none;
}

.strip-text strong a:hover,
.strip-text strong a:focus-visible {
  background: transparent;
  transform: none;
  color: var(--amber);
}

.strip-text strong + strong {
  margin-top: 2px;
}

@media (max-width: 700px) {
  .info-strip .info-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-brand {
    grid-column: auto !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    align-items: flex-start;
    min-width: 0;
  }

  .footer-brand > p {
    max-width: 100%;
  }

  .footer-social {
    align-self: flex-start;
  }

  .chatbot {
    right: 16px;
    width: calc(100vw - 32px);
  }
}
