:root {
  /* --ink:#181513; */
  --ink: #181513;
  --ink-soft: #2b2522;
  --red: #c8102e;
  --red-dark: #95081f;
  --off: #f6f1e7;
  --off-dim: #eae2d2;
  --grey: #7a7168;
  --white: #ffffff;
  --line: rgba(24, 21, 19, 0.12);
  --shadow: 0 20px 50px rgba(24, 21, 19, 0.18);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Work Sans", sans-serif;
  color: var(--ink);
  background: #f1f1f1;
  overflow-x: hidden;
}
h1,
h2,
h3,
.disp {
  font-family: 'Metropolis';
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.mono {
  font-family: "JetBrains Mono", monospace;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}
.btn-red {
  background: var(--red);
  color: var(--off);
}
.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(200, 16, 46, 0.35);
}
.btn-line {
  border-color: rgba(246, 241, 231, 0.4);
  color: var(--off);
}
.btn-line:hover {
  border-color: var(--off);
  background: rgba(246, 241, 231, 0.08);
  transform: translateY(-2px);
}
.btn-dark {
  border-color: var(--ink);
  color: var(--ink);
}
.btn-dark:hover {
  background: var(--ink);
  color: var(--off);
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  position: relative;
}
.logo-mark::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 10px;
  height: 10px;
  background: var(--red);
}
.logo-text {
  line-height: 1.1;
}
.logo-text b {
  font-family: "Metropolis", "Oswald", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.03em;
  display: block;
}
.logo-text span {
  font-family: "Work Sans", sans-serif;
  text-transform: none;
  font-size: 10.5px;
  color: var(--grey);
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  gap: 34px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: AdobeClean-Bold, sans-serif;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-phone svg {
  width: 15px;
  height: 15px;
  fill: var(--red);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ===== HERO (Z-diagonal layout) ===== */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--off);
  overflow: hidden;
  min-height: 920px;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  transform: scale(1);
  /* filter: grayscale(0.55) contrast(1.08) brightness(0.62); */
}
.hero-slide.active {
  opacity: 1;
  animation: heroZoom 7s ease-out forwards;
}
@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.active {
    animation: none;
  }
}
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 13, 12, 0.88) 0%,
    rgba(15, 13, 12, 0.55) 45%,
    rgba(15, 13, 12, 0.78) 100%
  );
}
.hero-dots {
  position: absolute;
  z-index: 5;
  right: 32px;
  top: 22%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(246, 241, 231, 0.6);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.hero-dots button.active {
  background: var(--off);
  transform: scale(1.3);
}

/* --- top photo band: headline + CTA --- */
.hero-top-content {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 32px 0;
}
.hero-text {
  max-width: 560px;
}
.hero-text h1 {
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  margin: 16px 0 16px;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--red);
}
.hero-text p {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(246, 241, 231, 0.8);
  max-width: 430px;
  margin-bottom: 22px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- black wedge band: icon strip (two straight diagonals, thin on the left, wide on the right — matches reference) --- */
.hero-zband {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: #1e1e1e;
  clip-path: polygon(0% 36%, 100% 15%, 100% 68%, 0% 54%);
}
.hero-icons-row {
  position: absolute;
  z-index: 4;
  left: none;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.hero-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 0 22px;
  flex: 1;
  min-width: 0;
}
.hero-icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(246, 241, 231, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
  flex-shrink: 0;
}
.hero-icon-item:hover .hero-icon-circle {
  border-color: var(--red);
  background: rgba(200, 16, 46, 0.12);
}
.hero-icon-circle svg {
  width: 20px;
  height: 20px;
  stroke: var(--off);
  fill: none;
  stroke-width: 1.6;
}
.hero-icon-item span {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.hero-whiteband {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1c1717e6 0%, #ffffff 100%);
  clip-path: polygon(0% 0%, 100% 0%, 100% 15%, 0% 36%);
}
/* --- red wedge band: secondary pitch + illustration (continues the same two diagonals downward) --- */
.hero-redband {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  clip-path: polygon(0% 54%, 100% 68%, 100% 100%, 0% 100%);
}
.hero-red-inner {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  top: 40%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}
.hero-red-inner h2 {
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero-red-inner p {
  font-size: 14px;
  color: rgba(246, 241, 231, 0.85);
  max-width: 380px;
}
.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-art svg {
  width: 100%;
  height: auto;
  max-width: 300px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.stat-strip {
  position: relative;
  z-index: 4;
  background: #ffffff;
  margin: 0 32px;
  transform: translateY(-56px);
  border-radius: 4px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1176px;
  margin-left: auto;
  margin-right: auto;
}
.stat-strip div {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.stat-strip div:last-child {
  border-right: none;
}
.stat-num {
  font-family: "Oswald", sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  color: var(--red);
}
.stat-label {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  font-family: "JetBrains Mono", monospace;
  margin-top: 6px;
}

/* ===== ICON DISCIPLINE ROW ===== */
.disciplines {
  padding: 20px 32px 70px;
  max-width: 1240px;
  margin: 0 auto;
}
.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}
.disc-item-new {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}
.disc-item-new:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}
.disc-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--off-dim);
}
.disc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.disc-item-new:hover .disc-img img {
  transform: scale(1.05);
}
.disc-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}
.disc-info span {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink);
  display: block;
}
.disc-info p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--grey);
}
.disc-btn {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-top: auto;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", sans-serif;
  color: var(--grey);
  background: var(--off-dim);
}

