:root {
  --bg: #08090a;
  --surface: #111316;
  --surface-2: #17191d;
  --surface-light: #f5f5f2;
  --text: #f7f6f2;
  --text-dark: #171717;
  --muted: #a9abb1;
  --muted-dark: #64666c;
  --gold: #d3a533;
  --gold-light: #f1ce68;
  --gold-dark: #9c7418;
  --border: rgba(255, 255, 255, 0.11);
  --border-dark: rgba(0, 0, 0, 0.1);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 8px;
  background: white;
  color: black;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(211, 165, 51, 0.16), transparent 28%),
    linear-gradient(150deg, #050505 0%, #111216 55%, #080808 100%);
}

.topbar {
  border-bottom: 1px solid var(--border);
  color: #c7c8cc;
  font-size: 0.82rem;
}

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

.topbar-whatsapp {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.topbar-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.topbar-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 0 16px rgba(37, 211, 102, 0.4);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 20;
}

.brand-logo {
  width: 250px;
  height: 72px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(241, 206, 104, 0.7);
  border-radius: 12px;
  background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
  color: #111;
  font-size: 1.4rem;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(211, 165, 51, 0.18);
}

.brand-text {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-size: 1.05rem;
}

.brand-text small {
  margin-top: 5px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: #d8d8da;
  font-size: 0.93rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-light);
}

.nav-links .nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(241, 206, 104, 0.5);
  border-radius: 999px;
  color: var(--gold-light);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: white;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 82px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--gold);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.why-content h2,
.quote-intro h2,
.contact-section h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
}

.hero-description {
  max-width: 680px;
  margin: 26px 0 0;
  color: #c4c5c9;
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #16120a;
  box-shadow: 0 14px 34px rgba(211, 165, 51, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 45px rgba(211, 165, 51, 0.32);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: white;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 27px;
  padding: 0;
  margin: 36px 0 0;
  color: #c6c7cb;
  font-size: 0.88rem;
  list-style: none;
}

.hero-highlights li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--gold-light);
  font-weight: 900;
}

.hero-visual {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}
.hero-photo-showcase {
  width: min(100%, 640px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(241, 206, 104, 0.25);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.hero-photo-showcase img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.stage-frame {
  width: min(100%, 510px);
  aspect-ratio: 1 / 0.95;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 58px 36px 45px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 46% 46% 18px 18px;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.05) 8% 9%, transparent 9% 91%, rgba(255,255,255,.05) 91% 92%, transparent 92%),
    radial-gradient(circle at 50% 25%, rgba(241, 206, 104, 0.3), transparent 42%),
    #0d0f12;
  box-shadow:
    inset 0 0 80px rgba(211, 165, 51, 0.06),
    0 40px 100px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
}

.stage-frame::before,
.stage-frame::after {
  content: "";
  position: absolute;
  top: 58px;
  width: 44%;
  height: 70%;
  opacity: 0.55;
  filter: blur(2px);
}

.stage-frame::before {
  left: 7%;
  background: linear-gradient(102deg, rgba(241, 206, 104, 0.55), transparent 60%);
  clip-path: polygon(0 0, 17% 0, 100% 100%, 48% 100%);
}

.stage-frame::after {
  right: 7%;
  background: linear-gradient(258deg, rgba(241, 206, 104, 0.55), transparent 60%);
  clip-path: polygon(83% 0, 100% 0, 52% 100%, 0 100%);
}

.stage-lights {
  position: absolute;
  top: 58px;
  left: 17%;
  right: 17%;
  display: flex;
  justify-content: space-between;
  z-index: 3;
}

.stage-lights span {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 27px 10px rgba(241, 206, 104, 0.28);
}

.stage-screen {
  min-height: 205px;
  display: grid;
  place-content: center;
  border: 4px solid #22262b;
  background:
    linear-gradient(135deg, rgba(211,165,51,.28), transparent 40%),
    radial-gradient(circle at 70% 30%, rgba(241,206,104,.24), transparent 30%),
    #101216;
  position: relative;
  z-index: 2;
  text-align: center;
  box-shadow: 0 0 35px rgba(211, 165, 51, 0.11);
}

.stage-screen span {
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 300;
  letter-spacing: 0.12em;
}

