:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ebe0d9;
  --surface-alt: #f5f1eb;
  --text: #1a1917;
  --muted: #4a4440;
  --accent: #c6693e;
  --accent-text: #a15430;
  --accent-soft: rgba(198, 105, 62, 0.14);
  --border: rgba(74, 68, 64, 0.12);
  --shadow: 0 18px 40px rgba(27, 24, 21, 0.08);
  --radius: 24px;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  background: var(--text);
  color: #fff;
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(1rem);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(198, 105, 62, 0.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(74, 68, 64, 0.08), transparent 18%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
a.button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo {
  width: 2rem;
  height: auto;
  display: block;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav.open {
  display: grid;
  gap: 1rem;
  padding: 1rem 0;
  width: 100%;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  background-image: linear-gradient(rgba(20, 25, 31, 0.6), rgba(20, 25, 31, 0.3)),
    url("../assets/header.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  transition: min-height 0.35s ease, padding 0.35s ease;
}

.hero.hero--collapsed {
  min-height: 62vh;
  padding: 3rem 0 2rem;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 100%;
  align-items: end;
}

.hero-copy {
  padding: clamp(8rem, 18vw, 12rem) 0 6rem;
}

.hero-copy--large {
  max-width: 62rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent-text);
  margin: 0 0 1rem;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 4.6vw, 4.7rem);
  line-height: 1.02;
  max-width: 100%;
  overflow: visible;
}

.typewriter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  min-height: 5rem;
  white-space: normal;
  color: #ffffff;
  border-right: 2px solid rgba(255, 255, 255, 0.9);
  word-break: break-word;
}

.typewriter-part {
  display: block;
}

.typewriter-part--accent {
  color: var(--accent);
}

.typewriter-part--muted {
  color: #8a8a8a;
}

.typewriter.js-typewriter .typewriter-part {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  max-width: 100%;
}

.typewriter.js-typewriter.is-animating .typewriter-part--accent {
  animation: type-reveal 1000ms steps(18, end) 700ms forwards;
}

.typewriter.js-typewriter.is-animating .typewriter-part--muted {
  animation: type-reveal 850ms steps(15, end) 1700ms forwards;
}

@keyframes type-reveal {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter.js-typewriter .typewriter-part {
    width: auto;
    animation: none !important;
  }
}

.hero-text {
  max-width: 48rem;
  color: #ffffff;
  font-size: 1.15rem;
  margin: 1.5rem 0 2.25rem;
  line-height: 1.9;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-text.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.3);
}

.hero-details {
  display: grid;
  gap: 1rem;
}

.hero-details .stat-card {
  background: rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-details .stat-value,
.hero-details .stat-label {
  color: #fff;
}

.stat-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.stat-value {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.stat-label {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}

body.services-page .section {
  padding-top: 5.5rem;
}

.section-header {
  max-width: 42rem;
  margin-bottom: 2rem;
}

.section-header h2,
.about-section h1,
.trust-section h3,
.contact-section h2 {
  margin: 0;
}

.section-header h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

body.services-page .section-header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  margin: 0;
}

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

.service-card {
  perspective: 1400px;
}


.service-card__inner {
  position: relative;
  width: 100%;
  min-height: 18rem;
  transform-style: preserve-3d;
  transition: transform 0.8s ease;
  border-radius: 22px;
}

.service-card:hover .service-card__inner,
.service-card:focus-within .service-card__inner,
.service-card.is-flipped .service-card__inner {
  transform: rotateY(180deg);
}

.service-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.75rem;
  border-radius: 22px;
  backface-visibility: hidden;
  background-image: linear-gradient(rgba(20, 25, 31, 0.55), rgba(20, 25, 31, 0.2)),
    url("../assets/conference.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.service-card--live-events .service-card__face,
.service-card--live-stream .service-card__face,
.service-card--led .service-card__face {
  background-image: linear-gradient(rgba(20, 25, 31, 0.55), rgba(20, 25, 31, 0.2));
}

.service-card--live-events .service-card__face--front,
.service-card--live-events .service-card__face--back {
  background-image: linear-gradient(rgba(20, 25, 31, 0.55), rgba(20, 25, 31, 0.2)),
    url("../assets/live-events.jpg");
}

.service-card--live-stream .service-card__face--front,
.service-card--live-stream .service-card__face--back {
  background-image: linear-gradient(rgba(20, 25, 31, 0.55), rgba(20, 25, 31, 0.2)),
    url("../assets/live-steam.jpg");
}

.service-card--led .service-card__face--front,
.service-card--led .service-card__face--back {
  background-image: linear-gradient(rgba(20, 25, 31, 0.55), rgba(20, 25, 31, 0.2)),
    url("../assets/led.jpg");
}

.service-card--ma-light .service-card__face--front,
.service-card--ma-light .service-card__face--back {
  background-image: linear-gradient(rgba(20, 25, 31, 0.55), rgba(20, 25, 31, 0.2)),
    url("../assets/ma-light.jpg");
}

.service-card__face--front {
  align-items: flex-start;
  padding-top: 2rem;
  text-align: center;
}

.service-card__face--back {
  transform: rotateY(180deg);
  text-align: center;
  align-items: flex-start;
  padding-top: 2rem;
}

.service-card__face h3,
.service-card__face p {
  margin: 0;
}

.service-card__face h3 {
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  line-height: 1.05;
}

.service-card__face p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 18rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
}

.about-section p {
  margin: 1.25rem 0 0;
  color: var(--muted);
}

.mission-card,
.vision-card {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 24px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}

.mission-card .eyebrow,
.vision-card .eyebrow {
  margin: 0 0 0.5rem;
}

.mission-text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text);
}


