:root {
  --sand: #f5ecdf;
  --sand-deep: #eadbc7;
  --ink: #1e1d1a;
  --ink-soft: #4f4b44;
  --olive: #5b6651;
  --terracotta: #8f4a1f;
  --terracotta-deep: #6d3816;
  --paper: #fffaf4;
  --line: #d8ccb9;
  --focus: #0c6fb9;
  --shadow: 0 14px 35px rgba(31, 25, 19, 0.12);
}

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

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--paper);
  color: var(--ink-soft);
  line-height: 1.6;
}

a {
  color: var(--terracotta-deep);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sr-skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--focus);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0 0 0.75rem 0.75rem;
  text-decoration: none;
  z-index: 100;
}

.sr-skip:focus {
  top: 0;
}

.shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.topbar {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 244, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.brand {
  color: var(--ink);
  text-decoration: none;
}

.brand strong {
  display: block;
  font-size: 1.15rem;
}

.brand span {
  display: block;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.nav-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.96rem;
}

.header-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.button-solid,
.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: inherit;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.button-solid {
  background: var(--terracotta);
  color: #fff;
}

.button-solid:hover {
  background: var(--terracotta-deep);
}

.button-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.button-outline:hover {
  background: var(--sand);
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--sand-deep);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-grid,
.product-grid,
.info-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid,
.product-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero {
  padding: 2rem 0 1.5rem;
}

.hero h1,
.section h2,
.product-copy h1,
.card h2,
.card h3,
.faq-block h2,
.faq-block h3,
.contact-copy h1 {
  margin: 0.8rem 0 0.8rem;
  color: var(--ink);
  line-height: 1.1;
}

.hero h1,
.product-copy h1,
.contact-copy h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero p,
.product-copy p,
.contact-copy p,
.section p,
.card p,
.faq-block p,
.faq-block li,
label,
input,
textarea,
select {
  font-size: 1rem;
}

.hero-media img,
.product-media img {
  width: 100%;
  height: auto;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.section {
  margin-top: 1.5rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card,
.faq-block,
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.card h2,
.card h3,
.faq-block h2,
.faq-block h3 {
  font-size: 1.45rem;
}

.price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: baseline;
  margin: 0.75rem 0 1rem;
}

.price-line strong {
  font-size: 1.7rem;
  color: var(--ink);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 2.9rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  border: 1px solid #8a7d68;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field-help {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink);
  font-weight: 700;
}

.site-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}
