/* ==========================================================================
   GLOBAL STYLES — Minimalist Luxury Design System
   See DESIGN.md for the full rationale behind these tokens.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&family=Raleway:wght@300;400;500&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Tokens ---- */
:root {
  --color-primary: #1A1A1A;
  --color-bg: #F7F5F2;
  --color-white: #FFFFFF;
  --color-accent: #A67C52;
  --color-muted: #6B6B6B;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Raleway', sans-serif;

  --section-padding: 120px;
  --section-padding-mobile: 60px;

  --max-width: 1200px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---- Base ---- */
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-primary);
  background-color: var(--color-bg);
  line-height: 1.7;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover { color: var(--color-accent); }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.3;
  overflow-wrap: break-word;
}

h1 { font-size: 44px; letter-spacing: 0.12em; }
h2 { font-size: 30px; }
h3 { font-size: 20px; letter-spacing: 0.12em; }

p { color: var(--color-muted); font-weight: 300; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

/* Inline emphasis within body copy — accent color, never bold (see DESIGN.md §2) */
.accent {
  color: var(--color-accent);
}

/* Bulleted list — square accent marker, no border-radius (see DESIGN.md §6) */
.bulleted {
  padding-left: 0;
}
.bulleted li {
  position: relative;
  padding-left: 20px;
}
.bulleted li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  background-color: var(--color-accent);
}

.divider {
  width: 60px;
  height: 1px;
  background-color: var(--color-accent);
  border: none;
  margin: 28px auto;
}

.button {
  display: inline-block;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.button:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.button--inverted {
  border-color: var(--color-white);
  color: var(--color-white);
}
.button--inverted:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ---- Header / Nav ---- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 32px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}
.site-header nav ul {
  display: flex;
  gap: clamp(16px, 2vw, 40px);
}
.site-header nav a {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}
.nav-toggle { display: none; }

@media (max-width: 768px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    padding: 8px 32px 32px;
  }
  .site-header nav.is-open { display: block; }
  .site-header nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .site-header nav a { white-space: normal; }
  .nav-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 24px;
  }
}

/* ---- Sections (generic) ---- */
section {
  padding: var(--section-padding) 0;
}
@media (max-width: 768px) {
  section { padding: var(--section-padding-mobile) 0; }
  h1 { font-size: 30px; letter-spacing: 0.1em; }
  h2 { font-size: 22px; }
  h1, h2, h3, h4 {
    hyphens: auto;
    -webkit-hyphens: auto;
  }
}

/* ---- Footer ---- */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 60px 0 32px;
}
.site-footer .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.site-footer h4 {
  color: var(--color-white);
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 16px;
}
.site-footer p, .site-footer a {
  font-size: 13px;
  color: #cfcac2;
}
.site-footer__bottom {
  border-top: 1px solid #3a3a3a;
  margin-top: 40px;
  padding-top: 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #8a8a8a;
}
@media (max-width: 768px) {
  .site-footer .container { grid-template-columns: 1fr; gap: 32px; }
}
