:root {
  --max-width: 1200px;
  --dark: #2d2d2d;
  --gray: #3d3d3d;
  --light: #fff4e1;
  --bright: #fff7eb;
  --accent: #c5a059;
  --accent-muted: #7d6a44;
  --accent-active: hwb(39 35% 15% / 1);
  --critical: hwb(0deg 34.9% 22.75%);
  --radius-s: 8px;
  --radius-m: 16px;
  --text-s: clamp(16px, 1.75vw, 18px);
  --text-m: clamp(16px, 1.75vw, 20px);
  --text-l: clamp(16px, 1.75vw, 22px);
  --depth-s: inset 0 1px 2px #ffffff30, 0 1px 2px #00000030, 0 2px 4px #00000015;
  --depth-m: inset 0 1px 2px #ffffff50, 0 2px 4px #00000030, 0 4px 8px #00000015;
  --depth-l: inset 0 1px 2px #ffffff70, 0 4px 6px #00000030, 0 6px 10px #00000015;
  --depth-selected: inset 0 1px 2px var(--accent-active), 0 2px 4px var(--accent), 0 4px 8px var(--accent-muted);
  --fade-in: fadeIn 1s ease-in-out;
}

@font-face {
  font-family: Genos;
  src: url("./fonts/Genos-Medium.woff2");
  font-display: swap;
}
@font-face {
  font-family: Kumbh;
  src: url("./fonts/KumbhSans_Variable.woff2");
  font-display: swap;
}
@font-face {
  font-family: Domine;
  src: url("./fonts/Domine-Variable.woff2");
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--light);
  margin: 0;
  font-size: var(--text-l);
  font-family: Kumbh;
  color: var(--dark);
}

main {
  display: flex;
  flex-flow: column;
}

p {
  text-wrap: balance;
  max-width: 70ch;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
}

section {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5em 2em;
}

header {
  position: sticky;
  top: 0;
  z-index: 10;
  font-family: Genos;
  height: 3em;
}
header .dropdown-icon {
  display: none;
}
header > div {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 2em;
  margin: 0 auto;
}
header nav {
  display: flex;
  gap: 1em;
}
header nav a {
  color: var(--dark);
  text-decoration: none;
  padding: 0.15em 0.75em;
  transition: color 0.2s ease-in-out;
}
header nav a:hover {
  color: var(--accent);
}

h1 {
  color: var(--dark);
  text-align: center;
  letter-spacing: -1px;
  font-size: 3em;
  margin-bottom: 2rem;
}
h1 i {
  color: var(--accent);
}

h2 {
  font-size: 1.9em;
}

h3 {
  font-size: 1.5em;
}

h1, h2, h3, h4 {
  font-family: Domine;
  font-weight: 600;
  color: var(--accent);
  text-wrap: balance;
}

#hero {
  min-height: calc(100vh - 3em);
  padding-top: 0;
}
#hero h1 {
  font-size: clamp(3em, 1em + 4vw, 4em);
  color: var(--dark);
}
#hero p.accent {
  font-weight: bold;
  display: block;
  margin: 0.5em 0;
}
#hero .buttons {
  margin-top: 3em;
}

.space-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.space-evenly {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.align {
  display: flex;
  align-items: center;
}

.column {
  display: flex;
  flex-flow: column;
}

.accent {
  color: var(--accent);
}

.margin-s-v {
  margin: 1em 0;
}

.text-center {
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  list-style: none;
}

.wrap {
  display: flex;
  gap: 1em;
}

.gradient-to-bottom {
  background: linear-gradient(to bottom, #fce8c8, var(--light) 3em);
}

.gradient-to-top {
  background: linear-gradient(to top, #fce8c8, var(--light) 3em);
}

@media (max-width: 600px) {
  .img-card {
    animation: revealCard linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }
  .wrap {
    flex-flow: column;
  }
  a.btn {
    width: 100%;
    max-width: 75vw;
  }
  #menu-toggle {
    display: block;
    width: 2em;
    height: 2em;
    position: relative;
    margin: 50px auto;
  }
  #menu-toggle span {
    display: block;
    position: absolute;
    height: 5px;
    width: 100%;
    background: var(--dark);
    border-radius: 9px;
    opacity: 1;
    left: 0;
  }
  #menu.open nav {
    display: flex;
    animation: menuFadeIn 0.3s ease forwards;
  }
  #menu nav {
    display: none;
    position: absolute;
    flex-flow: column;
    gap: 1em;
    background: var(--dark);
    padding: 2em 1em;
    right: 0;
    left: 0;
    top: 3em;
    text-align: right;
  }
  #menu nav a {
    color: var(--accent);
    padding: 1em;
    transition: color 0.2s ease;
  }
  #menu nav a:hover {
    color: var(--accent-active);
  }
}
@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateX(-100vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- Base Button Styles --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-s);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: var(--accent);
  color: var(--light);
  text-wrap-mode: nowrap;
}
.btn:hover {
  background: var(--accent-active);
}
.btn:active {
  transform: scale(0.98);
}
.btn.secondary {
  background: transparent;
  border-color: var(--dark);
  color: var(--dark);
}
.btn.secondary:hover {
  /* Subtle dark wash on hover */
  background: rgba(45, 45, 45, 0.05);
  color: var(--dark);
}

/* Small: Best for dense tables, cards, or secondary inline actions */
.btn-small {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding: 6px 16px;
  min-height: 32px;
}

/* Medium: The default. Best for most forms, standard UI elements */
.btn-medium {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 10px 24px;
  min-height: 44px;
}

/* Large: Best for hero sections, main landing page CTAs, and mobile bottom bars */
.btn-large {
  font-size: 1.125rem;
  line-height: 1.75rem;
  padding: 14px 32px;
  min-height: 52px;
}

@keyframes revealCard {
  from {
    opacity: 0;
    transform: translateX(-300px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
#menu-toggle {
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#menu-toggle span {
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
#menu-toggle span:nth-child(1) {
  top: calc(2em - 27px);
  transform-origin: left center;
}
#menu-toggle span:nth-child(2) {
  top: calc(2em - 18px);
  transform-origin: left center;
}
#menu-toggle span:nth-child(3) {
  top: calc(2em - 9px);
  transform-origin: left center;
}
#menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 1px;
  left: 4px;
}
#menu-toggle.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}
#menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 24px;
  left: 4px;
}/*# sourceMappingURL=style.css.map */