:root {
  --bg: #fbf6ee;
  --surface: #ffffff;
  --ink: #2b2a26;
  --muted: #6c6a63;
  --line: #e7ddcb;
  --accent: #7a9b5e;
  --accent-2: #d97757;
  --accent-soft: #eef2e4;
  --shadow: 0 8px 28px rgba(43, 42, 38, 0.08);
  --radius: 14px;
  --maxw: 1140px;
  --header-h: 64px;
  --footer-h: 88px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  color: var(--accent-2);
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 600;
  line-height: 1.18;
  color: var(--ink);
}
h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
}
h2 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}
h3 {
  font-size: 1.15rem;
}
p {
  color: var(--muted);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 500;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    background 0.2s ease;
}
.btn:hover {
  background: var(--accent-2);
  color: #fff;
  transform: translateY(-1px);
}
.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn.outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    transform 0.35s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.site-header.scrolled {
  position: fixed;
  background: rgba(251, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
  animation: slideDown 0.35s ease;
}
.site-header.hide {
  transform: translateY(-100%);
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Fraunces", serif;
  font-weight: 600;
  color: var(--ink);
  font-size: 1rem;
}
.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    var(--accent),
    var(--accent-2),
    var(--accent)
  );
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.95rem;
}
.nav-toggle {
  min-width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.15rem;
  color: var(--ink);
}
.nav-toggle .ph-x {
  display: none;
}
.nav-toggle.open .ph-list {
  display: none;
}
.nav-overlay.open .ph-x {
  display: inline-block !important;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: linear-gradient(160deg, #fbf6ee 0%, #eef2e4 100%);
  display: flex;
  flex-direction: column;
  transform: translateY(-100%);
  transition: transform 0.45s cubic-bezier(0.7, 0.05, 0.25, 1);
  padding: 18px;
}
.nav-overlay.open {
  transform: translateY(0);
}
.nav-overlay-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-h);
}
.nav-overlay nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.nav-overlay nav a {
  font-family: "Fraunces", serif;
  font-size: clamp(1.4rem, 4vw, 2.1rem);
  color: var(--ink);
  position: relative;
  padding: 4px 6px;
}
.nav-overlay nav a:hover {
  color: var(--accent-2);
}
.nav-overlay-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

main {
  flex: 1;
  padding-top: var(--header-h);
}
.section {
  padding: 54px 0;
}
.section.tight {
  padding: 36px 0;
}
.section-head {
  max-width: 640px;
  margin: 0 auto 28px;
  text-align: center;
}

.hero {
  position: relative;
  padding: 54px 0 64px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}
.hero h1 span {
  color: var(--accent-2);
  font-style: italic;
}
.hero p.lead {
  margin: 14px 0 22px;
  font-size: 1.02rem;
  max-width: 46ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5/4;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
}
.hero-badge i {
  color: var(--accent);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.pill {
  font-size: 0.74rem;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #3f5a2e;
  border: 1px solid #d9e3c7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature i {
  font-size: 1.5rem;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 9px;
  border-radius: 10px;
}
.feature h3 {
  margin: 12px 0 6px;
}
.feature p {
  font-size: 0.9rem;
}

.process {
  background: var(--surface);
  border-radius: 24px;
  padding: 34px 24px;
  border: 1px solid var(--line);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.step {
  position: relative;
  padding: 18px 14px;
  border-radius: 14px;
  background: var(--bg);
}
.step .num {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--accent-2);
  font-weight: 600;
}
.step h3 {
  margin: 6px 0 4px;
  font-size: 1rem;
}
.step p {
  font-size: 0.85rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: center;
}
.split-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}
.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.split ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--ink);
}
.split ul li i {
  color: var(--accent);
  margin-top: 3px;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tm {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}
.tm .stars {
  color: #e0a23a;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.tm p {
  font-size: 0.9rem;
  color: var(--ink);
}
.tm .who {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(120deg, var(--accent) 0%, #5e7d46 100%);
  color: #fff;
  border-radius: 24px;
  padding: 34px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
}
.cta-band p {
  color: #e8efde;
  font-size: 0.95rem;
  margin-top: 4px;
}
.cta-band .btn {
  background: #fff;
  color: var(--ink);
}
.cta-band .btn:hover {
  background: var(--ink);
  color: #fff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.product {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.product .tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.product h3 {
  font-size: 1.2rem;
}
.product .price {
  font-family: "Fraunces", serif;
  font-size: 1.7rem;
  color: var(--ink);
}
.product .price small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 400;
}
.product ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
}
.product ul li::before {
  content: "\2022";
  color: var(--accent);
  margin-right: 8px;
}
.product .btn {
  align-self: flex-start;
  margin-top: 6px;
}
.product.featured {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.about-hero .visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow);
}
.about-hero .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.value {
  padding: 18px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.value i {
  color: var(--accent-2);
  font-size: 1.3rem;
}
.value h3 {
  margin: 8px 0 4px;
  font-size: 1rem;
}
.value p {
  font-size: 0.86rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.t-item {
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 16px;
}
.t-item .yr {
  font-family: "Fraunces", serif;
  color: var(--accent-2);
  font-size: 1.4rem;
}
.t-item p {
  font-size: 0.85rem;
  margin-top: 4px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.contact-card {
  background: linear-gradient(160deg, #2b2a26 0%, #3d3a32 100%);
  color: #fff;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.contact-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, var(--accent-2), transparent 70%);
  opacity: 0.55;
}
.contact-card h2 {
  color: #fff;
}
.contact-card p {
  color: #cfcabd;
  font-size: 0.92rem;
}
.contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: #f5efe1;
}
.contact-info i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
}
.hours {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  font-size: 0.83rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.hours strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

form.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field textarea {
  min-height: 120px;
  resize: vertical;
}
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: var(--muted);
}
.consent input {
  margin-top: 3px;
}
form.contact-form .btn {
  align-self: flex-start;
}

.map-wrap {
  margin-top: 22px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
}

.policy {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px;
}
.policy h1 {
  margin-bottom: 6px;
}
.policy .meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.policy h2 {
  margin: 22px 0 8px;
  font-size: 1.3rem;
}
.policy h3 {
  margin: 16px 0 6px;
  font-size: 1.05rem;
}
.policy p,
.policy li {
  font-size: 0.93rem;
  color: #3f3d36;
  line-height: 1.65;
}
.policy ul,
.policy ol {
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 8px 0;
}

.center-page {
  min-height: calc(100vh - var(--header-h) - var(--footer-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0;
}
.center-page .inner {
  max-width: 560px;
  margin: 0 auto;
}
.center-page .icon-big {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--accent);
  font-size: 2rem;
}
.center-page h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}
.center-page p {
  margin: 10px auto 18px;
  max-width: 46ch;
}

.site-footer {
  background: #23221f;
  color: #cfcabd;
  padding: 24px 0;
  font-size: 0.84rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-inner a {
  color: #cfcabd;
}
.footer-inner a:hover {
  color: #fff;
}
.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 560px;
  margin: 0 auto;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  font-size: 0.85rem;
  color: var(--ink);
  flex: 1;
  min-width: 200px;
}
.cookie-banner .btn {
  padding: 8px 14px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .about-hero,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .feature-grid,
  .product-grid,
  .testimonials,
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .feature-grid,
  .product-grid,
  .testimonials,
  .values,
  .process-steps,
  .timeline {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 40px 0;
  }
  .hero {
    padding: 36px 0 44px;
  }
  .policy {
    padding: 22px;
  }
}
