:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f0ebe3;
  --color-surface: #ffffff;
  --color-text: #2c2419;
  --color-text-muted: #6b5d4f;
  --color-accent: #8b4513;
  --color-accent-dark: #6d3410;
  --color-border: #e8dfd4;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(44, 36, 25, 0.07);
  --max-width: 1080px;
  --section-y: clamp(1.75rem, 3.5vh, 2.75rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text);
  background: var(--color-bg);
}

.container {
  width: min(100% - 1.5rem, var(--max-width));
  margin-inline: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-accent-dark);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo {
  line-height: 1;
}

.logo__text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.5vw, 1.85rem);
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.logo__tld {
  color: var(--color-accent);
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: 0.9rem;
}

.nav a:hover {
  color: var(--color-accent);
}

/* Hero */
.hero {
  padding: var(--section-y) 0 calc(var(--section-y) * 0.85);
  background:
    linear-gradient(135deg, rgba(139, 69, 19, 0.05) 0%, transparent 55%),
    linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.hero__grid {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

.hero__copy {
  min-width: 0;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, #5c3824 0%, #3d2818 100%);
  aspect-ratio: 800 / 520;
}

.hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.hero__tag {
  display: inline-block;
  margin: 0 0 0.65rem;
  padding: 0.25rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(139, 69, 19, 0.1);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 20ch;
}

.hero__lead {
  margin: 0 0 1.1rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  color: var(--color-text-muted);
  max-width: 44ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.2rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn--full {
  width: 100%;
}

/* Sections */
.section {
  padding: var(--section-y) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section__title {
  margin: 0 0 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  text-align: center;
}

/* About */
.about {
  max-width: 46rem;
}

.about h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.about p {
  margin: 0 0 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.about__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.3rem;
  font-size: 0.92rem;
}

.about__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 700;
}

.stat {
  padding: 0.85rem 0.5rem;
  text-align: center;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.2;
}

.stat__label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* Cards */
.cards {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  padding: 1rem 0.9rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.card__icon {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* Contact */
.contact {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .contact {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.contact h2 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.contact > .contact__info > p {
  margin: 0 0 0.85rem;
  color: var(--color-text-muted);
  font-size: 0.92rem;
}

.contact__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact__list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border);
}

.contact__list li:last-child {
  border-bottom: none;
}

.contact__list span {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.contact__list a {
  font-size: 1rem;
  font-weight: 600;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 500;
}

.contact__form input,
.contact__form textarea {
  padding: 0.55rem 0.75rem;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg);
  transition: border-color 0.2s;
}

.contact__form textarea {
  resize: vertical;
  min-height: 4.5rem;
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact__note {
  margin: 0;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  text-align: center;
}

.botcheck {
  display: none;
}

.form-result {
  margin: 0;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
  text-align: center;
  border-radius: 8px;
}

.form-result--success {
  color: #1f5a2e;
  background: #e8f5eb;
  border: 1px solid #b8dfc4;
}

.form-result--error {
  color: #7a2318;
  background: #fdecea;
  border: 1px solid #f5c2bc;
}

.form-result--pending {
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
}

/* Footer */
.footer {
  padding: 0.85rem 0;
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.footer p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.footer a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

@media (max-width: 480px) {
  .nav {
    gap: 0.65rem;
    font-size: 0.82rem;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }
}
