/* Core visual system: monochrome foundation with restrained beige and red accents. */
:root {
  --bg: #0a0a0a;
  --bg-soft: #121212;
  --surface: #161616;
  --surface-light: #f3eee8;
  --text: #f8f4ef;
  --text-muted: rgba(248, 244, 239, 0.72);
  --text-dark: #141313;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #a31818;
  --accent-soft: #d15b54;
  --accent-warm: #c1a78d;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --content-width: min(1200px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(193, 167, 141, 0.16), transparent 28%),
    radial-gradient(circle at right center, rgba(163, 24, 24, 0.1), transparent 20%),
    linear-gradient(180deg, #060606 0%, #0b0b0b 24%, #101010 100%);
  color: var(--text);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link,
.sr-only {
  position: absolute;
}

.skip-link {
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--surface-light);
  color: var(--text-dark);
  border-radius: 999px;
  transform: translateY(calc(-100% - 24px));
  transition: transform 180ms ease;
}

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

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

/* Top event strip is intentionally bold so Eastern Runway Week lands before any scroll. */
.announcement-bar {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 14px max(24px, calc((100vw - 1200px) / 2 + 24px));
  background:
    linear-gradient(90deg, rgba(163, 24, 24, 0.96), rgba(113, 12, 12, 0.92)),
    #7a1010;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.announcement-copy {
  display: flex;
  gap: 18px;
  align-items: center;
}

.announcement-copy p {
  margin: 0;
  max-width: 760px;
  font-size: 0.94rem;
}

.announcement-kicker,
.eyebrow,
.mini-label {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 700;
}

.announcement-kicker {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
}

.announcement-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 18;
  padding: 16px 0 0;
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.72);
  border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, rgba(193, 167, 141, 0.35), rgba(255, 255, 255, 0.02));
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.3rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

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

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.94rem;
}

.site-nav a,
.footer-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.footer-nav a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after,
.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  width: 24px;
  height: 1.5px;
  background: currentColor;
}

/* Reusable section shell keeps spacing consistent across the one-page layout. */
.section-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 44px;
  padding-top: 48px;
  align-items: stretch;
}

.hero h1,
.section-heading h2,
.event-copy h2,
.showcase-text h3,
.founder-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(2.35rem, 5vw, 4.45rem);
  line-height: 1.1;
  max-width: 10.5ch;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.section-heading-split {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.section-heading-split > div {
  max-width: 820px;
}

.section-heading h2,
.event-copy h2,
.cta-copy h2,
.founder-copy h2 {
  font-size: clamp(1.95rem, 3.6vw, 3.65rem);
}

.showcase-text h3 {
  font-size: clamp(1.8rem, 2.65vw, 2.65rem);
}

.hero-text,
.intro-copy p,
.event-copy p,
.showcase-text p,
.founder-copy p,
.cta-copy p {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-text {
  max-width: 58ch;
  margin: 26px 0 0;
}

.hero-actions,
.event-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-dark {
  background: var(--surface-light);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--text);
}

.button-light {
  background: #fff8f2;
  color: #240b0b;
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff8f2;
}

.button-red {
  background: var(--accent);
  color: #fff7f3;
}

.button-icon {
  gap: 10px;
}

.button-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.hero-meta div,
.detail-card,
.stats-row article,
.contact-grid article {
  min-width: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.hero-meta span,
.detail-card span,
.stats-row span,
.contact-grid span {
  display: block;
  margin-bottom: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual,
.visual-strip,
.event-visual {
  display: grid;
  gap: 18px;
}

.hero-visual {
  height: 100%;
}

.hero-visual > .visual-panel {
  height: 100%;
}

.visual-strip {
  grid-template-columns: 1fr 1fr;
}

.visual-panel,
.service-card,
.showcase-card,
.media-card,
.credibility-card,
.founder-card,
.cta-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.visual-panel,
.showcase-card,
.media-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.panel-header span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.panel-body {
  flex: 1 1 auto;
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-video,
.showcase-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-image {
  object-position: center top;
}

.showcase-video {
  object-position: center top;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.06));
  pointer-events: none;
}

.visual-panel-large .panel-body {
  min-height: 480px;
}

.video-panel,
.image-panel,
.warm-panel,
.cool-panel,
.neutral-panel,
.accent-body {
  background-size: cover;
  background-position: center;
}

.video-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.56)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.24), transparent 20%),
    linear-gradient(135deg, rgba(27, 27, 27, 0.9), rgba(100, 17, 17, 0.62), rgba(11, 11, 11, 0.95));
}

