:root {
  --bg: #120f0d;
  --bg-soft: #1d1713;
  --surface: rgba(18, 15, 13, 0.74);
  --surface-strong: #2d3137;
  --surface-light: rgba(255, 255, 255, 0.08);
  --text: #f8f2eb;
  --muted: #d2c6ba;
  --line: rgba(217, 121, 31, 0.16);
  --primary: #d9791f;
  --secondary: #ffb84d;
  --accent: #f09a3e;
  --danger: #dc6c52;
  --shadow: 0 24px 80px rgba(1, 6, 17, 0.45);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: #f09a3e;
  background:
    radial-gradient(circle at top left, rgba(217, 121, 31, 0.2), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(240, 154, 62, 0.18), transparent 24%),
    linear-gradient(180deg, #120f0d 0%, #120f0d 46%, #1a1613 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.24;
  pointer-events: none;
  z-index: 0;
}

body::before {
  top: -8rem;
  right: -10rem;
  background: #d9791f;
}

body::after {
  left: -9rem;
  bottom: 10rem;
  background: #f09a3e;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.muted-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.dark-band {
  background: linear-gradient(135deg, rgba(18, 15, 13, 0.8), rgba(31, 35, 40, 0.88));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: none;
  background: transparent;
  border-bottom: 0;
}

.topbar {
  background: linear-gradient(90deg, #d9791f 0%, #d4751c 47%, #1f2328 47%, #1f2328 100%);
  color: #fef8f1;
  max-height: 4rem;
  overflow: hidden;
  transition: max-height 260ms ease, opacity 220ms ease;
}

.topbar-wrap,
.topbar-group,
.header-actions {
  display: flex;
  align-items: center;
}

.topbar-wrap {
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.4rem;
}

.topbar-group {
  gap: 1.5rem;
  flex-wrap: wrap;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
}

.topbar-icon {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-flex;
}

.topbar-icon svg {
  width: 100%;
  height: 100%;
}

.topbar-label {
  font-weight: 700;
}

.social-pill {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 700;
  text-transform: lowercase;
}

.mainbar {
  background: #fbf7f2;
  box-shadow: 0 14px 34px rgba(9, 21, 47, 0.08);
  transition: box-shadow 260ms ease;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.9rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #120f0d;
}

.brand-text {
  letter-spacing: 0.02em;
}

.brand-logo img {
  height: 3.1rem;
  width: auto;
  transition: height 260ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.site-nav a {
  padding: 0.6rem 0.95rem;
  color: #2d3137;
  border-radius: 999px;
  font-weight: 700;
  transition: color var(--transition), background var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #d9791f;
  background: rgba(217, 121, 31, 0.08);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(217, 121, 31, 0.16);
  border-radius: 0.9rem;
  background: #fbf7f2;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.3rem;
  height: 2px;
  margin: 0.25rem auto;
  background: #2d3137;
  transition: transform var(--transition), opacity var(--transition);
}

.header-actions {
  gap: 1rem;
}

body.is-scrolled .topbar {
  max-height: 0;
  opacity: 0;
}

body.is-scrolled .mainbar {
  box-shadow: 0 18px 40px rgba(9, 21, 47, 0.12);
}

.icon-button {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #2d3137;
  cursor: pointer;
}

.icon-button svg {
  width: 1.55rem;
  height: 1.55rem;
}

.header-cta {
  min-width: 15rem;
  gap: 1rem;
  background: #d9791f;
  color: #ffffff;
  box-shadow: none;
}

.cta-arrow {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fbf7f2;
  color: #d9791f;
  font-size: 1.15rem;
}

.grid-button {
  width: 3.35rem;
  display: grid;
  grid-template-columns: repeat(3, 0.28rem);
  justify-content: center;
  gap: 0.28rem;
}

.grid-button span {
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #d9791f;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 90%);
  pointer-events: none;
}

.compact-hero {
  padding-top: 2rem;
}

.hero-reference {
  padding: 0 0 4rem;
}

.hero-reference::before {
  display: none;
}

.hero-reference-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  min-height: 42rem;
}

.hero-reference-copy {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 3.2rem 4rem;
  background: linear-gradient(180deg, #252a2e 0%, #1f2328 100%);
}

.hero-reference-copy::before {
  content: "";
  position: absolute;
  left: -9rem;
  bottom: -14rem;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: repeating-radial-gradient(circle, rgba(217, 121, 31, 0.36) 0 2px, transparent 2px 16px);
  opacity: 0.55;
}

.hero-chip {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.75rem;
  margin: 0 0 1.7rem;
  padding: 0.85rem 1.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #f09a3e, #d9791f);
  color: #f5e6d3;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-chip::before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fbf7f2;
  box-shadow: 0 0 0 0.28rem rgba(255, 255, 255, 0.18);
}

.hero-index {
  position: absolute;
  left: 3rem;
  top: 9.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(7rem, 18vw, 11rem);
  line-height: 0.9;
  color: rgba(217, 121, 31, 0.32);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.hero-reference-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 10ch;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-reference-copy .lead {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  margin: 1.6rem 0 0;
  color: #f5e6d3;
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.hero-reference-copy .hero-actions {
  position: relative;
  z-index: 1;
}

.hero-cta {
  box-shadow: 0 18px 35px rgba(6, 10, 37, 0.22);
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-inline-points {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-inline-points span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #f5e6d3;
  background: rgba(255, 255, 255, 0.05);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-reference-media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(45, 49, 55, 0.7), rgba(255, 255, 255, 0));
}

.hero-reference-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(45, 49, 55, 0.62) 0%, rgba(45, 49, 55, 0.08) 28%, rgba(255, 255, 255, 0) 56%);
  z-index: 1;
}

.hero-reference-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 2rem;
  bottom: 1.5rem;
  width: min(10.5rem, 27vw);
  z-index: 2;
  filter: drop-shadow(0 18px 36px rgba(7, 14, 55, 0.35));
}

.hero-stats-strip {
  margin-top: -4.2rem;
  position: relative;
  z-index: 3;
}

.stats-strip-grid,
.process-cards-grid,
.catalog-grid,
.team-grid-home,
.testimonials-grid-home,
.pricing-grid-home,
.numbers-band-grid,
.case-grid-home {
  display: grid;
  gap: 1.3rem;
}

.stats-strip-grid,
.process-cards-grid,
.team-grid-home,
.testimonials-grid-home,
.pricing-grid-home,
.numbers-band-grid,
.case-grid-home {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stats-strip-card,
.showcase-banner,
.showcase-mini-card,
.process-card,
.catalog-card,
.contact-promo-form,
.contact-promo-visual,
.team-card-home,
.testimonial-card-home,
.pricing-card-home,
.numbers-band-card,
.case-card-home,
.review-pill,
.floating-note,
.promo-visual-note {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.stats-strip-card {
  /* display: flex; */
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 1.8rem;
  background: #fbf7f2;
  color: #2d3137;
  position: relative;
  overflow: hidden;
}

.stats-strip-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #d9791f, #f09a3e);
  border-radius: 3px 3px 0 0;
}

.stats-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(217, 121, 31, 0.12);
  color: #d9791f;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  width: fit-content;
}

.stats-strip-card p,
.stats-strip-card strong {
  margin: 0;
}

.stats-strip-card strong {
  font-family: "Sora", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.05;
  color: #1a1410;
}

.stats-strip-card p {
  color: #6b6259;
  line-height: 1.6;
  font-size: 0.9rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(217, 121, 31, 0.15);
}

.stats-strip-card-primary {
  background: linear-gradient(145deg, #c9681a 0%, #e8883a 55%, #f5a84e 100%);
  color: #ffffff;
}

.stats-strip-card-primary::before {
  background: rgba(255, 255, 255, 0.35);
}

.stats-strip-card-primary strong {
  color: #ffffff;
}

.stats-strip-card-primary p {
  color: rgba(255, 255, 255, 0.8);
  border-top-color: rgba(255, 255, 255, 0.2);
}

.stats-strip-card-primary .stats-strip-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #fff5e8;
}

.stats-strip-card-dark {
  background: #1e2228;
  color: #ffffff;
}

.stats-strip-card-dark::before {
  background: linear-gradient(90deg, #f09a3e, #d9791f);
}

.stats-strip-card-dark strong {
  color: #ffffff;
}

.stats-strip-card-dark p {
  color: rgba(245, 230, 211, 0.7);
  border-top-color: rgba(240, 154, 62, 0.2);
}

.stats-strip-card-dark .stats-strip-icon {
  background: rgba(240, 154, 62, 0.14);
  color: #f0a050;
}

.home-about-section,
.service-catalog-section,
.team-home-section,
.case-studies-home-section {
  background: #faf6f1;
}

.home-about-grid,
.contact-promo-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.home-about-copy h2,
.showcase-banner-copy h2,
.contact-promo-form h2,
.section-heading h2 {
  color: #2d3137;
}

.lead-copy {
  color: #6b6259;
  line-height: 1.8;
  margin: 1.25rem 0 0;
}

.about-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.about-points article {
  padding: 1rem 1.15rem;
  border-left: 3px solid #d9791f;
  background: #fbf7f2;
  border-radius: 0 1rem 1rem 0;
}

.about-points strong,
.process-card h3,
.catalog-card h3,
.team-card-home h3,
.pricing-card-home h3,
.case-card-home h3,
.showcase-mini-card h3 {
  color: #2d3137;
  font-family: "Sora", sans-serif;
}

.about-points p,
.showcase-banner-copy p,
.showcase-mini-card p,
.process-card p,
.catalog-card-copy p,
.team-card-home p,
.testimonial-card-home p,
.pricing-card-home li,
.numbers-band-card span,
.case-card-home p,
.floating-note p,
.promo-visual-note p,
.review-pill span {
  color: #6b6259;
  line-height: 1.7;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.review-pill,
.floating-note,
.promo-visual-note {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 1rem;
  background: #fbf7f2;
}

.review-pill img,
.floating-note img,
.testimonial-head img,
.team-card-home img {
  width: 3.3rem;
  height: 3.3rem;
  object-fit: cover;
  border-radius: 50%;
}

.review-pill strong,
.floating-note strong,
.testimonial-head strong,
.numbers-band-card strong {
  color: #2d3137;
}

.about-image-stack {
  position: relative;
  padding: 0 1rem 1rem 0;
}

.about-main-image,
.showcase-banner-media img,
.showcase-mini-card img,
.catalog-card img,
.contact-promo-visual img,
.case-card-home img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.about-main-image {
  min-height: 35rem;
}

.floating-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 18rem;
}

.home-showcase-section,
.process-home-section,
.testimonials-home-section,
.numbers-band {
  background: #2d3137;
}

.showcase-stack {
  display: grid;
  gap: 2rem;
}

/* ════════════════════════════════
   HOME SHOWCASE  — Our Approach
   ════════════════════════════════ */

.showcase-stack { display: grid; gap: 2rem; } /* kept for safety */

/* ── Row 1: image + copy ── */
.showcase-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.showcase-intro-media {
  position: relative;
}

.showcase-intro-media img {
  width: 100%;
  height: 32rem;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.showcase-intro-tag {
  position: absolute;
  bottom: 1.8rem;
  left: -1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09a3e, #d9791f);
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 40px rgba(217, 121, 31, 0.45);
}

.showcase-intro-tag strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.showcase-intro-tag span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.88;
  line-height: 1.3;
  padding: 0 0.5rem;
}

.showcase-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.showcase-intro-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.18;
  color: #fff7f0;
}

.showcase-intro-copy > p {
  color: rgba(245, 225, 200, 0.75);
  line-height: 1.75;
  margin: 0;
}

/* feature list */
.showcase-feat-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(240, 154, 62, 0.15);
}

.showcase-feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(240, 154, 62, 0.15);
}

