:root {
  --bg: #0d1117;
  --bg-soft: #131a24;
  --panel: rgba(17, 21, 29, 0.72);
  --panel-strong: rgba(12, 16, 23, 0.92);
  --card: rgba(19, 27, 37, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --text: #edf2f8;
  --muted: #b1bdcd;
  --silver: #c8ced8;
  --silver-soft: #8b98a8;
  --accent: #d32b2b;
  --accent-2: #f2b843;
  --accent-glow: rgba(211, 43, 43, 0.35);
  --shadow: 0 20px 70px rgba(0, 0, 0, 0.42);
  --glow: 0 0 0 1px rgba(255,255,255,0.08), 0 32px 70px rgba(0,0,0,0.45);
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 38, 38, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(130, 139, 158, 0.18), transparent 33%),
    linear-gradient(180deg, #05080d 0%, #0b0f16 18%, #0d121b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.008) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 25%, transparent 90%);
  opacity: 0.28;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 38%);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 1rem auto 0;
  padding: 1rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  background: rgba(10, 14, 18, 0.68);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 8px 25px rgba(0,0,0,0.16);
  transition: all 0.35s ease;
}

.topbar:hover {
  border-color: rgba(255,255,255,0.16);
}

.scrolled {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255,255,255,0.16);
  background: rgba(11,15,20,0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
}

.brand-wordmark {
  font-size: clamp(0.9rem, 1.4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.96);
  text-shadow: 0 0 20px rgba(255,255,255,0.08);
}

.brand-mark {
  display: none;
}

.brand-mark img,
.intro-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy span {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.button,
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  min-height: 3.2rem;
  padding: 0 1.3rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, filter 0.2s ease;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ghost-link {
  color: var(--silver);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

.button.primary {
  border: 1px solid rgba(211, 43, 43, 0.38);
  background: linear-gradient(135deg, #d22834 0%, #951a1e 100%);
  box-shadow: 0 16px 30px rgba(195, 31, 45, 0.35), 0 0 0 1px rgba(255,255,255,0.08) inset;
  color: #fff;
}

.button.secondary {
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.button:hover,
.ghost-link:hover,
.button:focus-visible,
.ghost-link:focus-visible {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.06);
}

.hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
  min-height: 72vh;
}

.eyebrow {
  margin: 0 0 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.7rem;
  color: var(--silver);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.1rem, 5vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  max-width: 620px;
  font-family: "Manrope", "Inter", sans-serif;
  text-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.lead {
  max-width: 620px;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.86rem;
  padding: 0.35rem 0;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.8rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.image-panel {
  position: relative;
  width: min(100%, 640px);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--glow);
  background: rgba(14,18,25,0.6);
  transform: translateY(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 80px rgba(0,0,0,0.55);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 35%, rgba(0,0,0,0.35));
  z-index: 1;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
  transform: scale(1.02);
}

.floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  background: rgba(9, 13, 18, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 18px 30px rgba(0,0,0,0.24);
  border-top: 1px solid rgba(255,255,255,0.12);
  transform: translate3d(0,0,0);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 36px rgba(0,0,0,0.28);
}

.spec-card {
  left: 0;
  bottom: 2.2rem;
  min-width: 210px;
}

.spec-label {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}

.spec-card strong,
.trust-card strong {
  font-size: 1.1rem;
}

.spec-card small,
.trust-kicker {
  color: var(--muted);
  font-size: 0.8rem;
}

.trust-card {
  right: 0.5rem;
  top: 3rem;
  max-width: 200px;
}

.trust-kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.62rem;
}

.brand-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: 2.2rem auto 0;
  padding: 1rem 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  color: var(--silver);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.00));
}

.brand-band div {
  text-align: center;
  padding: 0.8rem 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.74);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 6rem auto 0;
}

.section-heading {
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  letter-spacing: -0.05em;
  max-width: 760px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
}

.story-panel,
.value-stack,
.contact-card,
.contact-form,
.service-card,
.experience-copy,
.experience-image {
  background: linear-gradient(180deg, rgba(17,24,33,0.8), rgba(9,12,18,0.94));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  border-top: 1px solid rgba(255,255,255,0.09);
  position: relative;
  overflow: hidden;
}

.story-panel::before,
.value-stack::before,
.service-card::before,
.contact-card::before,
.contact-form::before,
.experience-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}

.story-panel {
  padding: 2.2rem;
}

.story-panel p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.9;
}

.value-stack {
  padding: 1.1rem;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.015);
}

.mini-card + .mini-card {
  margin-top: 1rem;
}

.mini-icon {
  display: grid;
  place-items: center;
  min-width: 2.7rem;
  height: 2.7rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(211,43,43,0.18));
  color: var(--text);
  font-weight: 700;
}

.mini-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
}

.mini-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 1.55rem;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 24px 45px rgba(0,0,0,0.28);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), transparent 50%);
  pointer-events: none;
}

.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-topline span {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: rgba(211, 43, 43, 0.16);
  color: var(--text);
}

.service-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.experience {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.experience-copy {
  padding: 2.1rem;
}

.experience-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  letter-spacing: -0.05em;
}

.experience-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.experience-copy ul {
  margin: 1.5rem 0 0;
  padding-left: 1.1rem;
  color: var(--text);
  line-height: 2.1;
}

