/* ==========================================================================
   Gugudde TV — Base / Reset
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  font-weight: 700;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}

h1 { font-size: var(--fs-h1); font-weight: 800; }
h2 { font-size: var(--fs-h2); font-weight: 800; }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
h5 { font-size: var(--fs-h5); }
h6 { font-size: var(--fs-h6); text-transform: uppercase; letter-spacing: 0.08em; }

p { margin: 0 0 var(--space-sm); color: var(--color-text-muted); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
a:hover { color: var(--color-primary-light); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

table { border-collapse: collapse; width: 100%; }

/* Focus visibility — never removed, only restyled */
:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 2px;
  border-radius: 4px;
}

::selection {
  background: var(--gold-300);
  color: var(--ink-900);
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.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;
  left: 1rem;
  top: -60px;
  background: var(--color-primary);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: var(--z-toast);
  transition: top var(--dur-base) var(--ease-out);
}
.skip-link:focus { top: 1rem; color: var(--white); }

section { position: relative; }

.section {
  padding-block: var(--space-2xl);
}
.section--tight { padding-block: var(--space-xl); }
.section--alt { background: var(--color-bg-alt); }
.section--dark {
  background: var(--gradient-brand-radial);
  color: var(--color-text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 {
  color: var(--color-text-on-dark);
}
.section--dark p { color: var(--color-text-on-dark-muted); }
.section--navy { background: var(--color-bg-dark); color: var(--color-text-on-dark); }
.section--navy h2, .section--navy h3 { color: var(--color-text-on-dark); }
.section--navy p { color: var(--color-text-on-dark-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-xs);
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-pill);
}
.section--dark .eyebrow,
.section--navy .eyebrow { color: var(--gold-300); }

.section-head {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}
.section-head--center { margin-inline: auto; text-align: center; }

@media (max-width: 480px) {
  h1 { font-size: var(--fs-h2); }
  .section { padding-block: var(--space-xl); }
}
.topbar__contact a,
.topbar__contact span {
  display: inline-flex;
  align-items: center;
}

.topbar__contact svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-right: 6px;
  vertical-align: middle;
}