.showcase-feat-icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(240, 154, 62, 0.14);
  color: #f0a250;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  margin-top: 0.1rem;
}

.showcase-feat-list strong {
  display: block;
  color: #fff7f0;
  font-size: 0.97rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.showcase-feat-list p {
  margin: 0;
  font-size: 0.87rem;
  color: rgba(245, 225, 200, 0.65);
  line-height: 1.6;
}

/* ── Row 2: 3 cards ── */
.showcase-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.showcase-feat-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(240, 154, 62, 0.12);
  display: flex;
  flex-direction: column;
  transition: border-color 260ms ease, transform 260ms ease;
}

.showcase-feat-card:hover {
  border-color: rgba(240, 154, 62, 0.35);
  transform: translateY(-4px);
}

.showcase-feat-card-img {
  overflow: hidden;
  height: 14rem;
}

.showcase-feat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 400ms ease;
}

.showcase-feat-card:hover .showcase-feat-card-img img {
  transform: scale(1.05);
}

.showcase-feat-card-body {
  padding: 1.6rem 1.6rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
  position: relative;
}

.showcase-feat-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(240, 154, 62, 0.18);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.4rem;
  letter-spacing: -0.02em;
}

.showcase-feat-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff7f0;
  line-height: 1.3;
  max-width: 18ch;
}

.showcase-feat-card p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(245, 225, 200, 0.65);
  line-height: 1.65;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0 auto 1.6rem;
  max-width: 62rem;
  color: #d9c4ab;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
}

.process-track span {
  text-align: center;
}

.process-card {
  padding: 1.55rem;
  background: #3a3530;
}

.process-card h3,
.process-card p,
.process-index,
.testimonial-card-home strong,
.testimonial-card-home span,
.testimonial-card-home p {
  color: #ffffff;
}

.process-index {
  display: inline-flex;
  margin-bottom: 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
}

.catalog-card {
  overflow: hidden;
  background: #fbf7f2;
}

.catalog-card img {
  height: 13rem;
}

.catalog-card-copy {
  padding: 1.2rem;
}

.contact-promo-section {
  background: linear-gradient(180deg, #ffffff 0%, #faf5ee 100%);
}

.contact-promo-form,
.contact-promo-visual {
  background: #fbf7f2;
  padding: 2rem;
}

.promo-form {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.5rem;
}

.promo-form input,
.promo-form textarea {
  width: 100%;
  padding: 1rem 1rem;
  border: 1px solid rgba(45,49,55,0.1);
  border-radius: 1rem;
  background: #fdf9f5;
  color: #2d3137;
}

.contact-promo-visual {
  position: relative;
}

.contact-promo-visual img {
  min-height: 28rem;
}

.promo-visual-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 16rem;
}

.team-card-home,
.pricing-card-home,
.case-card-home {
  padding: 1.35rem;
  background: #fbf7f2;
  text-align: center;
}

.team-card-home img {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1rem;
}

.testimonials-grid-home {
  margin-top: 2rem;
}

.testimonial-card-home {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.testimonial-head span {
  display: block;
  color: #f5e6d3;
  font-size: 0.95rem;
}

.pricing-grid-home {
  align-items: stretch;
}

.pricing-card-home {
  text-align: left;
  border: 1px solid rgba(217,121,31,0.14);
}

.pricing-card-home.featured {
  background: linear-gradient(180deg, #d9791f, #b96413);
  transform: translateY(-0.4rem);
}

.pricing-card-home.featured h3,
.pricing-card-home.featured li,
.pricing-card-home.featured .plan-label {
  color: #ffffff;
}

.pricing-card-home h3 {
  margin: 0 0 1rem;
  font-size: 2.1rem;
}

.pricing-card-home ul {
  margin: 0;
  padding-left: 1.2rem;
}

.numbers-band {
  padding: 2rem 0;
}

.numbers-band-card {
  text-align: center;
  padding: 1.4rem;
  background: linear-gradient(135deg, #d9791f, #b96413);
}

.numbers-band-card strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2.4rem;
}

.numbers-band-card span {
  display: block;
  margin-top: 0.35rem;
}

.case-card-home {
  overflow: hidden;
  text-align: left;
}

.case-card-home img {
  height: 14rem;
  margin-bottom: 1rem;
}

.hero-grid,
.split-layout,
.story-grid,
.contact-grid,
.panel-grid,
.showcase-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-grid,
.split-layout,
.contact-grid,
.showcase-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.panel-grid,
.story-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.two-column-balance {
  grid-template-columns: 1fr 0.95fr;
}

.hero-copy h1,
.section-heading h2,
.glass-card h2,
.split-copy h2,
.pricing-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 0.98;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 12ch;
}

.hero-copy .lead,
.text-block p,
.feature-card p,
.stack-list p,
.faq-content p,
.contact-form .form-message,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy .lead {
  max-width: 60ch;
  margin: 1.4rem 0 0;
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), #f09a3e);
  color: #120f0d;
  box-shadow: 0 16px 36px rgba(240, 154, 62, 0.22);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.hero-metrics article,
.mini-card,
.feature-card,
.pricing-card,
.contact-form,
.glass-card,
.faq-item,
.text-block {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
}

.hero-metrics article {
  padding: 1.25rem;
}

.hero-metrics strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-family: "Sora", sans-serif;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual,
.split-visual {
  position: relative;
}

.hero-visual img,
.split-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.glass-card,
.text-block,
.feature-card,
.pricing-card,
.mini-card,
.faq-item,
.contact-form {
  padding: 1.7rem;
}

.accent-a {
  background: linear-gradient(135deg, rgba(240, 154, 62, 0.12), rgba(18, 15, 13, 0.85));
}

.accent-b {
  background: linear-gradient(135deg, rgba(217, 121, 31, 0.12), rgba(18, 15, 13, 0.85));
}

.section-heading {
  margin-bottom: 1.75rem;
  text-align: center;
}

.section-heading.left-align {
  text-align: left;
}

.section-heading h2,
.glass-card h2,
.split-copy h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  /* max-width: 14ch; */
}

.section-heading p + h2 {
  margin-inline: auto;
}

.card-grid {
  display: grid;
  gap: 1.4rem;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
}

.feature-icon,
.plan-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.feature-card h3,
.pricing-card h3,
.faq-trigger {
  margin: 0 0 0.9rem;
  font-size: 1.3rem;
  font-family: "Sora", sans-serif;
}

