/* =========================================================
   Brigade Granada — Base Stylesheet
   Shared design tokens, reset, typography and utilities
   used across every section of the page.
   ========================================================= */

/* ---------- Custom Typeface: Zodiak ---------- */

@font-face {
  font-family: "Zodiak";
  src: url("../fonts/Metropolis-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zodiak";
  src: url("../fonts/Metropolis-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Zodiak";
  src: url("../fonts/Metropolis-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — deep pine green with warm terracotta accent (no blue, no gold) */
  --color-dark: #142720; /* deep pine green, primary background */
  --color-dark-soft: #1f3a2f; /* raised pine surface (solid header, cards) */
  --color-cream: #f5f0e6; /* warm ivory, primary text on dark */
  --color-cream-dim: #b7c0ab; /* soft sage, secondary text on dark */
  --color-accent: #d17a52; /* warm terracotta, CTAs & highlights */
  --color-accent-dim: #d17a5299; /* translucent terracotta for borders/glows */
  --color-ink: #17231d; /* deep pine-charcoal, primary text on light surfaces */
  --color-ink-soft: #55483c; /* warm umber, secondary text on light surfaces */

  --font-serif: "Zodiak", "Georgia", serif;
  --font-sans: "Zodiak", "Helvetica Neue", Arial, sans-serif;

  --header-height: 92px;
  --header-height-scrolled: 72px;
  --header-height-mobile: 68px;

  --container-width: 1320px;
  --ease-luxe: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-dark);
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  margin: 0;
}

p {
  margin: 0;
}

.container {
  width: min(92%, var(--container-width));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition:
    background var(--ease-luxe) 0.35s,
    color var(--ease-luxe) 0.35s,
    border-color var(--ease-luxe) 0.35s,
    transform var(--ease-luxe) 0.35s;
}

.btn-gold {
  background: var(--color-accent);
  color: var(--color-ink);
  border: 1px solid var(--color-accent);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border: 1px solid var(--color-cream-dim);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.btn-text {
  padding: 8px 2px;
  border: none;
  color: var(--color-cream);
  letter-spacing: 0.12em;
}

.btn-text:hover,
.btn-text:focus-visible {
  color: var(--color-accent);
}

/* ---------- Enquiry Modal ----------
   Styles live in assets/css/modal/modal.css */
