/* ===== CSS Reset (modern, minimal) ===== */

html {
  box-sizing: border-box;
}

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

* {
  margin: 0;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}

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

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

/* ===== Theme ===== */
:root {
  --bg: #ffffff;
  --header: #ffffffef;
  --surface: #111217;
  --muted: #8a8f98;
  --text: #242f40;
  --primary: #a28834;
  /* accent */
  --primary-ink: #ffff;
  --ring: rgba(90, 169, 255, .35);
  --card: #e6e8e6;
  --border: #8a8f98;
  --maxw: 1200px;
  --radius: 16px;
  --shadow: 0 5px 30px rgba(0, 0, 0, .25);
}


/* Utilities */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 1rem + 2vw, 2.2rem);
  letter-spacing: -0.02em;
}

.section-head p {
  color: var(--muted);
  max-width: 60ch;
  margin: .75rem auto 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  background: transparent;
  transition: .2s ease;
}

.button:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--ring);
}

.button--primary {
  background: var(--primary);
  color: var(--primary-ink);
  border-color: transparent;
}

.button--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(90, 169, 255, .35);
}

.button--ghost {
  background: transparent;
}

.w-full {
  width: 100%;
  max-width: 100px;
}

/* A11y */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  padding: .5rem 1rem;
  background: var(--primary);
  color: var(--primary-ink);
}



/* @media (min-width: 921px){
  .nav-mobile{
    display: none;
  }
} */