.stack-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.stack-list article,
.timeline article {
  padding: 1.1rem 1.2rem;
  border-left: 2px solid rgba(240, 154, 62, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 1rem 1rem 0;
}

.compact-stack article {
  border-left-color: rgba(255, 184, 77, 0.4);
}

.mini-cards {
  display: grid;
  gap: 1rem;
}

.mini-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.filter-button {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--text);
  background: rgba(240, 154, 62, 0.12);
  transform: translateY(-1px);
}

.filter-grid .feature-card.is-hidden {
  display: none;
}

.timeline-wrap {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card.featured {
  background: linear-gradient(180deg, rgba(240, 154, 62, 0.14), rgba(18, 15, 13, 0.9));
  transform: translateY(-0.4rem);
}

.plan-price {
  font-size: 1.6rem;
  font-family: "Sora", sans-serif;
}

.plan-list {
  padding-left: 1.2rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.faq-shell {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.faq-trigger::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary);
}

.faq-item.is-open .faq-trigger::after {
  content: "-";
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content p {
  overflow: hidden;
  margin: 0;
  padding-top: 0.75rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.compact-card {
  min-height: 0;
}

.contact-form {
  background: linear-gradient(180deg, rgba(18, 15, 13, 0.84), rgba(18, 15, 13, 0.94));
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-grid label {
  display: grid;
  gap: 0.55rem;
}

.form-grid span {
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #8a8178;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: 2px solid rgba(240, 154, 62, 0.35);
  border-color: rgba(240, 154, 62, 0.3);
}

.full-span {
  grid-column: 1 / -1;
}

.form-message {
  min-height: 1.5rem;
  margin: 1rem 0 0;
}

.form-message.is-success {
  color: var(--primary);
}

.form-message.is-error {
  color: var(--danger);
}

.site-footer {
  position: relative;
}

.site-footer-rich {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(135deg, #1f2328 0%, #2d3137 46%, #1f2328 100%);
  color: #ffffff;
  margin-top: 0;
}

.footer-newsletter-wrap {
  padding: 2rem 0 0;
}

.footer-newsletter-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: 1.5rem 2rem;
  border-radius: 2rem;
  background:
    radial-gradient(circle at 58% -10%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #d9791f 0%, #c06a18 100%);
}

.footer-newsletter-card::before {
  content: "";
  position: absolute;
  inset: auto 31% 34% auto;
  width: 8rem;
  height: 2rem;
  border-top: 3px solid rgba(255, 255, 255, 0.28);
  border-right: 3px solid rgba(255, 255, 255, 0.28);
  border-radius: 0 999px 0 0;
  transform: rotate(12deg);
}

.footer-newsletter-card::after {
  content: "";
  position: absolute;
  inset: auto 28.5% 31% auto;
  width: 1rem;
  height: 1rem;
  border-top: 3px solid rgba(255, 255, 255, 0.28);
  border-right: 3px solid rgba(255, 255, 255, 0.28);
  transform: rotate(45deg);
}

.footer-newsletter-figure {
  position: relative;
  z-index: 1;
  width: 11rem;
  align-self: end;
}

.footer-newsletter-copy {
  position: relative;
  z-index: 1;
}

.footer-newsletter-copy h2 {
  margin: 0;
  max-width: 15ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.3vw, 3.35rem);
  line-height: 1.02;
  color: #ffffff;
}

.footer-light-eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.footer-newsletter-form {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100%, 36rem);
  padding: 0.7rem 0.8rem 0.7rem 1.4rem;
  border-radius: 999px;
  background: #fbf7f2;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #2d3137;
  font-size: 1.1rem;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: #847b72;
}

.footer-newsletter-form button {
  width: 4.25rem;
  height: 4.25rem;
  border: 0;
  border-radius: 50%;
  background: #d9791f;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.footer-main-wrap {
  position: relative;
  margin-top: 0;
  padding: 3rem 0 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 40%),
    linear-gradient(135deg, #252a2e 0%, #1f2328 100%);
}

.footer-main-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(166deg, transparent 0%, transparent 32%, rgba(255, 255, 255, 0.04) 32%, rgba(255, 255, 255, 0.04) 40%, transparent 40%),
    linear-gradient(14deg, transparent 0%, transparent 54%, rgba(255, 255, 255, 0.04) 54%, rgba(255, 255, 255, 0.04) 62%, transparent 62%);
  pointer-events: none;
}

.footer-rich-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.7fr 0.7fr 1fr;
  gap: 2rem;
  padding-bottom: 2.2rem;
}

.footer-brand-column,
.footer-link-column,
.footer-blog-column {
  min-width: 0;
}

.footer-brand-column {
  padding-right: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-contact-block {
  display: grid;
  gap: 0.35rem;
  margin-top: 2rem;
}

.footer-contact-block span {
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  font-size: 0.88rem;
}

.footer-contact-block a,
.footer-link-column a,
.footer-blog-item a,
.footer-bottom-links a {
  color: #ffffff;
}

.footer-contact-block a {
  font-size: 1.25rem;
  font-weight: 600;
}

.footer-link-column h3,
.footer-blog-column h3 {
  margin: 0 0 1.6rem;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  color: #ffffff;
}

.footer-link-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-link-column a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.footer-blog-column {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.footer-blog-item {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  align-items: center;
}

.footer-blog-item img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 1.2rem;
}

.footer-blog-item a {
  display: block;
  font-size: 1.15rem;
  line-height: 1.5;
}

.footer-blog-item span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.58);
}

.footer-bottom-bar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-bar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-scrolltop {
  position: fixed;
  right: 1.8rem;
  bottom: 2rem;
  z-index: 999;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09a3e, #d9791f);
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 8px 28px rgba(217, 121, 31, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.footer-scrolltop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.footer-scrolltop:hover {
  background: linear-gradient(135deg, #f5a84e, #c96d18);
  box-shadow: 0 12px 36px rgba(217, 121, 31, 0.55);
  transform: translateY(-2px);
}

.contact-banner-section {
  background: #fbf7f2;
}

.contact-banner-inner {
  min-height: 14.2rem;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(217, 121, 31, 0.45), transparent 26%),
    linear-gradient(rgba(31, 35, 40, 0.76), rgba(31, 35, 40, 0.76)),
    url("https://images.pexels.com/photos/7580636/pexels-photo-7580636.jpeg?auto=compress&cs=tinysrgb&w=1400") center/cover no-repeat;
  background-attachment: scroll;
}

.contact-banner-content {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 3rem 0;
  text-align: center;
}

.contact-banner-content h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #ffffff;
}

.contact-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f5e6d3;
  font-size: 0.95rem;
}

.contact-main-section,
.contact-branches-section {
  background: #fbf7f2;
  padding: 4.5rem 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-sidebar,
.contact-panel-form,
.branch-card {
  background: #fbf7f2;
  border-radius: 1.9rem;
  box-shadow: 0 22px 60px rgba(45, 49, 55, 0.08);
}

.contact-sidebar {
  padding: 1rem 0;
  background: transparent;
  box-shadow: none;
}

.contact-sidebar h2,
.contact-panel-form h2,
.branch-card h3 {
  margin: 0;
  color: #2d3137;
  font-family: "Sora", sans-serif;
}

.contact-sidebar h2 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
}

