@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/PlayfairDisplay-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

:root {
  color-scheme: light;
  --color-bg: #f3efe8;
  --color-cream: #fffdf9;
  --color-stone: #e0d8cf;
  --color-graphite: #1f1b16;
  --color-wood: #a3643d;
  --color-moss: #50604a;
  --color-muted: #6b6258;
  --color-border: #d5c8ba;
  --color-accent: #c97a44;
  --shadow-soft: 0 15px 40px rgba(37, 30, 23, 0.08);
  --shadow-card: 0 25px 60px rgba(16, 10, 6, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 32px;
  --font-base: "Manrope", "Inter", "Roboto", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: "Playfair Display", "Georgia", serif;
  --container-width: 1200px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-graphite);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-graphite);
}

p {
  margin: 0 0 1rem;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

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

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

.container {
  width: min(100%, var(--container-width));
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-heading {
  font-size: clamp(1.75rem, 1.5rem + 1.2vw, 2.5rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--color-muted);
  max-width: 720px;
}

.text-accent {
  font-family: var(--font-accent);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  color: var(--color-muted);
  background: transparent;
  font-size: 0.93rem;
  transition: all 0.2s ease;
}

.chip.is-active {
  border-color: var(--color-graphite);
  color: var(--color-graphite);
  background: rgba(162, 103, 61, 0.12);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-graphite);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--color-graphite);
  color: #fff;
  box-shadow: 0 18px 30px rgba(18, 14, 11, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--color-graphite);
  border: 1px solid rgba(31, 27, 22, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--color-graphite);
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