.stage-screen strong {
  color: var(--gold-light);
  font-size: clamp(1.2rem, 2.4vw, 2.1rem);
  letter-spacing: 0.28em;
}

.stage-floor {
  height: 50px;
  margin: 0 -20px -24px;
  background:
    linear-gradient(90deg, transparent, rgba(241,206,104,.28), transparent),
    #08090a;
  transform: perspective(250px) rotateX(55deg);
  transform-origin: center top;
}

.floating-card {
  position: absolute;
  max-width: 230px;
  padding: 15px 18px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(18, 20, 23, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  font-size: 0.9rem;
}

.floating-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
}

.floating-card-top {
  top: 42px;
  right: -12px;
}

.floating-card-bottom {
  left: -30px;
  bottom: 42px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}

.hero-glow-one {
  width: 280px;
  height: 280px;
  right: 8%;
  top: 16%;
  background: var(--gold);
}

.hero-glow-two {
  width: 180px;
  height: 180px;
  left: -60px;
  bottom: 8%;
  background: #856417;
}

.trust-strip {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0c0d0f;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  border-right: 1px solid var(--border);
}

.trust-grid div:first-child {
  border-left: 1px solid var(--border);
}

.trust-grid strong {
  color: var(--gold-light);
  font-size: 1.06rem;
}

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

.section {
  padding: 115px 0;
}

