:root {
  --carbon: #faf8f5;
  --surface: #f2ede7;
  --elevated: #e8e2da;
  --text-primary: #2c2825;
  --text-secondary: #9c9490;
  --accent: #b8895a;
  --accent-green: #5e8a6e;
  --border: rgba(44, 40, 37, 0.1);
  --gradient: linear-gradient(135deg, #b8895a, #5e8a6e);
  --glass-bg: rgba(250, 248, 245, 0.88);
  --glass-border: rgba(44, 40, 37, 0.1);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --container-max: 1200px;
  --section-pad: clamp(5rem, 10vw, 9rem);
  --nav-h: 72px;
  --transition-base: 0.3s cubic-bezier(0.2, 0.9, 0.3, 1);
  --transition-card: 0.35s cubic-bezier(0.2, 0.9, 0.3, 1);
  --accent-hover: #a67a4e;
  --error: #c0392b;
  --white: #ffffff;
  --shadow-card: 0 2px 16px rgba(44, 40, 37, 0.07);
  --shadow-hover: 0 12px 40px rgba(44, 40, 37, 0.13);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--carbon);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
  font-weight: 600;
}

p {
  line-height: 1.7;
}

address {
  font-style: normal;
}

blockquote {
  quotes: none;
}

::selection {
  background: rgba(184, 137, 90, 0.2);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