.image-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.48)),
    linear-gradient(135deg, rgba(193, 167, 141, 0.4), rgba(43, 43, 43, 0.32), rgba(0, 0, 0, 0.88));
}

.warm-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    radial-gradient(circle at 82% 18%, rgba(255, 239, 220, 0.25), transparent 20%),
    linear-gradient(135deg, rgba(193, 167, 141, 0.88), rgba(89, 25, 25, 0.92));
}

.cool-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    linear-gradient(135deg, rgba(230, 225, 221, 0.26), rgba(70, 70, 70, 0.32), rgba(0, 0, 0, 0.9));
}

.neutral-panel {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.46)),
    linear-gradient(135deg, rgba(243, 238, 232, 0.2), rgba(69, 69, 69, 0.42), rgba(9, 9, 9, 0.92));
}

.accent-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(193, 167, 141, 0.05));
}

.accent-body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(16, 16, 16, 0.35), rgba(16, 16, 16, 0.15)),
    radial-gradient(circle at top right, rgba(163, 24, 24, 0.28), transparent 32%);
}

.accent-body h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.76rem;
  line-height: 1.1;
}

.placeholder-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 340px;
}

.hero-video-copy {
  max-width: 360px;
}

.showcase-media-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.02));
}

.showcase-media-copy {
  max-width: 320px;
}

.showcase-link {
  flex: 0 0 auto;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--text);
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.showcase-link::after {
  display: none;
}

.showcase-link:hover,
.showcase-link:focus-visible {
  color: #fff7f3;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(12, 12, 12, 0.48);
  color: #fff7f3;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.slider-arrow span {
  font-size: 2rem;
  line-height: 1;
}

.slider-arrow-prev {
  left: 18px;
}

.slider-arrow-next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 247, 243, 0.36);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.slider-dot.is-active {
  background: #fff7f3;
  transform: scale(1.15);
}

@media (hover: hover) and (pointer: fine) {
  .slider-arrow {
    opacity: 0;
    pointer-events: none;
  }

  .showcase-slider:hover .slider-arrow,
  .showcase-slider:focus-within .slider-arrow {
    opacity: 1;
    pointer-events: auto;
  }

  .slider-arrow-prev {
    transform: translateY(-50%) translateX(-8px);
  }

  .slider-arrow-next {
    transform: translateY(-50%) translateX(8px);
  }

  .showcase-slider:hover .slider-arrow-prev,
  .showcase-slider:focus-within .slider-arrow-prev,
  .showcase-slider:hover .slider-arrow-next,
  .showcase-slider:focus-within .slider-arrow-next {
    transform: translateY(-50%) translateX(0);
  }
}

.placeholder-copy strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.placeholder-copy strong,
.placeholder-copy p,
.hero-meta strong,
.detail-card strong,
.stats-row strong,
.contact-grid strong,
.service-card h3,
.service-card p,
.credibility-card strong,
.credibility-card p,
.showcase-text h3,
.showcase-text p,
.event-copy p,
.event-points li,
.founder-copy p,
.cta-copy p {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.placeholder-copy p,
.accent-body p {
  margin: 0;
  color: rgba(248, 244, 239, 0.82);
}

.play-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 248, 242, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.play-badge::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-38%, -50%);
  border-left: 14px solid #fff7f3;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 28px 36px;
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 18px;
  padding-top: 0;
}

.intro-copy p {
  margin: 0;
}

