@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/sora-300.ttf') format('truetype');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/sora-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/sora-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-600.ttf') format('truetype');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora-700.ttf') format('truetype');
}

@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/teko-400.ttf') format('truetype');
}

@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/teko-500.ttf') format('truetype');
}

@font-face {
  font-family: 'Teko';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/teko-600.ttf') format('truetype');
}

:root {
  --bg: #010000;
  --panel: #010000;
  --panel-2: #010000;
  --graphite: #5b5655;
  --text: #f2f2f2;
  --muted: #5b5655;
  --accent: #d32a18;
  --accent-soft: rgba(211, 42, 24, 0.24);
  --line: rgba(255, 255, 255, 0.08);
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Sora', sans-serif;
}

body {
  background:
    radial-gradient(circle at 12% -10%, rgba(211, 42, 24, 0.18) 0, transparent 35%),
    radial-gradient(circle at 88% -30%, rgba(91, 86, 85, 0.22) 0, transparent 36%),
    linear-gradient(180deg, #010000 0%, #010000 45%, #010000 100%);
  min-height: 100vh;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  overflow: hidden;
  opacity: 1;
  visibility: visible;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
}

.intro-logo-shell {
  position: relative;
  width: min(620px, 86vw);
  display: grid;
  place-items: center;
  justify-items: center;
  text-align: center;
  row-gap: 0;
}

.intro-logo {
  width: min(520px, 78vw);
  height: auto;
  opacity: 0;
  transform: translate3d(-130vw, 0, 0) scale(0.72) rotate(-16deg);
  transform-origin: 50% 50%;
  backface-visibility: hidden;
  will-change: transform, opacity;
  image-rendering: auto;
}

.intro-wordmark {
  margin-top: -1.5rem;
  font-family: 'Teko', sans-serif;
  font-size: clamp(1.7rem, 4.4vw, 2.8rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f3f3f3;
  opacity: 0;
  transform: translate3d(130vw, 3vh, 0) scale(0.85);
  will-change: transform, opacity;
  white-space: nowrap;
}

.intro-wordmark .wordmark-c {
  color: var(--graphite);
}

.intro-wordmark .wordmark-d {
  color: var(--accent);
}

.intro-tagline {
  margin-top: -0.45rem;
  font-family: 'Sora', sans-serif;
  font-size: clamp(0.72rem, 1.55vw, 0.95rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--graphite);
  opacity: 0;
  transform: translate3d(-45vw, 0, 0) scale(0.96);
  filter: blur(9px);
  will-change: transform, opacity, filter;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .intro-logo {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .intro-wordmark {
    opacity: 1;
    transform: none;
  }

  .intro-tagline {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

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

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(1, 0, 0, 0.78);
  border-bottom: 1px solid var(--line);
  overflow: visible;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 88px;
  min-height: 88px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.brand img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  flex: 0 0 auto;
  background: transparent;
  position: relative;
  z-index: 1;
}

.brand-name {
  display: grid;
  line-height: 1;
  position: relative;
  z-index: 2;
  margin-left: -8px;
}

.brand-name strong {
  font-family: 'Teko', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.brand-name span {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.2rem;
  border-radius: 9999px;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 16px 30px rgba(211, 42, 24, 0.28);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

.btn-whatsapp {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 42, 24, 0.24);
  white-space: nowrap;
}

.btn-email {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(211, 42, 24, 0.24);
  white-space: nowrap;
}

.btn-whatsapp::before {
  content: '';
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='white' d='M380.9 97.1C339 55.1 283.2 32 223.9 32 100.3 32 .1 132.3 0 256c0 43.6 12.8 86 36.9 122.4L0 480l104.7-36.5c34.1 18.6 72.4 28.4 111.4 28.5h.1c123.6 0 223.9-100.3 223.9-223.9 0-59.3-23.1-115.1-65.2-157zM223.9 438c-33.6 0-66.5-8.8-95.5-25.6l-6.8-4-62.1 21.7 22.1-60.6-4.4-7C57 332.4 48 294.7 48 256 48.1 158.8 126.8 80 224 80c47.1 0 91.3 18.3 124.6 51.6s51.5 77.5 51.5 124.5c-.1 97.2-78.8 176-176.2 176zm101.5-138.4c-5.5-2.8-32.8-16.2-37.8-18-5-1.9-8.7-2.8-12.3 2.8-3.7 5.5-14.2 18-17.4 21.7-3.2 3.7-6.4 4.1-11.9 1.4-32.6-16.3-54-29.2-75.6-66.1-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.3-29.7-16.9-40.7-4.5-10.8-9.1-9.3-12.3-9.5-3.2-.2-6.9-.2-10.5-.2s-9.7 1.4-14.8 6.9c-5 5.5-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.7 35.2 15.2 49 16.5 66.7 14 10.8-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.3-5-3.7-10.5-6.4z'/%3E%3C/svg%3E");
}

.btn-email::before {
  content: '';
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='white' d='M64 112c-17.7 0-32 14.3-32 32v19.2L256 320 480 163.2V144c0-17.7-14.3-32-32-32H64zm416 92.8L273.5 357.7c-10.8 8-25.3 8-36.1 0L32 204.8V368c0 17.7 14.3 32 32 32h384c17.7 0 32-14.3 32-32V204.8z'/%3E%3C/svg%3E");
}

.btn-whatsapp[aria-disabled='true'] {
  opacity: 0.6;
  pointer-events: none;
}

.whatsapp-fab[aria-disabled='true'] {
  pointer-events: auto;
}

.whatsapp-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  min-width: 56px;
  min-height: 56px;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  touch-action: none;
  user-select: none;
  cursor: grab;
  transition: left 180ms ease, top 180ms ease, transform 180ms ease;
}

.whatsapp-fab.dragging {
  cursor: grabbing;
  transition: none;
  transform: none;
}

.hero {
  padding: 4.5rem 0 3.4rem;
}

.hero-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.hero-copy {
  padding: 3.1rem;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  margin-bottom: 1rem;
}

.hero h1,
.page-intro h1 {
  margin: 0;
  font-family: 'Teko', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 0.95;
  font-size: clamp(2.2rem, 6.6vw, 5rem);
}

.hero p,
.page-intro p,
.section p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
  min-height: 360px;
  background: #000;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.56;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.82));
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.section {
  padding: 1.2rem 0 2.5rem;
}

.section-title {
  margin: 0 0 1.2rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.card {
  border: 1px solid var(--line);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-radius: var(--radius);
  padding: 1.3rem;
}

.card h3 {
  margin-top: 0;
  font-size: 1rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.kpi-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.kpi {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--panel);
}

.kpi strong {
  display: block;
  font-family: 'Teko', sans-serif;
  font-size: 2.1rem;
  color: #fff;
}

.kpi span {
  color: var(--muted);
  font-size: 0.82rem;
}

.page-intro {
  padding: 3.2rem 0 1.5rem;
}

.quote {
  padding: 1.4rem;
  border-left: 3px solid var(--accent);
  background: linear-gradient(120deg, rgba(234, 43, 31, 0.09), rgba(255, 255, 255, 0.02));
  border-radius: 10px;
  color: #f4f4f4;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-layout-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-layout-3 .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 360px;
}

.contact-layout-3 .card h3 {
  margin: 0 0 0.75rem;
}

.contact-layout-3 .card p {
  margin: 0 0 0.95rem;
  line-height: 1.72;
}

.contact-layout-3 .card .form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.contact-layout-3 .btn {
  width: min(220px, 78%);
  display: flex;
  margin: auto auto 0;
}

.contact-layout-3 .form .btn {
  margin-top: auto;
}

.contact-points {
  margin-top: 0.05rem;
  margin-bottom: 1.1rem;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.52rem;
}

.contact-points li {
  line-height: 1.65;
}

.contact-points li::marker {
  color: var(--accent);
}

.client-logo-grid {
  align-items: stretch;
}

.client-logo-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.client-logo-card img {
  height: 74px;
  width: auto;
  max-width: min(270px, 100%);
  object-fit: contain;
}

.quote-card {
  height: 100%;
}

.testimonial-carousel {
  display: grid;
  gap: 0.9rem;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.testimonial-slide {
  display: none;
  line-height: 1.75;
}

.testimonial-slide.active {
  display: block;
}

.photo-frame-slide {
  padding: 0.7rem;
  border-left-width: 0;
  align-items: center;
  justify-content: center;
  background: #000;
  min-height: clamp(240px, 42vw, 460px);
}

.testimonial-slide.photo-frame-slide.active {
  display: flex;
}

.photo-frame-carousel {
  width: min(760px, 100%);
  margin-inline: auto;
}

.photo-frame-slide img {
  width: auto !important;
  max-width: 100%;
  height: auto !important;
  max-height: clamp(220px, 40vw, 420px);
  object-fit: contain !important;
  object-position: center;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #000;
}

.testimonial-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.15);
}

.list {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
}

.team-card h3 {
  margin-bottom: 0.35rem;
}

.team-card strong {
  color: #fff;
  font-size: 0.85rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form input,
.form textarea {
  width: 100%;
  background: #090909;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #fff;
  font: inherit;
  padding: 0.75rem 0.9rem;
}

.form textarea {
  min-height: 130px;
  resize: vertical;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: #000;
}

.footer-shell {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .brand img {
    width: 96px;
    height: 96px;
  }

  .brand {
    gap: 0.35rem;
  }

  .brand-name {
    margin-left: -4px;
  }

  .hero-shell,
  .grid-3,
  .grid-2,
  .contact-layout,
  .kpi-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 2rem;
  }

  .hero {
    padding: 3.1rem 0 2.5rem;
  }

  .hero-media {
    min-height: 250px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: auto;
    transform: none;
    width: max-content;
    min-width: 240px;
    max-width: calc(100% - 1.2rem);
    background: #090707;
    border: 1px solid rgba(211, 42, 24, 0.38);
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.55);
    display: none;
    z-index: 70;
    overflow: hidden;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    padding: 0.55rem;
    display: grid;
    gap: 0.28rem;
  }

  .site-nav li {
    margin: 0;
  }

  .site-nav a {
    display: block;
    padding: 0.56rem 0.72rem;
    border-radius: 10px;
    color: #efefef;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    background: #141010;
    border: 1px solid transparent;
    transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, color 160ms ease;
  }

  .site-nav a:hover {
    color: #fff;
    border-color: rgba(211, 42, 24, 0.4);
    background: rgba(211, 42, 24, 0.13);
    transform: translateX(2px);
  }

  .site-nav a.active {
    color: #fff;
    border-color: rgba(211, 42, 24, 0.52);
    background: linear-gradient(90deg, rgba(211, 42, 24, 0.22), rgba(211, 42, 24, 0.08));
  }

  .section {
    padding: 1rem 0 2.1rem;
  }

  .page-intro {
    padding: 2.5rem 0 1.2rem;
  }

  .card {
    padding: 1.1rem;
  }

  .client-logo-card img {
    justify-self: center;
    margin-inline: auto;
  }

  .client-logo-card h3 {
    text-align: center;
    margin: 0.1rem 0 0.15rem;
  }

  .client-logo-card p {
    text-align: left;
  }

}

@media (max-width: 720px) {
  .topbar {
    height: 84px;
    min-height: 84px;
    gap: 0.55rem;
  }

  .brand img {
    width: 84px;
    height: 84px;
  }

  .brand-name strong {
    font-size: 1.62rem;
  }

  .hero {
    padding: 2.3rem 0 2rem;
  }

  .hero-copy {
    padding: 1.35rem;
  }

  .hero-actions {
    gap: 0.6rem;
  }

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

  .page-intro {
    padding: 2rem 0 1rem;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 0.9rem;
  }

  .kpi strong {
    font-size: 1.85rem;
  }

  .photo-frame-slide {
    min-height: clamp(210px, 56vw, 360px);
    padding: 0.55rem;
  }

  .photo-frame-slide img {
    max-height: clamp(190px, 52vw, 330px);
  }

  .quote {
    padding: 1.05rem;
  }

  .form input,
  .form textarea {
    padding: 0.7rem 0.8rem;
  }

  .intro-logo-shell {
    width: min(520px, 92vw);
  }

  .intro-wordmark {
    font-size: clamp(1.28rem, 6.2vw, 2rem);
    letter-spacing: 0.035em;
    margin-top: -1.1rem;
  }

  .intro-tagline {
    font-size: clamp(0.62rem, 2.7vw, 0.82rem);
    letter-spacing: 0.1em;
    margin-top: -0.28rem;
  }

  .whatsapp-fab {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 1.4rem));
  }

  .topbar {
    height: 78px;
    min-height: 78px;
  }

  .brand img {
    width: 74px;
    height: 74px;
  }

  .brand-name strong {
    font-size: 1.42rem;
    line-height: 0.95;
  }

  .menu-toggle {
    min-width: 62px;
    padding: 0.45rem 0.62rem;
    font-size: 0.83rem;
  }

  .site-nav ul {
    padding: 0.45rem;
  }

  .site-nav a {
    font-size: 0.84rem;
    padding: 0.5rem 0.62rem;
  }

  .contact-layout-3 .btn {
    width: min(220px, 86%);
  }

  .testimonial-dot {
    width: 11px;
    height: 11px;
  }

  .footer-shell {
    min-height: 86px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    padding: 0.85rem 0;
  }
}