.contact-sidebar-copy,
.contact-branches-copy {

/* ThinkdIT premium brand refresh */
:root {
  --bg: #120f0d;
  --bg-soft: #1d1713;
  --surface: rgba(255, 247, 239, 0.12);
  --surface-strong: rgba(29, 23, 19, 0.86);
  --surface-light: rgba(255, 255, 255, 0.58);
  --text: #f8f2eb;
  --muted: #d2c6ba;
  --line: rgba(255, 181, 104, 0.18);
  --primary: #e18b35;
  --secondary: #f5c79a;
  --accent: #2f2a27;
  --danger: #dc6c52;
  --shadow: 0 30px 90px rgba(16, 10, 7, 0.18);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --container: 1240px;
}

html {
  background:
    radial-gradient(circle at top left, rgba(225, 139, 53, 0.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(54, 44, 38, 0.14), transparent 26%),
    linear-gradient(180deg, #f8f2eb 0%, #f4ede5 52%, #efe5db 100%);
}

body {
  font-family: "Manrope", sans-serif;
  color: #241d18;
  background: transparent;
}

body::before {
  top: -10rem;
  right: -8rem;
  width: 34rem;
  height: 34rem;
  background: rgba(225, 139, 53, 0.22);
  filter: blur(110px);
}

body::after {
  left: -8rem;
  bottom: 6rem;
  width: 30rem;
  height: 30rem;
  background: rgba(52, 43, 37, 0.12);
  filter: blur(110px);
}

h1,
h2,
h3,
.brand,
.hero-index,
.process-index,
.section-heading h2,
.about-banner-content h1,
.contact-banner-content h1,
.services-banner-content h1 {
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
}

.section {
  padding: 5.5rem 0;
}

.muted-section,
.home-about-section,
.service-catalog-section,
.team-home-section,
.case-studies-home-section,
.about-banner-section,
.about-story-section,
.about-values-section,
.about-process-section,
.about-team-section,
.about-proof-section,
.services-highlights-section,
.services-grid-section,
.services-process-section,
.services-pricing-section,
.services-cta-section,
.contact-main-section,
.contact-branches-section,
.contact-map-section {
  background: transparent;
}

.site-header {
  padding: 1rem 0 0;
}

.topbar {
  background: linear-gradient(120deg, #1a1613 0%, #2a221c 58%, #e08a35 58%, #c86d1a 100%);
  box-shadow: 0 18px 48px rgba(17, 11, 8, 0.16);
}

.topbar-link,
.topbar-label {
  color: #fff4ea;
}

.social-pill {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mainbar {
  width: min(calc(100% - 2rem), var(--container));
  margin: 1rem auto 0;
  background: rgba(255, 248, 241, 0.72);
  border: 1px solid rgba(69, 51, 37, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(24px);
  box-shadow: 0 28px 80px rgba(34, 22, 14, 0.1);
}

.nav-wrap {
  padding: 1.15rem 1.4rem;
}

.brand-logo img {
  height: 3.45rem;
}

.site-nav a {
  color: #342922;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #8c4815;
  background: rgba(225, 139, 53, 0.1);
}

.icon-button {
  color: #2d2520;
}

.nav-toggle {
  background: rgba(255, 250, 247, 0.92);
  border-color: rgba(225, 139, 53, 0.2);
}

.nav-toggle span,
.grid-button span {
  background: #c56c1c;
}

.button,
.header-cta,
.services-inline-button,
.contact-social-links a,
.footer-newsletter-form button {
  position: relative;
  overflow: hidden;
}

.button::before,
.services-inline-button::before,
.contact-social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.header-cta,
.button-primary,
.services-inline-button,
.footer-newsletter-form button {
  background: linear-gradient(135deg, #f0a250 0%, #d0711f 100%);
  color: #fff7f0;
  box-shadow: 0 18px 38px rgba(208, 113, 31, 0.24);
}

.button-secondary,
.hero-outline {
  border: 1px solid rgba(255, 208, 166, 0.26);
  background: rgba(255, 255, 255, 0.08);
  color: #fff7f0;
  backdrop-filter: blur(16px);
}

.cta-arrow {
  background: rgba(255, 255, 255, 0.88);
  color: #b95e14;
}

.hero-reference {
  padding: 1.4rem 0 4.5rem;
}

.hero-reference-shell {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: 0 34px 120px rgba(24, 15, 10, 0.18);
}

.hero-reference-copy {
  padding: 5rem 4rem 4rem;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #181210 0%, #241a15 56%, #2d211a 100%);
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}

.hero-reference-copy::before {
  left: auto;
  right: -8rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  background: radial-gradient(circle, rgba(240, 162, 80, 0.18), transparent 68%);
  opacity: 1;
}

.hero-index {
  color: rgba(240, 162, 80, 0.12);
}

.hero-chip {
  background: rgba(240, 162, 80, 0.14);
  color: #ffd9b2;
  border: 1px solid rgba(255, 187, 121, 0.28);
}

.hero-chip::before {
  background: #f0a250;
  box-shadow: 0 0 0 0.28rem rgba(240, 162, 80, 0.14);
}

.hero-reference-copy h1,
.hero-reference-copy .lead,
.hero-inline-points span,
.light-eyebrow,
.showcase-banner-copy h2,
.showcase-banner-copy p,
.process-home-section .section-heading h2,
.process-home-section .section-heading .eyebrow,
.numbers-band-card strong,
.numbers-band-card span,
.testimonials-home-section .section-heading h2,
.testimonials-home-section .section-heading .eyebrow {
  color: #fff7f0;
}

.hero-inline-points span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 194, 137, 0.22);
}

.hero-reference-media,
.showcase-banner,
.home-showcase-section,
.process-home-section,
.testimonials-home-section,
.numbers-band,
.dark-band,
.site-footer-rich,
.footer-main-wrap,
.about-banner-inner,
.services-banner-inner,
.contact-banner-inner {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(135deg, #1a1411 0%, #2a211b 52%, #120f0d 100%);
}

.hero-reference-media::before {
  background: linear-gradient(90deg, rgba(18, 15, 13, 0.64) 0%, rgba(18, 15, 13, 0.08) 34%, rgba(255, 255, 255, 0) 64%);
}

.hero-reference-photo,
.showcase-banner-media img,
.about-main-image,
.about-story-main,
.contact-promo-visual img,
.case-card-home img {
  filter: saturate(0.95) contrast(1.04);
}

.hero-badge {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.stats-strip-card,
.showcase-mini-card,
.process-card,
.catalog-card,
.contact-promo-form,
.contact-promo-visual,
.team-card-home,
.testimonial-card-home,
.pricing-card-home,
.numbers-band-card,
.case-card-home,
.review-pill,
.floating-note,
.promo-visual-note,
.about-story-float,
.about-value-card,
.about-process-card,
.about-team-card,
.about-proof-quote,
.about-proof-panel,
.services-stat-card,
.services-teaser-card,
.service-detail-card,
.services-process-card,
.services-price-card,
.contact-panel-form,
.branch-card,
.footer-newsletter-card {
  border: 1px solid rgba(66, 48, 34, 0.08);
  background: rgba(255, 250, 246, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.stats-strip-card,
.showcase-mini-card,
.catalog-card,
.team-card-home,
.pricing-card-home,
.case-card-home,
.about-value-card,
.about-process-card,
.about-team-card,
.service-detail-card,
.services-process-card,
.services-price-card,
.branch-card {
  border-radius: 28px;
}

.stats-strip-card strong,
.stats-strip-card p,
.showcase-mini-card h3,
.showcase-mini-card p,
.catalog-card h3,
.catalog-card-copy p,
.team-card-home h3,
.team-card-home p,
.pricing-card-home h3,
.pricing-card-home li,
.case-card-home h3,
.case-card-home p,
.about-story-points strong,
.about-story-points p,
.about-value-card h3,
.about-value-card p,
.about-process-card h3,
.about-process-card p,
.about-team-card h3,
.about-team-card p,
.about-proof-list strong,
.about-proof-list p,
.service-detail-card h3,
.service-detail-card p,
.services-process-card h3,
.services-process-card p,
.services-price-card h3,
.services-price-card p,
.services-price-card li,
.branch-card h3,
.branch-card p,
.contact-sidebar h2,
.contact-sidebar-copy,
.contact-info-item h3,
.contact-info-item p,
.contact-panel-form h2,
.contact-panel-grid span,
.contact-consent span {
  color: #2b211b;
}

.stats-strip-card p,
.showcase-mini-card p,
.catalog-card-copy p,
.team-card-home p,
.pricing-card-home li,
.case-card-home p,
.about-story-points p,
.about-value-card p,
.about-process-card p,
.about-team-card p,
.about-proof-list p,
.service-detail-card p,
.services-process-card p,
.services-price-card p,
.branch-card p,
.contact-sidebar-copy,
.contact-info-item p,
.contact-branches-copy,
.lead-copy {
  color: #65574b;
}

.pricing-card-home.featured,
.services-teaser-card-primary,
.services-teaser-card-dark,
.services-price-card.featured,
.numbers-band-card,
.process-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #2e2118 0%, #1a1411 100%);
  border-color: rgba(240, 162, 80, 0.14);
}

.pricing-card-home.featured h3,
.pricing-card-home.featured li,
.pricing-card-home.featured .plan-label,
.pricing-card-home.featured h3,
.pricing-card-home.featured li,
.pricing-card-home.featured .plan-label,
.process-card h3,
.process-card p,
.process-index,
.services-teaser-card-primary h2,
.services-teaser-card-primary p,
.services-teaser-card-dark h2,
.services-teaser-card-dark p,
.services-price-card.featured h3,
.services-price-card.featured p,
.services-price-card.featured li,
.numbers-band-card strong,
.numbers-band-card span {
  color: #fff7f0;
}

.stats-strip-icon,
.services-teaser-icon,
.service-detail-icon,
.about-value-icon,
.about-process-step,
.plan-chip,
.branch-label {
  background: rgba(225, 139, 53, 0.12);
  color: #b35f18;
}

.dark-chip,
.services-price-card.featured .plan-chip {
  background: rgba(255, 255, 255, 0.12);
  color: #ffe4c6;
}

.about-points article,
.about-story-points article,
.about-proof-list article,
.stack-list article,
.timeline article {
  border-left-color: #d87a26;
  background: rgba(255, 249, 243, 0.88);
}

.contact-promo-form,
.contact-promo-visual,
.about-proof-panel,
.footer-newsletter-card {
  border-radius: 32px;
}

.section-heading h2,
.home-about-copy h2,
.contact-promo-form h2,
.about-story-copy h2,
.about-team-copy h2,
.about-proof-quote h2,
.services-cta-copy h2,
.contact-banner-content h1,
.about-banner-content h1,
.services-banner-content h1 {
  color: #241b16;
  max-width: 16ch;
}

.home-showcase-section .section-heading h2,
.process-home-section .section-heading h2,
.testimonials-home-section .section-heading h2,
.numbers-band .section-heading h2,
.footer-newsletter-copy h2,
.services-banner-content h1,
.about-banner-content h1,
.contact-banner-content h1 {
  color: #fff7f0;
}

.eyebrow,
.footer-light-eyebrow {
  color: #cb721f;
  letter-spacing: 0.16em;
}

.footer-light-eyebrow,
.services-banner-content .eyebrow {
  color: rgba(255, 220, 187, 0.8);
}

.services-marquee-band {
  background: transparent;
  border-top: 1px solid rgba(225, 139, 53, 0.12);
  border-bottom: 1px solid rgba(225, 139, 53, 0.12);
}

.services-marquee-track {
  color: #aa6221;
}

.contact-breadcrumb {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 194, 137, 0.18);
  color: #ffe6cb;
}

.contact-panel-grid input,
.contact-panel-grid select,
.contact-panel-grid textarea,
.promo-form input,
.promo-form textarea,
.footer-newsletter-form,
.footer-newsletter-form input {
  border-color: rgba(79, 57, 40, 0.08);
}

.contact-panel-grid input,
.contact-panel-grid select,
.contact-panel-grid textarea,
.promo-form input,
.promo-form textarea {
  background: rgba(255, 255, 255, 0.76);
  color: #261d18;
  border-radius: 18px;
}

.contact-panel-grid input:focus,
.contact-panel-grid select:focus,
.contact-panel-grid textarea:focus,
.promo-form input:focus,
.promo-form textarea:focus {
  border-color: rgba(225, 139, 53, 0.36);
  box-shadow: 0 0 0 4px rgba(225, 139, 53, 0.12);
}

.contact-map-frame {
  border: 1px solid rgba(74, 54, 38, 0.08);
  border-radius: 28px;
  overflow: hidden;
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.footer-newsletter-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(135deg, #2d211a 0%, #1a1411 100%);
  border-color: rgba(255, 194, 137, 0.14);
}

.footer-newsletter-form {
  background: rgba(255, 249, 243, 0.9);
}

.footer-newsletter-form input {
  color: #261d18;
}

.footer-main-wrap {
  margin-top: -2.5rem;
}

.footer-rich-grid {
  gap: 2.5rem;
}

.footer-brand-column {
  padding-right: 1.8rem;
  border-right-color: rgba(255, 207, 160, 0.16);
}

.footer-logo {
  display: inline-flex;
  padding: 1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255, 248, 241, 0.92);
}

.footer-logo img {
  filter: none;
  height: 2.9rem;
}

.footer-contact-block span,
.footer-blog-item span,
.footer-bottom-bar p {
  color: rgba(255, 232, 208, 0.6);
}

.footer-link-column a,
.footer-blog-item a,
.footer-bottom-links a,
.footer-contact-block a,
.footer-link-column h3,
.footer-blog-column h3 {
  color: #fff4ea;
}

.footer-scrolltop {
  background: linear-gradient(135deg, #f0a250, #cf711f);
  color: #fff7f0;
}

/* ThinkdIT logo color correction */
:root {
  --brand-amber: #d9791f;
  --brand-amber-soft: #f09a3e;
  --brand-amber-deep: #b96413;
  --brand-graphite: #2d3137;
  --brand-graphite-deep: #1f2328;
  --brand-ivory: #fbf7f2;
}

body {
  color: var(--brand-graphite);
  background:
    radial-gradient(circle at top left, rgba(217, 121, 31, 0.12), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(45, 49, 55, 0.1), transparent 26%),
    linear-gradient(180deg, #fbf7f2 0%, #f5efe8 52%, #efe7df 100%);
}

body::before {
  background: rgba(217, 121, 31, 0.18);
}

body::after {
  background: rgba(45, 49, 55, 0.09);
}

.topbar {
  background: linear-gradient(120deg, var(--brand-graphite-deep) 0%, var(--brand-graphite) 58%, var(--brand-amber-soft) 58%, var(--brand-amber) 100%);
}

.mainbar {
  background: rgba(251, 247, 242, 0.78);
}

.site-nav a {
  color: var(--brand-graphite);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--brand-amber);
  background: rgba(217, 121, 31, 0.1);
}

.icon-button {
  color: var(--brand-graphite);
}

.nav-toggle {
  border-color: rgba(217, 121, 31, 0.2);
}

.nav-toggle span,
.grid-button span {
  background: var(--brand-amber);
}

.header-cta,
.button-primary,
.services-inline-button,
.footer-newsletter-form button,
.footer-scrolltop {
  background: linear-gradient(135deg, var(--brand-amber-soft) 0%, var(--brand-amber) 100%);
}

.cta-arrow {
  color: var(--brand-amber);
}

.hero-reference-copy,
.hero-reference-media,
.showcase-banner,
.home-showcase-section,
.process-home-section,
.testimonials-home-section,
.numbers-band,
.dark-band,
.site-footer-rich,
.footer-main-wrap,
.about-banner-inner,
.services-banner-inner,
.contact-banner-inner,
.pricing-card-home.featured,
.services-teaser-card-primary,
.services-teaser-card-dark,
.services-price-card.featured,
.process-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), transparent 30%),
    linear-gradient(135deg, var(--brand-graphite-deep) 0%, var(--brand-graphite) 52%, #181b20 100%);
}

.hero-chip,
.stats-strip-icon,
.services-teaser-icon,
.service-detail-icon,
.about-value-icon,
.about-process-step,
.plan-chip,
.branch-label {
  color: var(--brand-amber);
}

.hero-chip {
  background: rgba(217, 121, 31, 0.12);
  border-color: rgba(217, 121, 31, 0.24);
}

.hero-chip::before {
  background: var(--brand-amber);
  box-shadow: 0 0 0 0.28rem rgba(217, 121, 31, 0.14);
}

.hero-index {
  color: rgba(240, 154, 62, 0.12);
}

.eyebrow,
.footer-light-eyebrow,
.services-marquee-track,
.services-card-arrow {
  color: var(--brand-amber);
}

.services-card-arrow {
  background: var(--brand-ivory);
}

.stats-strip-card,
.showcase-mini-card,
.catalog-card,
.contact-promo-form,
.contact-promo-visual,
.team-card-home,
.testimonial-card-home,
.pricing-card-home,
.case-card-home,
.review-pill,
.floating-note,
.promo-visual-note,
.about-story-float,
.about-value-card,
.about-process-card,
.about-team-card,
.about-proof-quote,
.about-proof-panel,
.services-stat-card,
.service-detail-card,
.services-process-card,
.services-price-card,
.contact-panel-form,
.branch-card,
.footer-newsletter-card {
  background: rgba(251, 247, 242, 0.76);
}

.section-heading h2,
.home-about-copy h2,
.contact-promo-form h2,
.about-story-copy h2,
.about-team-copy h2,
.about-proof-quote h2,
.services-cta-copy h2,
.stats-strip-card strong,
.showcase-mini-card h3,
.catalog-card h3,
.team-card-home h3,
.pricing-card-home h3,
.case-card-home h3,
.about-story-points strong,
.about-value-card h3,
.about-process-card h3,
.about-team-card h3,
.about-proof-list strong,
.service-detail-card h3,
.services-process-card h3,
.services-price-card h3,
.branch-card h3,
.contact-sidebar h2,
.contact-info-item h3,
.contact-panel-form h2 {
  color: var(--brand-graphite);
}

.lead-copy,
.stats-strip-card p,
.showcase-mini-card p,
.catalog-card-copy p,
.team-card-home p,
.pricing-card-home li,
.case-card-home p,
.about-story-points p,
.about-value-card p,
.about-process-card p,
.about-team-card p,
.about-proof-list p,
.service-detail-card p,
.services-process-card p,
.services-price-card p,
.branch-card p,
.contact-sidebar-copy,
.contact-info-item p,
.contact-branches-copy,
.contact-panel-grid span,
.contact-consent span {
  color: #696a70;
}

.about-points article,
.about-story-points article,
.about-proof-list article,
.stack-list article,
.timeline article {
  border-left-color: var(--brand-amber);
}

.contact-panel-grid input,
.contact-panel-grid select,
.contact-panel-grid textarea,
.promo-form input,
.promo-form textarea,
.footer-newsletter-form {
  border-color: rgba(45, 49, 55, 0.08);
}

.contact-panel-grid input:focus,
.contact-panel-grid select:focus,
.contact-panel-grid textarea:focus,
.promo-form input:focus,
.promo-form textarea:focus {
  border-color: rgba(217, 121, 31, 0.34);
  box-shadow: 0 0 0 4px rgba(217, 121, 31, 0.1);
}

.footer-logo {
  background: rgba(251, 247, 242, 0.96);
}
  margin: 1rem 0 0;
  max-width: 30rem;
  color: #6b6259;
  line-height: 1.8;
}

.contact-info-list {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(45,49,55,0.08);
}

.contact-info-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f09a3e, #d9791f);
  color: #ffffff;
}

.contact-info-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-info-item h3 {
  margin: 0 0 0.35rem;
  color: #2d3137;
  font-size: 1.3rem;
}

.contact-info-item p,
.branch-card p {
  margin: 0;
  color: #7a7168;
  line-height: 1.8;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social-links a {
  color: #2d3137;
  font-weight: 600;
}

.contact-panel-form {
  padding: 2.25rem;
}

.contact-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-panel-grid label,
.contact-consent {
  display: grid;
  gap: 0.45rem;
}

.contact-panel-grid span,
.contact-consent span {
  color: #847b72;
  font-size: 0.9rem;
}

.contact-panel-grid input,
.contact-panel-grid select,
.contact-panel-grid textarea {
  width: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(45,49,55,0.08);
  border-radius: 999px;
  background: #fbf7f2;
  color: #2d3137;
  outline: none;
}

.contact-panel-grid textarea {
  border-radius: 1.45rem;
  resize: vertical;
}

.contact-panel-grid input:focus,
.contact-panel-grid select:focus,
.contact-panel-grid textarea:focus {
  border-color: #d9791f;
  box-shadow: 0 0 0 3px rgba(217, 121, 31, 0.1);
}

.contact-consent {
  grid-template-columns: auto 1fr;
  align-items: center;
  margin-top: 1rem;
}

.contact-consent input {
  width: 1rem;
  height: 1rem;
  margin: 0;
}

.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.contact-form-actions .form-message {
  margin: 0;
}

.contact-map-section {
  background: #fbf7f2;
  padding-bottom: 4.5rem;
}

.contact-map-frame {
  overflow: hidden;
  min-height: 27rem;
  border-top: 1px solid rgba(45,49,55,0.06);
  border-bottom: 1px solid rgba(45,49,55,0.06);
}

.contact-map-frame iframe {
  width: 100%;
  height: 27rem;
  border: 0;
}

.contact-branches-section .section-heading h2 {
  max-width: none;
}

.contact-branches-section .section-heading p + h2 {
  margin-inline: 0;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.branch-card {
  padding: 2rem 1.4rem;
  text-align: center;
}

.branch-image-ring {
  width: 12.5rem;
  height: 12.5rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.4rem;
  border-radius: 50%;
  border: 2px dashed #d9791f;
}

.branch-image-ring img {
  width: 10.8rem;
  height: 10.8rem;
  border-radius: 50%;
  object-fit: cover;
}

.branch-card h3 {
  font-size: 1.8rem;
}

.branch-label {
  display: inline-flex;
  margin: 0.45rem 0 1.15rem;
  color: #d9791f;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.about-banner-section,
.about-story-section,
.about-values-section,
.about-team-section,
.about-proof-section {
  background: #fbf7f2;
}

.about-banner-inner {
  min-height: 14.2rem;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(217, 121, 31, 0.45), transparent 26%),
    linear-gradient(rgba(31, 35, 40, 0.76), rgba(31, 35, 40, 0.76)),
    url("https://images.pexels.com/photos/7581127/pexels-photo-7581127.jpeg?auto=compress&cs=tinysrgb&w=1400") center/cover no-repeat;
  background-attachment: scroll;
}

.about-banner-content {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 3rem 0;
  text-align: center;
}

.about-banner-content h1,
.about-story-copy h2,
.about-process-heading h2,
.about-team-copy h2,
.about-proof-quote h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.about-banner-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #ffffff;
}

.about-story-section,
.about-values-section,
.about-process-section,
.about-team-section,
.about-proof-section {
  padding: 4.8rem 0;
}

.about-story-grid,
.about-team-grid,
.about-proof-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-story-grid,
.about-team-grid,
.about-proof-grid {
  grid-template-columns: 1fr 1fr;
}

.about-story-image-wrap {
  position: relative;
  padding-right: 1rem;
}

.about-story-main {
  width: 100%;
  min-height: 35rem;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 22px 60px rgba(45, 49, 55, 0.08);
}

.about-story-float,
.about-value-card,
.about-process-card,
.about-team-card,
.about-proof-quote,
.about-proof-panel {
  border-radius: 2rem;
  box-shadow: 0 22px 60px rgba(45, 49, 55, 0.08);
}

.about-story-float {
  position: absolute;
  right: 0;
  bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  max-width: 18rem;
  padding: 1rem;
  background: #fbf7f2;
}

.about-story-float img,
.about-team-card img,
.about-proof-person img {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: cover;
  border-radius: 50%;
}

.about-story-copy h2,
.about-team-copy h2,
.about-proof-quote h2 {
  color: #2d3137;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.about-story-points,
.about-proof-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.6rem;
}

.about-story-points article,
.about-proof-list article {
  padding: 1rem 1.15rem;
  border-left: 3px solid #d9791f;
  background: #fbf7f2;
  border-radius: 0 1rem 1rem 0;
}

.about-story-points strong,
.about-value-card h3,
.about-process-card h3,
.about-team-card h3,
.about-proof-list strong,
.about-proof-person strong {
  color: #2d3137;
  font-family: "Sora", sans-serif;
}

.about-story-points p,
.about-value-card p,
.about-process-card p,
.about-team-copy p,
.about-team-card p,
.about-proof-quote p,
.about-proof-list p,
.about-proof-person span,
.about-story-float p,
.about-story-copy .lead-copy {
  color: #6b6259;
  line-height: 1.75;
}

.about-story-stats,
.about-values-grid,
.about-process-grid,
.about-team-cards {
  display: grid;
  gap: 1.25rem;
}

.about-story-stats,
.about-values-grid,
.about-team-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-story-stats article,
.about-value-card,
.about-team-card {
  padding: 1.5rem;
  background: #fbf7f2;
}

.about-story-stats strong {
  display: block;
  color: #2d3137;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.about-story-stats span {
  color: #7a7168;
}

.about-value-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(217,121,31,0.06);
  color: #d9791f;
  font-weight: 700;
}

.about-process-section {
  background: #2d3137;
}

.about-process-heading {
  text-align: center;
}

.about-process-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  text-transform: uppercase;
  color: #ffffff;
}

.about-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2rem;
}

.about-process-card {
  padding: 1.55rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-process-step,
.about-process-card h3,
.about-process-card p {
  color: #ffffff;
}

.about-process-step {
  display: inline-flex;
  margin-bottom: 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
}

.about-team-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-team-card {
  padding: 1.4rem;
  background: #fbf7f2;
  text-align: center;
}

.about-team-card img {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1rem;
}

.about-proof-quote,
.about-proof-panel {
  padding: 2rem;
  background: #fbf7f2;
}

.about-proof-person {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.services-banner-section,
.services-grid-section,
.services-pricing-section,
.services-cta-section {
  background: #fbf7f2;
}

.services-banner-inner {
  min-height: 14.2rem;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 50% 100%, rgba(217, 121, 31, 0.45), transparent 26%),
    linear-gradient(rgba(31, 35, 40, 0.76), rgba(31, 35, 40, 0.76)),
    url("https://images.pexels.com/photos/7581110/pexels-photo-7581110.jpeg?auto=compress&cs=tinysrgb&w=1400") center/cover no-repeat;
  background-attachment: scroll;
}

.services-banner-content {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  padding: 3rem 0;
  text-align: center;
}

.services-banner-content h1,
.services-process-heading h2,
.services-cta-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.services-banner-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  color: #ffffff;
}

.services-highlights-section {
  background: #fbf7f2;
  padding: 2.5rem 0 3rem;
}

.services-highlights-grid,
.services-cards-grid,
.services-process-grid,
.services-pricing-grid,
.services-cta-grid {
  display: grid;
  gap: 1.6rem;
}

.services-highlights-grid {
  grid-template-columns: 0.95fr 1fr 1fr;
}

.services-stat-card,
.services-teaser-card,
.service-detail-card,
.services-process-card,
.services-price-card,
.services-cta-copy,
.services-cta-visual {
  border-radius: 2rem;
  box-shadow: 0 22px 60px rgba(45, 49, 55, 0.08);
}

.services-stat-card {
  padding: 2rem;
  background: #efe7dd;
  color: #2d3137;
}

.services-stat-avatars {
  display: flex;
  align-items: center;
}

.services-stat-avatars img,
.services-avatar-cluster img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
}

.services-stat-avatars img + img,
.services-avatar-cluster img + img {
  margin-left: -0.8rem;
}

.services-stat-avatars span {
  width: 3.6rem;
  height: 3.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -0.8rem;
  border-radius: 50%;
  background: #d9791f;
  color: #ffffff;
  font-weight: 700;
  border: 3px solid #ffffff;
}

.services-stat-card strong {
  display: block;
  margin-top: 2rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 5vw, 4.6rem);
}