.about-section,
.portfolio-section,
.contact-section {
  background: var(--surface-light);
  color: var(--text-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.section-heading h2,
.why-content h2,
.quote-intro h2,
.contact-section h2 {
  font-size: clamp(2.25rem, 4.5vw, 4.3rem);
}

.section-heading > p:last-child {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--muted);
}

.section-heading.centered {
  max-width: 820px;
  margin: 0 auto 58px;
  text-align: center;
}

.about-copy {
  color: var(--muted-dark);
  font-size: 1.06rem;
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-copy strong {
  color: var(--text-dark);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.pillar-card {
  min-height: 260px;
  padding: 31px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: white;
}

.pillar-number {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.pillar-card h3 {
  margin: 0 0 11px;
  font-size: 1.35rem;
}

.pillar-card p {
  margin: 0;
  color: var(--muted-dark);
}

.services-section {
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px),
    #0b0c0e;
  background-size: 32px 32px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.service-card {
  min-height: 275px;
  padding: 26px 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(241, 206, 104, 0.4);
  background: rgba(255, 255, 255, 0.055);
}

.service-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(241, 206, 104, 0.28);
  border-radius: 13px;
  color: var(--gold-light);
  font-size: 1.2rem;
}

.service-card h3 {
  margin: 0 0 11px;
  font-size: 1.04rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.more-services {
  max-width: 850px;
  margin: 28px auto 0;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(255,255,255,.025);
}

.more-services summary {
  padding: 20px 24px;
  color: var(--gold-light);
  font-weight: 800;
  cursor: pointer;
}

.more-services-content {
  padding: 0 24px 22px;
  color: var(--muted);
}

.events-section {
  background: #111317;
}

.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 58px;
  background: var(--border);
  border: 1px solid var(--border);
}

.event-types article {
  min-height: 240px;
  padding: 32px;
  background: #111317;
}

.event-types span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.event-types h3 {
  margin: 34px 0 9px;
  font-size: 1.3rem;
}

.event-types p {
  margin: 0;
  color: var(--muted);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 54px;
}

.portfolio-heading > p {
  color: var(--muted-dark);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}

.portfolio-item {
  grid-column: span 4;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #111;
}

.portfolio-large {
  grid-column: span 8;
  grid-row: span 2;
}

.portfolio-wide {
  grid-column: span 8;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.portfolio-item:hover img {
  transform: scale(1.035);
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  pointer-events: none;
}

.portfolio-item figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  color: white;
}

.portfolio-item figcaption strong,
.portfolio-item figcaption span {
  display: block;
}

.portfolio-item figcaption span {
  margin-top: 2px;
  color: rgba(255,255,255,.7);
  font-size: 0.8rem;
}

.social-proof-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.social-proof-links a {
  padding: 12px 18px;
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  color: var(--text-dark);
  font-weight: 750;
  text-decoration: none;
}

.why-section {
  background:
    radial-gradient(circle at 15% 15%, rgba(211,165,51,.13), transparent 23%),
    #0a0b0d;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.why-content {
  position: sticky;
  top: 120px;
  align-self: start;
}

.why-content p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 20px;
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.advantages-grid article {
  min-height: 185px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

.advantages-grid strong,
.advantages-grid span {
  display: block;
}

.advantages-grid strong {
  margin-bottom: 13px;
  color: var(--gold-light);
}

.advantages-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-section {
  background: #111317;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 120px;
}

.quote-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-shortcuts {
  display: grid;
  gap: 11px;
  margin-top: 36px;
}

.contact-shortcuts a {
  padding: 17px 19px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
  text-decoration: none;
}

.contact-shortcuts span,
.contact-shortcuts strong {
  display: block;
}

.contact-shortcuts span {
  color: var(--muted);
  font-size: 0.76rem;
}

.contact-shortcuts strong {
  margin-top: 3px;
  color: var(--gold-light);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #17191d;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.quote-form label,
.quote-form legend {
  color: #d8d9dc;
  font-size: 0.84rem;
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  background: #0f1114;
  color: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(241,206,104,.7);
  box-shadow: 0 0 0 3px rgba(211,165,51,.11);
}

.quote-form select option {
  background: #111;
}

.quote-form fieldset {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin-top: 11px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

.checkbox-grid input {
  width: auto;
  margin: 0;
  accent-color: var(--gold);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 80px;
}

.contact-grid > div:first-child > p:last-child {
  color: var(--muted-dark);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

.contact-cards article {
  min-height: 210px;
  padding: 27px;
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  background: white;
}

.contact-cards span,
.contact-cards strong {
  display: block;
}

.contact-cards span {
  margin-bottom: 27px;
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards p {
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.contact-cards a {
  color: inherit;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 74px 0 25px;
  background: #070708;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.8fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 500px;
  color: var(--muted);
}

.footer-logo {
  width: 200px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.footer-grid > div:not(.footer-brand) {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-grid > div:not(.footer-brand) strong {
  margin-bottom: 11px;
  color: var(--gold-light);
}

.footer-grid a,
.footer-grid span {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 55px;
  padding-top: 23px;
  border-top: 1px solid var(--border);
  color: #777b82;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #a7a9ae;
  text-decoration: none;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px 12px 13px;
  border-radius: 999px;
  background: #25d366;
  color: #07180c;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}

.whatsapp-float span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}

.whatsapp-float small {
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-grid {
    gap: 40px;
  }

  .floating-card-top {
    right: 0;
  }

  .floating-card-bottom {
    left: 0;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 75px;
  }

  .topbar {
    display: none;
  }

  .navbar {
    min-height: 72px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 102;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 25px;
    padding: 90px 35px;
    background: rgba(7, 8, 9, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 1.25rem;
  }

  .hero {
    padding: 65px 0 85px;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .quote-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .stage-frame {
    max-width: 480px;
  }

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

  .trust-grid div:nth-child(3) {
    border-left: 1px solid var(--border);
  }

  .about-grid,
  .why-grid,
  .quote-grid,
  .contact-grid {
    gap: 50px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .pillar-number {
    margin-bottom: 25px;
  }

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

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

  .portfolio-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-item,
  .portfolio-large,
  .portfolio-wide {
    grid-column: span 6;
    grid-row: span 1;
  }

  .why-content,
  .quote-intro {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

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

  .section {
    padding: 82px 0;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.2rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-highlights {
    display: grid;
  }

  .hero-visual {
    min-height: 370px;
  }

  .stage-frame {
    padding: 50px 24px 38px;
  }

  .stage-screen {
    min-height: 150px;
  }

  .floating-card {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid div {
    min-height: 100px;
    padding: 18px 15px;
  }

  .services-grid,
  .event-types,
  .advantages-grid,
  .contact-cards,
  .form-row,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    gap: 11px;
  }

  .service-card {
    min-height: auto;
  }

  .portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .portfolio-item,
  .portfolio-large,
  .portfolio-wide {
    grid-column: 1;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 13px;
  }

  .whatsapp-float small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