/* ===== ABOUT / SIGNATURE DIAGRAM SECTION ===== */
.studio {
  position: relative;
  background: var(--ink);
  color: var(--off);
  padding-top: 90px;
}
.studio-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--off);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}
.studio-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}
.studio-left h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.12;
  margin: 18px 0 20px;
}
.studio-left p {
  color: rgba(246, 241, 231, 0.75);
  line-height: 1.7;
  font-size: 15.5px;
  margin-bottom: 28px;
  max-width: 420px;
}
.studio-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 30px;
}
.studio-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: rgba(246, 241, 231, 0.85);
}
.studio-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--red);
  margin-top: 6px;
  flex-shrink: 0;
}

.diagram-wrap {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 6px;
  padding: 36px 28px 30px;
  position: relative;
}
.diagram-title {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.diagram-sub {
  font-size: 13px;
  color: rgba(246, 241, 231, 0.8);
  margin-bottom: 20px;
}
.diagram-svg-holder {
  width: 100%;
}
.diagram-svg-holder svg {
  width: 100%;
  height: auto;
}
.callout-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 10.5px;
  fill: var(--off);
}
.callout-label {
  font-family: "Oswald", monospace;
  font-size: 11.5px;
  font-weight: 600;
  fill: var(--off);
}

.studio-bottom-band {
  height: 60px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: 90px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  margin-top: 14px;
  max-width: 520px;
}
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gal-card {
  aspect-ratio: 4/3;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--off);
}
.gal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    200deg,
    rgba(24, 21, 19, 0.15),
    rgba(24, 21, 19, 0.75)
  );
}
.gal-card svg {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 28px;
  height: 28px;
  stroke: var(--off);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.85;
  z-index: 2;
}
.gal-card span {
  position: relative;
  z-index: 2;
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.g1 {
  background: linear-gradient(135deg, #3a2f2b, #181513);
}
.g2 {
  background: linear-gradient(135deg, var(--red), #5c0c1a);
}
.g3 {
  background: linear-gradient(135deg, #4a4640, #211d1a);
}
.g4 {
  background: linear-gradient(135deg, #6e1220, #181513);
}
.g5 {
  background: linear-gradient(135deg, #2c2723, #4a4038);
}
.g6 {
  background: linear-gradient(135deg, #b40d28, #2a0910);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--red);
  color: var(--off);
  padding: 70px 32px;
}
.cta-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  max-width: 560px;
  line-height: 1.15;
}
.cta-inner p {
  font-size: 14px;
  color: rgba(246, 241, 231, 0.85);
  margin-top: 10px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(246, 241, 231, 0.75);
  padding: 70px 32px 24px;
}
.foot-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(246, 241, 231, 0.12);
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.foot-brand p {
  font-size: 13.5px;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(246, 241, 231, 0.6);
  margin-bottom: 20px;
}
.foot-social {
  display: flex;
  gap: 12px;
}
.foot-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(246, 241, 231, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}
.foot-social a:hover {
  border-color: var(--red);
  background: var(--red);
}
.foot-social svg {
  width: 15px;
  height: 15px;
  fill: var(--off);
}
footer h4 {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off);
  margin-bottom: 18px;
}
footer ul li {
  margin-bottom: 11px;
  font-size: 13.5px;
}
footer ul li a:hover {
  color: var(--red);
}
.foot-bottom {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  font-size: 12px;
  color: rgba(246, 241, 231, 0.5);
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.foot-designer {
  display: block;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.foot-designer:hover {
  opacity: 1;
}
.foot-designer img {
  height: 25px;
  width: auto;
  display: block;
}

/* ===== MOBILE MENU ===== */
.mobile-panel {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: var(--ink);
  color: var(--off);
  z-index: 200;
  padding: 30px 28px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  flex-direction: column;
  gap: 26px;
}
.mobile-panel.open {
  transform: translateX(0);
}
.mobile-panel a {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.mobile-close {
  align-self: flex-end;
  font-size: 26px;
  cursor: pointer;
}
.scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 199;
}
.scrim.open {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero {
    min-height: 900px;
  }
  .hero-red-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    gap: 14px;
  }
  .hero-art {
    max-width: 220px;
  }
  .hero-icon-item span {
    display: none;
  }
  .studio-inner {
    grid-template-columns: 1fr;
  }
  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .disc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-phone {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-panel {
    display: flex;
  }
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-strip div {
    border-bottom: 1px solid var(--line);
  }
  .foot-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 1050px;
  }
  .hero-dots {
    display: none;
  }

  .hero-zband {
    clip-path: polygon(0% 32%, 100% 26%, 100% 58%, 0% 64%);
  }
  .hero-redband {
    clip-path: polygon(0% 64%, 100% 58%, 100% 100%, 0% 100%);
  }
  .hero-icons-row {
    top: 46%;
    flex-wrap: wrap;
    gap: 16px 6px;
  }
  .hero-icon-item {
    flex: 0 0 30%;
    padding: 0 4px;
  }
  .hero-icon-item span {
    display: block;
    font-size: 9.5px;
    white-space: normal;
  }
  .hero-red-inner {
    top: 70%;
  }
  .wrap,
  .disciplines,
  .studio-inner,
  .gallery,
  .cta-inner,
  .foot-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .disc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-grid {
    grid-template-columns: 1fr;
  }
  .stat-strip {
    margin: 0 20px;
    transform: translateY(-40px);
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .foot-inner {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== FAQ SECTION (Refined) ===== */
.faq-section {
  padding: 100px 32px;
  background: var(--ink);
  color: white;
  position: relative;
  overflow: hidden;
}
.faq-grid-new {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.faq-support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}
.faq-support-card::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--red);
  opacity: 0.1;
  filter: blur(40px);
  border-radius: 50%;
}
.faq-item-new {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 8px;
}
.faq-trigger-new {
  width: 100%;
  padding: 26px 0;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  color: white;
  transition: all 0.3s ease;
}
.faq-trigger-new:hover {
  color: var(--red);
}
.faq-trigger-new span {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.faq-icon-new {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);
}
.faq-item-new.active .faq-icon-new {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
  color: white;
}
.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0, 1, 0, 1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item-new.active .faq-answer-new {
  max-height: 500px;
  padding-bottom: 30px;
}

/* ===== TESTIMONIALS (GOOGLE STYLE REFINED) ===== */
.testimonials-new {
  padding: 100px 32px;
  background: #ffffff;
  color: #181513;
}
.reviews-swiper { padding: 40px 10px 80px !important; }
.review-card-new {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 380px;
  transition: all 0.3s ease;
  position: relative;
}
.review-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.12);
  border-color: #d1d5db;
}
.review-card-new.overview {
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #f9fafb;
}
.overview-google-logo {
  height: 34px;
  margin-bottom: 24px;
}
.brand-name-rev {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--ink);
}
.rating-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--ink);
}
.read-reviews {
  font-size: 14px;
  color: #64748b;
  margin: 12px 0 24px;
}
.write-btn-new {
  display: block;
  width: 100%;
  background: #000;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.3s;
}
.write-btn-new:hover {
  background: #222;
}

.rev-user-new { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.rev-avatar-new {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.rev-avatar-new img { width: 100%; height: 100%; object-fit: cover; }

.rev-info-new { flex: 1; }
.rev-info-new h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
  text-transform: none;
  color: var(--ink);
}
.rev-info-new span { font-size: 12px; color: #94a3b8; }
.google-icon-small {
  width: 18px;
  height: 18px;
  align-self: flex-start;
}

.rev-stars-new {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.rev-text-new {
  font-size: 14.5px;
  line-height: 1.7;
  color: #475569;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.rev-footer-new {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.view-google-new {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.view-google-new:hover { color: var(--red); }
.view-google-new img { width: 16px; height: 16px; }

.share-rev-btn {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 18px;
  transition: color 0.2s;
}
.share-rev-btn:hover { color: var(--ink); }

@media (max-width: 900px) {
  .faq-grid-new { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-new, .faq-section { padding-left: 20px; padding-right: 20px; }
}

/* ===== MULTI-PAGE ADDITIONS (page banner, active nav, quick-links, service detail, contact) ===== */

/* active nav state (reuses existing underline mechanic) */
.nav-links a.active,
.mobile-panel a.active {
  color: var(--red);
}
.nav-links a.active::after {
  width: 100%;
}

/* inner-page banner, echoes the hero's dark/red language at a smaller scale */
.page-banner {
  position: relative;
  background: var(--ink);
  color: var(--off);
  padding: 96px 32px 68px;
  overflow: hidden;
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
}
.page-banner .crumb {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: rgba(246, 241, 231, 0.55);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.page-banner .crumb a {
  color: rgba(246, 241, 231, 0.75);
}
.page-banner .crumb a:hover {
  color: var(--red);
}
.page-banner h1 {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.page-banner p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(246, 241, 231, 0.78);
  max-width: 540px;
}
.page-banner-accent {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-dark) 100%);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

/* quick-links (home page teaser cards to inner pages) */
.quick-links {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 32px 90px;
}
.ql-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 10px;
}
.ql-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 26px 22px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.ql-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
}
.ql-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--red);
  margin-bottom: 14px;
}
.ql-card h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.ql-card p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.55;
  margin-bottom: 14px;
}
.ql-arrow {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}
.ql-card:hover .ql-arrow {
  color: var(--red);
}

/* services page: expanded description under each discipline */
.disc-item.detailed {
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
.disc-item.detailed:hover {
  background: transparent;
  border-color: var(--red);
  transform: translateY(-4px);
}
.disc-item.detailed p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey);
}
.services-grid-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 32px 90px;
}
.services-grid-wrap .disc-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* contact page */
.contact-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 70px 32px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 20px 18px;
}
.contact-info-card .ci-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 8px;
}
.contact-info-card a,
.contact-info-card div.ci-value {
  font-family: "Oswald", sans-serif;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.5;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  margin-bottom: 6px;
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 14px;
  font-family: "Work Sans", sans-serif;
  font-size: 14px;
  background: var(--off);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-map {
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  display: block;
}
.contact-side h3 {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

@media (max-width: 1080px) {
  .ql-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-wrap .disc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .ql-grid {
    grid-template-columns: 1fr;
  }
  .services-grid-wrap .disc-grid {
    grid-template-columns: 1fr;
  }
  .page-banner {
    padding: 84px 20px 56px;
  }
}

/* Sticky Icons Left */
.sticky-icons-left {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.sticky-icon:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.sticky-icon.whatsapp {
    background-color: #25d366;
}

.sticky-icon.location {
    background-color: #ea4335; /* Google Maps Red */
}

@media (max-width: 768px) {
    .sticky-icons-left {
        left: 15px;
        bottom: 20px;
        gap: 10px;
    }
    .sticky-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}
.logo-text b {
    color: #c8102e!important;
}
