/* src/styles/variables.css */
:root {
  --color-orange: #ff6e00;
  --color-orange-dark: #cc4f02;
  --color-yellow: #f99d1c;
  --color-light-orange: #ffce71;
  --color-warm-white: #fff8ec;
  --color-warm-cream: #fff0d3;
  --color-brown: #2e0b0c;
  --color-purple: #3d246a;
  --color-purple-light: #b09de8;
  --color-white: #ffffff;
  --color-orange-50: #fff8ec;
  --color-orange-100: #ffdda5;
  --color-orange-200: #ffc56d;
  --font-family:
    "Open Sans",
    Arial,
    sans-serif;
  --font-size-base: 1rem;
  --line-height: 1.65;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(46, 11, 12, 0.06);
  --shadow-md: 0 8px 24px rgba(46, 11, 12, 0.1);
  --container-max: 860px;
  --header-height: 72px;
}

/* src/styles/base.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}
body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  color: var(--color-brown);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--color-orange);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--color-orange-dark);
}
h1,
h2,
h3 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--color-brown);
}
h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
}
h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  margin: 0;
}
p {
  margin: 0 0 1rem;
}
p:last-child {
  margin-bottom: 0;
}
mark.highlight {
  background: var(--color-light-orange);
  color: var(--color-brown);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-weight: 600;
}

/* src/styles/layout.css */
.container {
  width: min(100% - 2rem, var(--container-max));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-orange);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
  padding-block: 0.75rem;
}
.logo-link {
  flex-shrink: 0;
  text-decoration: none;
}
.logo {
  width: auto;
  max-height: 56px;
}
.header-school {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}
.school-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-brown);
}
.school-slogan {
  font-size: 0.75rem;
  color: var(--color-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero {
  position: relative;
  background:
    linear-gradient(
      135deg,
      var(--color-warm-white) 0%,
      var(--color-warm-cream) 50%,
      var(--color-orange-100) 100%);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(
      circle at 20% 80%,
      var(--color-orange) 0%,
      transparent 25%),
    radial-gradient(
      circle at 80% 20%,
      var(--color-yellow) 0%,
      transparent 20%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
}
.hero-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
}
.hero-subtitle {
  font-size: 1.125rem;
  max-width: 52ch;
  color: var(--color-brown);
  opacity: 0.9;
  margin-bottom: 2rem;
}
.hero-nav {
  margin-top: 1.5rem;
}
.nav-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-brown);
}
.nav-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nav-link {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--color-white);
  border: 1px solid var(--color-light-orange);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-brown);
  text-decoration: none;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.15s;
}
.nav-link:hover {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
  transform: translateY(-1px);
}
.faq-container {
  padding: 2.5rem 0 4rem;
}
.site-footer {
  background: var(--color-brown);
  color: var(--color-warm-white);
  padding: 2.5rem 0;
}
.footer-inner {
  display: grid;
  gap: 1.5rem;
}
.footer-slogan {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--color-light-orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-info p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
}
.footer-info a {
  color: var(--color-light-orange);
}
.footer-info a:hover {
  color: var(--color-white);
}
.footer-copy {
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 248, 236, 0.15);
  font-size: 0.8rem;
  opacity: 0.7;
}
.logo--footer {
  background: var(--color-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
}
@media (min-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .footer-copy {
    grid-column: 1 / -1;
  }
}

/* src/styles/components.css */
.faq-section {
  margin-bottom: 2.5rem;
}
.faq-section:last-child {
  margin-bottom: 0;
}
.section-header {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--color-orange);
}
.section-header h2 {
  color: var(--color-brown);
}
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item {
  background: var(--color-warm-white);
  border: 1px solid var(--color-orange-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--color-brown);
  user-select: none;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question-text {
  flex: 1;
}
.faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: var(--color-orange);
  position: relative;
  transition: transform 0.25s, background 0.2s;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--color-white);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: 10px;
  height: 2px;
}
.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-item[open] .faq-icon {
  background: var(--color-purple);
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}
.faq-answer {
  padding: 0.75rem 1.25rem 1.25rem;
  color: var(--color-brown);
  font-size: 0.975rem;
  border-top: 1px solid var(--color-orange-200);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}
.faq-list li {
  margin-bottom: 0.65rem;
}
.faq-list li:last-child {
  margin-bottom: 0;
}
.faq-list em {
  font-style: italic;
  color: var(--color-orange-dark);
}
.table-wrap {
  overflow-x: auto;
  margin-top: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-orange-200);
}
.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--color-white);
}
.faq-table th,
.faq-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-orange-200);
}
.faq-table th {
  background: var(--color-orange);
  color: var(--color-white);
  font-weight: 600;
  white-space: nowrap;
}
.faq-table tr:last-child td {
  border-bottom: none;
}
.faq-table tr:nth-child(even) td {
  background: var(--color-warm-white);
}
.faq-table td:last-child {
  font-weight: 600;
  color: var(--color-orange-dark);
  white-space: nowrap;
}
@media (max-width: 600px) {
  .faq-table th,
  .faq-table td {
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
  }
}

/* src/styles/main.css */
/*# sourceMappingURL=main.css.map */
