:root {
  --background: #f5f3f0;
  --background-elevated: #ffffff;
  --text-primary: #1a1a1a;
  --text-muted: #666666;
  --accent: #c97b63;
  --accent-hover: #b86d5a;
  --border: #e5e5e5;
  --header-height: 80px;
  --announcement-height: 36px;
  --total-header-height: calc(
    var(--header-height) + var(--announcement-height)
  );

  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body), sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  font-weight: 300;
}

h1,
h2,
h3 {
  font-family: var(--font-heading), serif;
  font-weight: 400;
  line-height: 1.1;
}

a {
  color: inherit;
  text-decoration: none;
  transition:
    color 0.3s ease,
    background 0.3s ease;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

.button--primary {
  background: var(--accent);
  color: var(--background-elevated);
}

.button--primary:hover {
  background: var(--accent-hover);
}

.button--outline {
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
}

.button--outline:hover {
  background: var(--text-primary);
  color: var(--background-elevated);
}

.button--ghost {
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  background: transparent;
}

.button--ghost:hover {
  background: var(--text-primary);
  color: var(--background-elevated);
}

@media (max-width: 768px) {
  h1 {
    font-size: 42px;
  }

  .container {
    padding: 0 16px;
  }
}