.experience-image {
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  min-height: 240px;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 26px 48px rgba(0,0,0,0.28);
}

.gallery-item.tall {
  grid-row: span 2;
  min-height: 500px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.92) saturate(1.08);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1.12);
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.2rem 2.1rem;
  background:
    linear-gradient(135deg, rgba(211,43,43,0.18), rgba(255,255,255,0.02)),
    rgba(13,18,25,0.88);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: shimmer 8s linear infinite;
}

.cta-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 3rem);
  letter-spacing: -0.05em;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.contact-card {
  padding: 2rem;
}

.contact-card h3 {
  margin: 0 0 1.2rem;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

.contact-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  color: var(--muted);
}

.contact-form {
  padding: 2rem;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.5rem;
  color: var(--silver);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  background: rgba(15,18,22,0.7);
  color: var(--text);
  padding: 1rem 1rem;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(177, 189, 205, 0.72);
}

.contact-form button {
  margin-top: 1.2rem;
  border: 0;
  cursor: pointer;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--text);
}

.whatsapp-button {
  position: fixed;
  right: 1.3rem;
  bottom: 1.4rem;
  z-index: 60;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #1ea857);
  box-shadow: 0 18px 30px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255,255,255,0.2);
}

.whatsapp-button svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: #fff;
}

.chatbox {
  position: fixed;
  right: 1.4rem;
  bottom: 6.5rem;
  z-index: 58;
  width: min(350px, calc(100vw - 2rem));
  border-radius: 22px 22px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(9, 12, 17, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 35px 60px rgba(0,0,0,0.36);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.chat-title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.online-dot {
  display: inline-block;
  width: 0.6rem;
  height: 0.6rem;
  background: #31d17e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(49, 209, 126, 0.18);
}

.chat-close {
  border: 0;
  background: transparent;
  color: var(--silver);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  min-height: 130px;
  background: rgba(17, 20, 27, 0.85);
}

.chat-message {
  max-width: 84%;
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.chat-message.incoming {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  color: var(--text);
}

.chat-message.outgoing {
  margin-left: auto;
  background: linear-gradient(135deg, #c31f2d, #8e1c24);
  color: #fff;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
  padding: 0.9rem 1rem 1rem;
  background: rgba(255,255,255,0.02);
}

.chat-form input {
  min-height: 2.8rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
}

.chat-form button {
  border: 0;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #d32b2b, #941a1d);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
}

.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.44), rgba(0,0,0,0.8)),
    url('https://images.ctfassets.net/s699s7kh1jys/ULMNz1zawv5q2UHAV6K1g/c2281c02d57fca118fa40a08956c0978/Porsche_911_GT3_RS_driving_around_corner_racetrack_wallpaper_desktop_3.jpg') center/cover no-repeat;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.1s ease, visibility 1.1s ease;
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-scan {
  position: absolute;
  inset: -10%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.12) 20%,
    rgba(255,255,255,0.18) 50%,
    rgba(255,255,255,0.12) 80%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-18deg);
  animation: introScan 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  margin-top: 8vh;
  margin-left: auto;
  margin-right: auto;
  transform: scale(0.8);
  filter: drop-shadow(0 18px 50px rgba(255,255,255,0.08));
  animation: introLogo 2s ease forwards;
}

.intro-mark {
  display: grid;
  place-items: center;
  width: clamp(16rem, 28vw, 24rem);
  height: clamp(16rem, 28vw, 24rem);
  border-radius: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.intro-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 0.5rem;
  opacity: 0;
  animation: introTextFade 1.2s ease 0.6s forwards;
}

.intro-brand,
.intro-sub {
  display: block;
  font-weight: 700;
}

.intro-brand {
  font-size: clamp(1rem, 1.9vw, 2rem);
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.intro-sub {
  margin-top: 0.1rem;
  font-size: clamp(0.72rem, 1.2vw, 1.05rem);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform, opacity;
}

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

@keyframes introScan {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  45% {
    transform: translateX(120%) skewX(-18deg);
  }
  100% {
    transform: translateX(120%) skewX(-18deg);
  }
}

@keyframes introLogo {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(28px);
  }
  25% {
    opacity: 1;
    transform: scale(1.04) translateY(0);
  }
  65% {
    opacity: 1;
    transform: scale(1.02);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes introTextFade {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

@media (max-width: 980px) {
  .main-nav,
  .nav-actions .ghost-link {
    display: none;
  }

  .hero,
  .about-grid,
  .experience,
  .contact-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .topbar {
    width: min(var(--max), calc(100% - 1rem));
    margin-top: 0.6rem;
    padding: 0.8rem 0.8rem;
  }

  .nav-actions {
    gap: 0.55rem;
  }

  .hero {
    margin-top: 2rem;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 2.7rem;
  }

  .image-panel img,
  .experience-image img {
    min-height: 420px;
  }

  .brand-band,
  .services-grid,
  .field-row,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .story-panel,
  .contact-form,
  .contact-card,
  .experience-copy,
  .cta-panel {
    padding: 1.3rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .chatbox {
    right: 0.7rem;
    bottom: 5.7rem;
    width: min(320px, calc(100vw - 1.2rem));
  }

  .whatsapp-button {
    right: 0.7rem;
    bottom: 0.7rem;
    width: 3.6rem;
    height: 3.6rem;
  }
}
