@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap');

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

:root {
  --bg: #f5f1eb;
  --bg-2: #ede8e0;
  --bg-card: #ffffff;
  --bg-light: #f7f4f0;
  --text: #1a1714;
  --text-dim: #6b5f57;
  --text-dark: #1a1714;
  --brick: #C84B2F;
  --brick-glow: rgba(200, 75, 47, 0.18);
  --steel: #4A8BAD;
  --steel-glow: rgba(74, 139, 173, 0.15);
  --gold: #b8860b;
  --border: rgba(26, 23, 20, 0.1);
  --border-bright: rgba(26, 23, 20, 0.18);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --nav-height: 70px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

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

iframe {
  border: 0;
  display: block;
}

em {
  font-style: italic;
}