.services-stat-card p,
.services-teaser-card p,
.service-detail-card p,
.services-process-card p,
.services-price-card p,
.services-price-card li,
.services-cta-copy p {
  color: #6b6259;
  line-height: 1.75;
}

.services-inline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: #2d3137;
  color: #ffffff;
  font-weight: 700;
}

.services-inline-button.light {
  background: #faf6f1;
  color: #2d3137;
  border: 1px solid rgba(217,121,31,0.14);
}

.services-teaser-card {
  position: relative;
  padding: 2rem;
  color: #ffffff;
}

.services-teaser-card-primary {
  background: #d9791f;
}

.services-teaser-card-dark {
  background: #2d3137;
}

.services-card-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 4.2rem;
  height: 4.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 2rem 0 2rem;
  background: #fbf7f2;
  color: #d9791f;
  font-size: 1.8rem;
}

.services-teaser-icon {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  color: #ffffff;
}

.services-teaser-icon svg {
  width: 2.2rem;
  height: 2.2rem;
}

.services-teaser-card h2,
.service-detail-card h3,
.services-process-card h3,
.services-price-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #2d3137;
}

.services-teaser-card h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #ffffff;
}

.services-cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.service-detail-card {
  padding: 2rem 1.6rem;
  background: #fbf7f2;
  text-align: center;
}

