:root {
  --bg: #f4f1e4;
  --bg-strong: #ffffff;
  --surface: #f7f2e7;
  --surface-strong: #edf0e8;
  --text: #1f2a22;
  --text-muted: #566154;
  --accent: #8f6b28;
  --accent-dark: #5b451f;
  --accent-soft: #f5e3b5;
  --border: rgba(31, 42, 34, 0.14);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Crimson Pro', serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(143, 107, 40, 0.08), transparent 25%), linear-gradient(180deg, #f7f4ee 0%, #f1eadf 100%);
}
img {
  max-width: 100%;
  height: auto;
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}
.brand {
  font-family: 'Playfair Display', serif;
  color: var(--accent-dark);
  font-size: clamp(1.25rem, 1.8vw, 2.1rem);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 999px;
  transition: all 0.25s ease;
}
nav a:hover,
nav a:focus {
  background: var(--accent-soft);
  color: var(--accent-dark);
}
.site-main {
  padding: 24px 0 60px;
}
.hero {
  background: linear-gradient(180deg, rgba(143, 107, 40, 0.16), transparent 42%), url('../img/hero-bg.jpg') center/cover no-repeat;
  color: #1f2a22;
  padding: 84px 0 72px;
}
.hero-content {
  text-align: center;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(129, 104, 58, 0.18);
  border-radius: 24px;
  padding: 54px 36px;
  box-shadow: 0 20px 60px rgba(55, 53, 47, 0.08);
}
.hero .eyebrow {
  margin: 0 0 18px;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
}
.hero p {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--text);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  background: var(--accent);
  color: #fff;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(143, 107, 40, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
section {
  padding: 48px 0;
}
section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 2.7vw, 3rem);
  margin-bottom: 18px;
  color: var(--accent-dark);
}
section p {
  max-width: 820px;
  color: var(--text-muted);
}
section.container {
  padding: 48px 0;
}
.site-footer {
  background: #f6f1e5;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  padding: 22px 0;
}
.site-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
button,
input[type='submit'],
input[type='button'] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
button:hover,
input[type='submit']:hover,
input[type='button']:hover {
  background: var(--accent-dark);
}
label {
  display: block;
  margin-bottom: 16px;
  color: var(--text);
}
input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  margin-top: 8px;
  border: 1px solid rgba(31, 42, 34, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font: inherit;
}
textarea {
  min-height: 160px;
  resize: vertical;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 860px) {
  .site-header .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  nav {
    justify-content: center;
  }
  .hero-content {
    padding: 36px 22px;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.4rem;
  }
  .btn {
    width: 100%;
  }
  nav a {
    padding: 10px 14px;
  }
}
