/* ==========================================================================
   Treat Your Teacher -- Modern CSS Reset (reset.css)
   ========================================================================== */

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

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
}

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

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

p {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

table {
  border-collapse: collapse;
}

/* Remove default details marker in Safari */
summary {
  cursor: pointer;
}

/* Prevent iOS font-size inflation */
input[type="text"],
input[type="email"],
input[type="search"],
textarea {
  -webkit-appearance: none;
  appearance: none;
}

/* Hidden utility */
[hidden] {
  display: none !important;
}

/* Skip-to-content (accessible, hidden until focused) */
.skip-link {
  position: absolute;
  top: -9999px;
  left: 0;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) 0;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 0;
}
