:root {
  --bg: #faf6f0;
  --bg-alt: #f1e9dd;
  --ink: #3a3229;
  --ink-soft: #6b6156;
  --accent: #a05c3b;
  --accent-dark: #84492c;
  --green: #7d8b6a;
  --line: #e3d9ca;
  --white: #ffffff;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Source Sans 3", Arial, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: var(--accent);
}
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 76px;
}
.logo {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
}
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a.on {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.header-phone {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
}

.hero {
  position: relative;
  color: var(--white);
  background: var(--ink);
}
.hero img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.82;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  left: 0;
  right: 0;
}
.hero-box {
  background: rgba(45, 37, 28, 0.72);
  padding: 40px 44px;
  max-width: 560px;
  border-radius: 6px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero p {
  font-size: 20px;
  margin-bottom: 26px;
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  padding: 14px 34px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
}
.btn:hover {
  background: var(--accent-dark);
}
.btn.ghost {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn.ghost:hover {
  background: var(--accent);
  color: var(--white);
}

section {
  padding: 64px 0;
}
.section-alt {
  background: var(--bg-alt);
}
h2.section-title {
  font-family: var(--serif);
  font-size: 36px;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 44px;
  font-size: 19px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: box-shadow 0.2s;
}
.cat-card:hover {
  box-shadow: 0 8px 24px rgba(58, 50, 41, 0.12);
}
.cat-card img {
  height: 230px;
  width: 100%;
  object-fit: cover;
}
.cat-card .cat-body {
  padding: 20px 22px 24px;
}
.cat-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
}
.cat-card p {
  color: var(--ink-soft);
  font-size: 16px;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.benefit {
  text-align: center;
  padding: 10px 8px;
}
.benefit svg {
  width: 46px;
  height: 46px;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
  margin: 0 auto 14px;
}
.benefit h3 {
  font-size: 19px;
  margin-bottom: 6px;
}
.benefit p {
  color: var(--ink-soft);
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.product .p-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product h3 {
  font-family: var(--serif);
  font-size: 21px;
  margin-bottom: 6px;
}
.product p {
  color: var(--ink-soft);
  font-size: 16px;
  margin-bottom: 14px;
  flex: 1;
}
.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.price small {
  font-size: 15px;
  color: var(--ink-soft);
  font-weight: 400;
}
.p-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 6px;
}

.tcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tquote {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
}
.tquote::before {
  content: "\201E";
  color: var(--accent);
  font-size: 28px;
  margin-right: 2px;
}
.tname {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 16px;
}

.banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 46px 20px;
}
.banner h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin-bottom: 10px;
}
.banner p {
  font-size: 19px;
  margin-bottom: 22px;
}
.banner .btn {
  background: var(--white);
  color: var(--green);
}
.banner .btn:hover {
  background: var(--bg-alt);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split img {
  border-radius: 6px;
}
.split h2 {
  font-family: var(--serif);
  font-size: 32px;
  margin-bottom: 16px;
}
.split p {
  margin-bottom: 14px;
  color: var(--ink-soft);
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 32px;
}
.info-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 12px;
}
.info-card ul {
  padding-left: 20px;
  color: var(--ink-soft);
}
.info-card li {
  margin-bottom: 8px;
}

.page-head {
  background: var(--bg-alt);
  padding: 44px 0;
  text-align: center;
}
.page-head h1 {
  font-family: var(--serif);
  font-size: 38px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  margin: 22px 0 8px;
}
.contact-info p {
  color: var(--ink-soft);
}
.contact-info a {
  color: var(--accent);
  font-weight: 600;
}
.form-field {
  margin-bottom: 18px;
}
.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 17px;
  font-family: var(--sans);
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.form-field textarea {
  min-height: 130px;
  resize: vertical;
}
.form-note {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 10px;
}
.alert-ok {
  background: #e8efe0;
  border: 1px solid var(--green);
  color: #46543a;
  padding: 16px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-weight: 600;
}

.legal {
  max-width: 860px;
}
.legal h2 {
  font-family: var(--serif);
  font-size: 26px;
  margin: 32px 0 12px;
}
.legal p,
.legal li {
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.legal ul {
  padding-left: 22px;
  margin-bottom: 14px;
}

.site-footer {
  background: #2d251c;
  color: #cfc4b5;
  padding: 52px 0 24px;
  font-size: 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 36px;
}
.site-footer h4 {
  color: var(--white);
  font-family: var(--serif);
  font-size: 19px;
  margin-bottom: 14px;
}
.site-footer a {
  color: #cfc4b5;
  text-decoration: none;
}
.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
}
.site-footer li {
  list-style: none;
  margin-bottom: 8px;
}
.footer-bottom {
  border-top: 1px solid #4a4033;
  padding-top: 20px;
  text-align: center;
  font-size: 15px;
  color: #a3988a;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2d251c;
  color: #e9e1d5;
  padding: 18px 20px;
  z-index: 200;
  display: none;
}
.cookie-bar.show {
  display: block;
}
.cookie-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-inner p {
  flex: 1;
  font-size: 15px;
  min-width: 260px;
}
.cookie-inner a {
  color: #e8b48f;
}
.cookie-btn {
  background: var(--accent);
  color: var(--white);
  border: 0;
  padding: 10px 26px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
}

@media (max-width: 900px) {
  .cat-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .split,
  .contact-grid,
  .info-cards {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero h1 {
    font-size: 34px;
  }
}
@media (max-width: 640px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .header-phone {
    display: none;
  }
  .main-nav {
    margin-left: 0;
  }
  .cat-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
  .hero img {
    height: 440px;
  }
  .hero h1 {
    font-size: 30px;
  }
  .hero-box {
    padding: 28px 24px;
  }
}