.trust-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  color: var(--muted);
}

.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.1rem 1.25rem;
  background: var(--surface-alt);
  border-radius: 16px;
}

.trust-list li::before {
  content: "\2713";
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-types-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.events-support-section {
  background: var(--surface-alt);
}

.event-type-card {
  padding: 1.75rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.event-type-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.event-type-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.testimonials-section {
  background: var(--text);
}

.testimonials-section .eyebrow {
  color: var(--accent);
}

.testimonials-section .section-header h2 {
  color: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  margin: 0;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.testimonial-card__stars {
  color: var(--accent);
  font-size: 1.05rem;
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  margin: 0 0 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testimonial-card__name {
  font-weight: 700;
  color: #ffffff;
}

.testimonial-card__company {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.faq-section {
  background: var(--surface-alt);
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 2rem;
  max-width: 46rem;
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 28px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  align-items: start;
}

.contact-card--page {
  min-height: 100%;
}

.contact-copy {
  display: grid;
  gap: 1rem;
}

.contact-section h2 {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
}

.contact-page-section h1 {
  margin: 0;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(74, 68, 64, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(198, 105, 62, 0.28);
  border-color: var(--accent);
}

.field--full {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
}

.form-message {
  margin: 0;
  color: var(--accent-text);
  font-weight: 700;
}

.contact-page-section {
  padding-top: 2rem;
}

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

.contact-card--page {
  min-height: 100%;
  padding: 3rem;
}

.contact-details-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

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

.contact-detail-list__item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.8rem;
}

.contact-detail-list__icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(198, 105, 62, 0.12);
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin: 0 auto;
  overflow: hidden;
}

.contact-detail-list__icon video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

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

.contact-detail-list strong {
  margin-bottom: 0.35rem;
}

.contact-detail-list span {
  color: var(--muted);
}

.site-footer {
  padding: 1.5rem 0 2.5rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
}

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

.footer-brand p {
  margin: 0;
}

.footer-brand__mark {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  flex-shrink: 0;
}

.about-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-symbol__image {
  width: 100%;
  max-width: 220px;
  height: auto;
}

.footer-links a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.legal-content {
  max-width: 46rem;
}

.legal-content h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.legal-updated {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 2rem;
}

.legal-content h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.3rem;
}

.legal-content p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
}

.legal-content a {
  color: var(--accent-text);
  text-decoration: underline;
}

.legal-note {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  font-size: 0.92rem;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
}

.error-content .eyebrow {
  text-align: center;
}

.error-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin: 0 0 1rem;
}

.error-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 0 2rem;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.button-outline:hover,
.button-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

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

  .header-inner {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .hero {
    min-height: 85vh;
  }

  .hero-copy {
    padding: 4rem 0 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 7vw, 3.4rem);
  }

  .hero-text {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 3rem 0;
  }

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

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

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

  .service-card__inner {
    min-height: 16rem;
  }

  .service-card__face h3 {
    font-size: clamp(1.75rem, 4.5vw, 2.1rem);
  }

  .mission-card,
  .vision-card,
  .contact-card {
    padding: 1.75rem;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-detail-list {
    grid-template-columns: 1fr;
  }

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

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-wrap: wrap;
    position: relative;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav.open {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: grid;
    padding: 0.85rem 1rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    z-index: 30;
  }

  .site-nav a {
    width: 100%;
    padding: 0.75rem 0.25rem;
    color: var(--text);
    font-weight: 700;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(198, 105, 62, 0.08);
    color: var(--accent);
  }

  .hero {
    min-height: 70vh;
    background-attachment: scroll;
  }

  .hero-copy {
    padding: 3rem 0 2rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .hero-text {
    font-size: 0.98rem;
  }

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

  .event-types-grid {
    grid-template-columns: 1fr;
  }

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

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

  .section-header h2,
  .contact-section h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .service-card__inner {
    min-height: 14rem;
  }

  .footer-inner {
    align-items: center;
  }
}
