:root {
  --bg: #f7f3ec;
  --surface: #fffdf8;
  --surface-soft: #f2ece2;
  --text: #2d251f;
  --text-soft: #6f6254;
  --accent: #b98432;
  --accent-strong: #99631d;
  --brand: #c99b5b;
  --border: rgba(153, 99, 29, 0.22);
  --shadow: 0 12px 30px rgba(64, 43, 14, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --container: min(1140px, 92vw);
  --heading-font: "Playfair Display", "Times New Roman", serif;
  --body-font: "Inter", "Segoe UI", Arial, sans-serif;
  --speed: 220ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  background: radial-gradient(circle at top right, #fff8ee 0%, var(--bg) 46%);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.section__head {
  margin-bottom: 2rem;
}

.section__eyebrow {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

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

.skip-link {
  position: absolute;
  top: -40px;
  left: 1rem;
  z-index: 1000;
  background: var(--accent);
  color: #120e0e;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

[dir="rtl"] body {
  text-align: right;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