.intro-notes {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intro-notes article,
.detail-card {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.intro-notes span,
.service-card span {
  color: var(--accent-warm);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-notes h3,
.service-card h3 {
  margin: 12px 0 10px;
  font-size: 1.2rem;
}

.intro-notes p {
  margin: 0;
  max-width: 100%;
  color: var(--text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.services-grid,
.credibility-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.service-card {
  min-width: 0;
  padding: 26px;
}

.service-card p,
.credibility-card p {
  margin: 0;
  color: var(--text-muted);
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 36px;
  align-items: center;
}

.event-copy p {
  max-width: 56ch;
}

.event-points {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.event-points li {
  padding: 0 0 0 20px;
  position: relative;
  color: var(--text-muted);
}

.event-points li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.event-detail-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  grid-template-areas:
    "tall small1"
    "tall small2";
}

.showcase-card-tall {
  grid-area: tall;
  min-height: 960px;
}

.showcase-card-small-one {
  grid-area: small1;
  min-height: 420px;
}

.showcase-card-small-two {
  grid-area: small2;
}

.showcase-photo-panel {
  min-height: 420px;
  padding: 0;
  background: #0f0f0f;
}

.showcase-secondary-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.showcase-card .panel-body {
  min-height: 320px;
}

.showcase-card-tall .panel-body {
  min-height: 0;
}

.showcase-slider {
  padding: 0;
  touch-action: pan-y;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.1), rgba(18, 18, 18, 0.22)),
    #0e0e0e;
}

.showcase-slider-track {
  position: absolute;
  inset: 0;
}

.showcase-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

.showcase-slide.is-active {
  opacity: 1;
}

.media-mosaic {
  column-count: 4;
  column-gap: 18px;
}

.showcase-section .media-mosaic {
  margin-top: 18px;
}

.media-photo-card {
  break-inside: avoid;
  margin-bottom: 18px;
  background: #101010;
}

.mosaic-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.credibility-card,
.stats-row article,
.contact-grid article {
  padding: 24px;
}

.credibility-card,
.contact-grid article,
.stats-row article {
  min-width: 0;
}

.credibility-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.stats-row,
.contact-grid {
  margin-top: 18px;
}

.founder-card,
.cta-card {
  display: grid;
  gap: 20px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at top right, rgba(193, 167, 141, 0.12), transparent 28%);
}

.founder-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.founder-visual {
  width: min(100%, 420px);
  margin-left: auto;
}

.founder-role {
  margin: 12px 0 18px;
  color: var(--accent-warm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-visual .panel-body {
  min-height: 0;
  aspect-ratio: 3 / 4;
  padding: 0;
}

.founder-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.founder-image-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02));
}

.founder-image-copy {
  max-width: none;
  padding: 24px;
}

.cta-card {
  padding: 40px;
  background:
    linear-gradient(180deg, rgba(18, 18, 18, 0.82), rgba(18, 18, 18, 0.92)),
    radial-gradient(circle at top left, rgba(163, 24, 24, 0.18), transparent 28%);
}

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

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 25;
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff7f3;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.4);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.site-footer {
  width: var(--content-width);
  margin: 0 auto;
  padding: 0 0 42px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 28px;
  color: var(--text-muted);
}

.site-footer p {
  margin: 12px 0 0;
}

.footer-brand {
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-meta {
  text-align: right;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--accent-warm);
  outline-offset: 3px;
}

@media (min-width: 1101px) {
  .intro-copy {
    padding-top: 55px;
  }
}

@media (max-width: 1100px) {
  .hero,
  .event-feature,
  .intro-grid,
  .founder-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "tall small1"
      "tall small2";
  }

  .media-mosaic {
    column-count: 3;
  }

  .site-footer {
    align-items: start;
  }
}

@media (max-width: 860px) {
  :root {
    --content-width: min(100vw - 28px, 1200px);
  }

  .announcement-bar {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 18px;
    padding-right: 18px;
  }

  .announcement-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav-shell {
    position: relative;
    border-radius: 28px;
    padding: 14px 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(8, 8, 8, 0.94);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 28px;
  }

  .hero h1 {
    max-width: none;
  }

  .visual-strip,
  .event-detail-strip,
  .stats-row,
  .intro-notes,
  .services-grid,
  .credibility-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "tall"
      "small1"
      "small2";
  }

  .section-heading-split {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-link {
    align-self: flex-start;
    margin-top: 0;
  }

  .showcase-card-tall {
    min-height: 820px;
  }

  .media-mosaic {
    column-count: 2;
  }

  .cta-card {
    padding: 28px;
  }

  .site-footer {
    padding-bottom: 32px;
  }

  .footer-meta {
    text-align: left;
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    opacity: 1;
    pointer-events: auto;
    background: rgba(12, 12, 12, 0.28);
  }
}

@media (max-width: 540px) {
  .section-shell {
    padding: 72px 0;
  }

  .media-mosaic {
    column-count: 1;
  }

  .showcase-card-tall {
    min-height: 700px;
  }

  .announcement-actions {
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }

  .announcement-actions,
  .hero-actions,
  .event-actions,
  .cta-actions {
    width: 100%;
  }

  .announcement-actions .button,
  .hero-actions .button,
  .event-actions .button,
  .cta-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .button {
    width: 100%;
  }

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

  .visual-panel-large .panel-body,
  .panel-body {
    min-height: 280px;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .founder-card,
  .cta-card {
    padding: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }
}