.service-detail-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff5ff, #ffffff);
  color: #d9791f;
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  border: 1px solid rgba(217,121,31,0.12);
}

.service-detail-icon.small {
  width: 3rem;
  height: 3rem;
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.service-detail-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: #2d3137;
  font-weight: 700;
}

.services-marquee-band {
  overflow: hidden;
  background: #d9791f;
  padding: 0.95rem 0;
}

.services-marquee-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  color: #ffffff;
  text-transform: capitalize;
  font-weight: 700;
  animation: services-marquee 18s linear infinite;
}

.services-marquee-track span::before {
  content: "*";
  margin-right: 0.8rem;
}

@keyframes services-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

.services-process-section {
  background: #2d3137;
  padding: 4.8rem 0;
}

.services-process-heading {
  text-align: center;
}

.services-process-heading h2 {
  font-size: clamp(3.5rem, 7vw, 6rem);
  text-transform: uppercase;
  color: #ffffff;
}

.services-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.7rem;
  color: #d9c4ab;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.services-process-track span {
  position: relative;
  text-align: center;
}

.services-process-track span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.75rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: #d9791f;
  transform: translateX(-50%);
}

.services-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-process-card {
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.services-process-card h3,
.services-process-card p {
  color: #ffffff;
}

.services-pricing-section {
  padding: 4.8rem 0;
}

.services-pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.services-price-card {
  padding: 2rem 1.5rem;
  background: #fbf7f2;
  border-radius: 2rem;
  border: 1px solid rgba(217,121,31,0.14);
  box-shadow: 0 18px 48px rgba(45, 49, 55, 0.08);
}

.services-price-card.featured {
  background: #2d3137;
  transform: translateY(-0.4rem);
}

.plan-chip {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(217,121,31,0.06);
  color: #d9791f;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dark-chip {
  background: #d9791f;
  color: #ffffff;
}

.services-price-card h3 {
  margin-top: 1rem;
  font-size: 2.4rem;
  color: #2d3137;
}

.services-price-card h3 small {
  font-size: 1rem;
  color: #847b72;
}

.services-price-card.featured h3,
.services-price-card.featured h3 small,
.services-price-card.featured p,
.services-price-card.featured li {
  color: #ffffff;
}

.services-price-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.4rem 0 0;
  padding-left: 1.15rem;
}

