:root {
  --primary: #FBB33C;
  --primary-hover: #e6a52f;

  --text: #373736;
  --muted: #9D7840;

  --background: #fefefe;
  --background-soft: #fff6d8;

  --border: #eee;
}

/* =========================
BASE TYPOGRAPHY
========================= */

*,
*::before,
*::after {
  cursor: default !important;
}

a,
button,
[role="button"] {
  cursor: pointer !important;
}

input,
textarea {
  cursor: text !important;
}

body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--background);
  margin: 0;
}

main {
  background: white;
  padding: 0;
}

section {
  margin: 0;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 1.7rem;
  margin-top: 0.5rem;
}

h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
}

/* MOBILE TYPOGRAPHY */
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
}

/* =========================
IMAGES
========================= */

img {
  max-width: 100%;
  height: auto;
}

/* =========================
LINKS
========================= */

a {
  color: var(--primary);
  text-decoration: none;
  cursor: pointer;
}

a:hover {
  text-decoration: underline;
}

/* =========================
LAYOUT CONTAINER
========================= */

.container-custom,
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (max-width: 600px) {
  .section-inner {
    padding: 0 0.8rem;
  }
}

/* =========================
NAVIGATION
========================= */

.nav {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  width: 100%;
  padding: 0.8rem 1rem;
  gap: 0.5rem;
}

@media (min-width: 900px) {
  .nav-inner {
    padding: 0.8rem 2rem;
  }
}

/* LOGO */
.nav-logo img {
  height: 38px;
  display: block;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  cursor: pointer;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
  cursor: pointer;
}


/* HOVER UNDERLINE */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
  display: none;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  text-decoration: none;
}

/* MOBILE NAV STACK */
@media (max-width: 600px) {
  .nav-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 1rem;
  }
}

/* =========================
SECTIONS
========================= */

.section {
  padding: 1.5rem 0;
}

main > section:first-child {
  margin-top: 0;
  padding-top: 0;
}

.section:first-of-type {
  border-top: none;
  padding-top: 0;
}

/* FULL WIDTH (FIXED MOBILE SAFE) */
.section-full {
  width: 100%;
  padding: 1rem 0;
}

.section-full--soft {
  background-color: var(--background-soft);
}

.section-full--light {
  background-color: #f9f9f9;
}

/* =========================
BUTTONS
========================= */

button,
.button,
a[role="button"] {
  background-color: var(--primary);
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 6px;
  padding: 0.6rem 0.8rem;
  display: inline-block;
  cursor: pointer;
}

a[role="button"]:hover {
  background-color: var(--primary-hover);
}

/* =========================
CONTENT GRID
========================= */

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
CARDS
========================= */

.content-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.content-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.content-card-link:hover .content-card {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.content-image {
  height: 140px;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-body {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
}

.content-card h3 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.content-card p {
  font-size: 0.75rem;
  margin-bottom: 0;
  color: var(--muted);
}

/* =========================
TEAM GRID
========================= */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.team-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.team-image {
  height: 160px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-content {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  flex-grow: 1;
}

.team-card h3 {
  font-size: 0.9rem;
}

.team-content p {
  font-size: 0.7rem;
}

.team-role {
  color: var(--muted);
  font-size: 0.75rem;
}

.team-links {
  margin-top: auto;
  display: flex;
  gap: 0.6rem;
}

.team-links a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.team-links a:hover {
  background: var(--primary-hover);
  color: white;
}

/* =========================
FOOTER (FIXED)
========================= */

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 600px) {
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
}

footer ul li {
  margin-bottom: 0.4rem;
}

footer a {
  color: #373736;
}

footer a:hover {
  color: var(--primary);
}

/* =========================
LISTS
========================= */

ul {
  font-size: 1rem;
  line-height: 1.65;
  margin: 1rem 0;
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.6rem;
}

ul li::marker {
  color: var(--primary);
}

/* =========================
ICONS
========================= */

i[data-lucide] {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}

/* =========================
MISC
========================= */

a img:hover {
  opacity: 0.9;
}