.services-cta-section {
  padding: 4rem 0 5rem;
}

.services-cta-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.services-cta-copy {
  padding: 2rem 0;
  box-shadow: none;
  background: transparent;
}

.services-cta-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: #2d3137;
}

.services-cta-visual {
  position: relative;
  min-height: 20rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(217, 121, 31, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(217, 121, 31, 0.06) 1px, transparent 1px);
  background-size: 3rem 3rem;
}

.services-avatar-cluster {
  display: grid;
  grid-template-columns: repeat(3, 5.5rem);
  grid-template-rows: repeat(2, 5.5rem);
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.services-avatar-cluster img {
  width: 5rem;
  height: 5rem;
  margin: 0;
}

.services-avatar-badge {
  width: 5.1rem;
  height: 5.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #d9791f;
  color: #ffffff;
  font-size: 2rem;
  border: 4px solid #fbf7f2;
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   Responsive Breakpoints (descending)
   ═══════════════════════════════════════ */

/* ── 1100px: Tablet landscape ── */
@media (max-width: 1100px) {
  .hero-reference-shell,
  .home-about-grid,
  .contact-promo-shell,
  .about-story-grid,
  .about-team-grid,
  .about-proof-grid,
  .contact-main-grid,
  .services-cta-grid {
    grid-template-columns: 1fr;
  }

  .showcase-intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .showcase-intro-media img {
    height: 22rem;
  }

  .showcase-intro-tag {
    left: 1rem;
  }

  .hero-reference-copy {
    clip-path: none;
    padding: 4rem 2rem 3rem;
  }

  .hero-reference-media,
  .hero-reference-shell {
    min-height: 0;
  }

  .catalog-grid,
  .process-cards-grid,
  .team-grid-home,
  .testimonials-grid-home,
  .pricing-grid-home,
  .numbers-band-grid,
  .case-grid-home,
  .about-values-grid,
  .about-process-grid,
  .services-cards-grid,
  .services-process-grid,
  .services-pricing-grid,
  .branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-rich-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ── 980px: Tablet portrait / mobile nav ── */
@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  /* Mobile navigation */
  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid rgba(217, 121, 31, 0.12);
    border-radius: 1.25rem;
    background: #fbf7f2;
    box-shadow: 0 18px 40px rgba(9, 21, 47, 0.12);
    z-index: 100;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    display: none;
  }

  /* Grid collapses */
  .hero-reference-shell {
    grid-template-columns: 1fr;
  }

  .hero-reference-copy,
  .hero-reference-media {
    min-height: auto;
  }

  .hero-reference-copy {
    padding: 3.4rem 1.4rem 3rem;
  }

  .hero-reference-media {
    min-height: 24rem;
  }

  .hero-index {
    left: 1.2rem;
    top: 8rem;
    font-size: 7rem;
  }

  .hero-grid,
  .split-layout,
  .story-grid,
  .contact-grid,
  .panel-grid,
  .showcase-grid,
  .two-column-balance,
  .three-col,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .stats-strip-grid,
  .home-about-grid,
  .showcase-intro-grid,
  .showcase-cards-row,
  .process-cards-grid,
  .catalog-grid,
  .contact-promo-shell,
  .team-grid-home,
  .testimonials-grid-home,
  .pricing-grid-home,
  .numbers-band-grid,
  .case-grid-home,
  .process-track {
    grid-template-columns: 1fr;
  }

  .about-story-grid,
  .about-team-grid,
  .about-proof-grid,
  .about-story-stats,
  .about-values-grid,
  .about-process-grid,
  .about-team-cards {
    grid-template-columns: 1fr;
  }


  .services-highlights-grid,
  .services-cards-grid,
  .services-process-grid,
  .services-pricing-grid,
  .services-cta-grid,
  .services-process-track {
    grid-template-columns: 1fr;
  }

  .contact-main-grid,
  .branch-grid,
  .contact-panel-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter-card,
  .footer-rich-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand-column {
    padding-right: 0;
    border-right: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  /* Card padding reductions */

  .about-banner-inner {
    min-height: 11rem;
  }

  .services-banner-inner {
    min-height: 11rem;
  }


  .contact-banner-inner {
    min-height: 11rem;
  }

  .about-story-main {
    min-height: 24rem;
  }

  .about-story-float {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .about-value-card,
  .about-process-card,
  .about-team-card,
  .about-proof-quote,
  .about-proof-panel {
    padding: 1.5rem;
  }




  .services-stat-card,
  .services-teaser-card,
  .service-detail-card,
  .services-process-card,
  .services-price-card {
    padding: 1.5rem;
  }

  .contact-banner-inner {
    min-height: 11rem;
  }

  .contact-panel-form {
    padding: 1.6rem;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 21rem;
    height: 21rem;
  }

  .hero-stats-strip {
    margin-top: 1.4rem;
  }

  .showcase-mini-card.light-card {
    grid-template-columns: 1fr;
  }

  .showcase-intro-grid {
    grid-template-columns: 1fr;
  }

  .showcase-cards-row {
    grid-template-columns: 1fr;
  }

  .showcase-intro-tag {
    width: 7rem;
    height: 7rem;
    left: 0.8rem;
    bottom: 1.2rem;
  }

  .showcase-intro-tag strong {
    font-size: 1.8rem;
  }

  .footer-newsletter-figure {
    width: 8rem;
  }

  .footer-newsletter-copy h2 {
    max-width: none;
  }

  .footer-newsletter-form {
    width: 100%;
  }

  .footer-main-wrap {
    margin-top: -1rem;
    padding-top: 5rem;
  }


  .about-main-image,
  .contact-promo-visual img {
    min-height: 22rem;
  }

  .floating-note,
  .promo-visual-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .contact-form-actions {
    align-items: stretch;
  }

  .services-cta-copy {
    padding-bottom: 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* ── 768px: Large phone / small tablet ── */
@media (max-width: 768px) {
  .nav-wrap {
    padding: 0.8rem 1rem;
  }

  .hero-reference {
    padding-top: 1rem;
  }

  .hero-reference-copy h1,
  .about-story-copy h2,
  .about-team-copy h2,
  .about-proof-quote h2,
  .contact-sidebar h2,
  .section-heading h2 {
    max-width: none;
  }

  .catalog-grid,
  .process-cards-grid,
  .team-grid-home,
  .testimonials-grid-home,
  .pricing-grid-home,
  .numbers-band-grid,
  .case-grid-home,
  .about-values-grid,
  .about-process-grid,
  .services-highlights-grid,
  .services-cards-grid,
  .services-process-grid,
  .services-pricing-grid,
  .branch-grid,
  .footer-rich-grid,
  .contact-panel-grid,
  .footer-newsletter-card {
    grid-template-columns: 1fr;
  }
}

/* ── 640px: Phone ── */
@media (max-width: 640px) {
  .section {
    padding: 3rem 0;
  }

  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-reference-copy h1 {
    font-size: 2.4rem;
  }

  .hero-reference-copy {
    padding: 2.5rem 1rem 2rem;
  }

  .hero-chip {
    font-size: 0.76rem;
    padding: 0.72rem 1rem;
  }

  .hero-index {
    font-size: 5.5rem;
    top: 8.7rem;
  }

  .about-banner-inner,
  .services-banner-inner,
  .contact-banner-inner {
    min-height: 9rem;
  }


  .about-banner-content h1,
  .about-process-heading h2 {
    font-size: 2.2rem;
  }

  .services-banner-content h1,
  .services-process-heading h2 {
    font-size: 2.2rem;
  }

  .contact-banner-content h1 {
    font-size: 2.2rem;
  }


  .about-team-copy h2,
  .about-proof-quote h2,
  .about-story-copy h2 {
    font-size: 1.8rem;
  }

  .stats-strip-card,
  .process-card,
  .catalog-card-copy,
  .team-card-home,
  .testimonial-card-home,
  .pricing-card-home,
  .case-card-home,
  .contact-promo-form,
  .contact-promo-visual {
    padding: 1.1rem;
  }

  .about-actions {
    align-items: stretch;
  }

  .review-pill,
  .floating-note,
  .promo-visual-note {
    width: 100%;
  }

  .contact-main-section,
  .contact-branches-section,
  .contact-map-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .about-story-section,
  .about-values-section,
  .about-process-section,
  .about-team-section,
  .about-proof-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .services-highlights-section,
  .services-grid-section,
  .services-process-section,
  .services-pricing-section,
  .services-cta-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }


  .contact-panel-form,
  .branch-card {
    padding: 1.2rem;
  }

  .about-story-stats article,
  .about-value-card,
  .about-team-card,
  .about-proof-quote,
  .about-proof-panel {
    padding: 1.2rem;
  }


  .services-card-arrow {
    width: 3.3rem;
    height: 3.3rem;
    font-size: 1.35rem;
  }

  .services-teaser-card h2,
  .services-cta-copy h2,
  .services-price-card h3 {
    font-size: 1.8rem;
  }

  .services-avatar-cluster {
    grid-template-columns: repeat(3, 4.3rem);
    grid-template-rows: repeat(2, 4.3rem);
    gap: 0.8rem;
  }

  .services-avatar-cluster img,
  .services-avatar-badge {
    width: 4rem;
    height: 4rem;
  }

  .contact-breadcrumb {
    font-size: 0.85rem;
  }

  .contact-sidebar h2,
  .contact-panel-form h2,
  .branch-card h3 {
    font-size: 1.7rem;
  }

  .branch-image-ring {
    width: 10rem;
    height: 10rem;
  }

  .branch-image-ring img {
    width: 8.5rem;
    height: 8.5rem;
  }

  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 18rem;
    height: 18rem;
  }

  .footer-newsletter-wrap {
    padding-top: 1.25rem;
  }

  .footer-newsletter-card {
    gap: 1rem;
    border-radius: 1.4rem;
    padding: 1.2rem;
  }

  .footer-newsletter-card::before,
  .footer-newsletter-card::after {
    display: none;
  }

  .footer-newsletter-figure {
    width: 6rem;
  }

  .footer-newsletter-copy h2,
  .footer-link-column h3,
  .footer-blog-column h3 {
    font-size: 1.6rem;
  }

  .footer-newsletter-form {
    padding: 0.55rem 0.55rem 0.55rem 1rem;
  }

  .footer-newsletter-form input {
    font-size: 1rem;
  }

  .footer-newsletter-form button {
    width: 3.3rem;
    height: 3.3rem;
    font-size: 1.2rem;
  }

  .footer-blog-item {
    grid-template-columns: 1fr;
  }

  .footer-blog-item img {
    height: 11rem;
  }

  .footer-bottom-bar {
    flex-direction: column;
    align-items: flex-start;
  }


  .button {
    width: 100%;
  }

  .glass-card,
  .text-block,
  .feature-card,
  .pricing-card,
  .mini-card,
  .faq-item,
  .contact-form,
  .hero-metrics article {
    padding: 1.25rem;
  }

  .hero-reference-media {
    min-height: 18rem;
  }
}

/* ── 480px: Small phone ── */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 1rem);
  }

  .nav-wrap {
    padding: 0.6rem 0.5rem;
  }

  .brand-logo img {
    height: 2.4rem;
  }

  .nav-toggle {
    width: 2.6rem;
    height: 2.6rem;
  }

  .hero-reference-copy h1 {
    font-size: 2rem;
  }

  .hero-reference-copy {
    padding: 2rem 0.75rem 1.5rem;
  }

  .hero-chip {
    font-size: 0.7rem;
    padding: 0.6rem 0.8rem;
  }

  .hero-index {
    font-size: 4rem;
  }

  .hero-reference-media {
    min-height: 14rem;
  }

  .about-banner-inner,
  .services-banner-inner,
  .contact-banner-inner {
    min-height: 7.5rem;
  }


  .section-heading h2 {
    font-size: 1.6rem;
  }

  .footer-newsletter-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-newsletter-figure {
    display: none;
  }

  .footer-newsletter-copy h2 {
    font-size: 1.4rem;
  }

  .footer-newsletter-form {
    flex-direction: column;
    border-radius: 1rem;
    gap: 0.5rem;
  }

  .footer-newsletter-form button {
    width: 100%;
    border-radius: 999px;
    height: 3rem;
  }

  .services-teaser-card h2 {
    font-size: 1.5rem;
    max-width: none;
  }

  .about-banner-content h1,
  .services-banner-content h1,
  .contact-banner-content h1 {
    font-size: 1.8rem;
  }

  .eyebrow {
    font-size: 0.7rem;
  }
}

/* ─── Hero Entrance Animations ─── */

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(-50px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes heroScaleIn {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes heroBadgeDrop {
  from { opacity: 0; transform: translateY(-30px) rotate(-12deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

@keyframes heroChipSlide {
  from { opacity: 0; transform: translateX(-30px) scale(0.92); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes heroPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(217, 121, 31, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(217, 121, 31, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 121, 31, 0); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.55; }
  50%      { opacity: 0.85; }
}

@keyframes heroTagFade {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroShimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

/* Apply animations to hero elements */

.hero-reference-copy.is-visible .hero-chip {
  animation: heroChipSlide 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
             heroPulseRing 2.4s ease-out 1.6s infinite;
}

.hero-reference-copy.is-visible .hero-index {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0s both;
}

.hero-reference-copy.is-visible h1 {
  animation: heroFadeRight 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-reference-copy.is-visible .lead {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-reference-copy.is-visible .hero-actions {
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.hero-reference-copy.is-visible .hero-inline-points span {
  animation: heroTagFade 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-reference-copy.is-visible .hero-inline-points span:nth-child(1) { animation-delay: 0.75s; }
.hero-reference-copy.is-visible .hero-inline-points span:nth-child(2) { animation-delay: 0.88s; }
.hero-reference-copy.is-visible .hero-inline-points span:nth-child(3) { animation-delay: 1.01s; }

.hero-reference-copy.is-visible::before {
  animation: heroGlow 4s ease-in-out infinite;
}

.hero-reference-media.is-visible .hero-reference-photo {
  animation: heroScaleIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-reference-media.is-visible .hero-badge {
  animation: heroBadgeDrop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both,
             heroFloat 3.5s ease-in-out 2s infinite;
}

/* Shimmer effect on hero CTA button */
.hero-cta {
  position: relative;
  overflow: hidden;
}
.hero-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  animation: heroShimmer 3.5s ease-in-out 2s infinite;
}

/* Hover lift on hero tags */
.hero-inline-points span {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.hero-inline-points span:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 121, 31, 0.4);
  background: rgba(217, 121, 31, 0.12);
}

/* Subtle parallax tilt on hero media hover */
.hero-reference-media {
  transition: transform 0.5s ease;
}
.hero-reference-shell:hover .hero-reference-media {
  transform: scale(1.012);
}
