:root {
  --bg: #fbf8f2;
  --surface: #ffffff;
  --soft: #f2ebdf;
  --text: #2c241e;
  --muted: #756b62;
  --primary: #815b35;
  --primary-dark: #5c3c20;
  --accent: #c99c65;
  --green: #5d7052;
  --line: rgba(62, 42, 24, .12);
  --shadow: 0 20px 60px rgba(59, 39, 23, .10);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 242, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(44, 36, 30, .06);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .95rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--primary);
  transition: .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  transition: .25s;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(201, 156, 101, .34), transparent 25%),
    radial-gradient(circle at 90% 65%, rgba(93, 112, 82, .22), transparent 30%),
    linear-gradient(115deg, transparent 65%, rgba(129, 91, 53, .05) 65%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0 90px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #f5dfc2;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1, h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 7vw, 6.4rem);
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 4vw, 4rem);
  letter-spacing: -.035em;
}

.hero-copy > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--primary-dark);
  box-shadow: 0 12px 28px rgba(92, 60, 32, .22);
}

.btn-primary:hover {
  background: #472c16;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .7);
}

.btn-light {
  color: var(--primary-dark);
  background: #fff7ec;
}

.btn.full {
  width: 100%;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 42px 42px 120px 42px;
  background: linear-gradient(145deg, #eadbc4, #c89d69);
  box-shadow: var(--shadow);
  transform: rotate(1.8deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 30px 30px 105px 30px;
}

.hero-card img {
  position: relative;
  z-index: 1;
}

.floating-note {
  position: absolute;
  z-index: 3;
  min-width: 142px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 35px rgba(44, 36, 30, .14);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 1rem;
}

.floating-note span {
  margin-top: 3px;
  color: var(--muted);
  font-size: .77rem;
}

.note-one {
  top: 9%;
  left: -8%;
}

.note-two {
  right: -5%;
  bottom: 10%;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.48);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  padding-left: 0;
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 5px;
}

.trust-grid span {
  color: var(--muted);
  font-size: .86rem;
}

.section {
  padding: 110px 0;
}

.soft-bg {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
}

.section-heading.center {
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.about-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

.stats div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.54);
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-family: "Playfair Display", serif;
  color: var(--primary-dark);
  font-size: 2rem;
}

.stats span {
  color: var(--muted);
  font-size: .85rem;
}

.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.58);
  font-weight: 700;
}

.filter-btn.active {
  color: #fff;
  background: var(--primary-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(86, 62, 41, .10);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 34px rgba(70, 48, 30, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.product-card.hidden {
  display: none;
}

.product-image{
    min-height:300px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: .72rem;
  font-weight: 800;
}

.product-body {
  padding: 24px;
}

.product-category {
  color: var(--primary);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 7px 0 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
}

.product-body p {
  min-height: 54px;
  color: var(--muted);
  font-size: .92rem;
}

.product-size {
  display: inline-flex;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(178, 125, 71, 0.12);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.product-meta strong {
  color: var(--primary-dark);
}

.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(90, 44, 14, 0.16);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  transition: background 0.2s ease, transform 0.2s ease;
}

.text-link:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-1px);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.process-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.48);
}

.process-card > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary-dark);
  font-weight: 800;
}

.process-card h3 {
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
}

.process-card p {
  color: var(--muted);
  font-size: .92rem;
}

.custom-section {
  padding: 90px 0;
  color: #fff;
  background: var(--primary-dark);
}

.custom-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.custom-visual {
  padding: 30px;
  border-radius: 36px;
  background: rgba(255,255,255,.08);
}

.custom-copy p,
.custom-copy li {
  color: rgba(255,255,255,.78);
}

.custom-copy ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.custom-copy li::before {
  content: "✓";
  margin-right: 9px;
  color: #f5dfc2;
  font-weight: 900;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
}

.stars {
  margin-bottom: 22px;
  color: var(--accent);
  letter-spacing: .15em;
}

.testimonial-card p {
  min-height: 112px;
  color: var(--muted);
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--muted);
  font-size: .82rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-copy > p {
  color: var(--muted);
}

.contact-list {
  margin-top: 38px;
}

.contact-list > * {
  display: block;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--muted);
  font-size: .8rem;
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 18px;
  font-size: .88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  color: var(--text);
  background: #fdfbf7;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(201, 156, 101, .13);
}

.contact-form small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
}

.newsletter {
  padding: 42px 0;
  color: #fff;
  background: var(--green);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.newsletter h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

.site-footer {
  padding: 70px 0 28px;
  color: rgba(255,255,255,.86);
  background: #211912;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr .9fr;
  gap: 50px;
}

.footer-brand strong {
  color: #fff;
}

.footer-brand small,
.footer-grid p,
.footer-grid a {
  color: rgba(255,255,255,.62);
}

.footer-grid > div:first-child p {
  max-width: 340px;
  margin-top: 20px;
}

.footer-grid h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  margin: 9px 0;
  font-size: .9rem;
}

.socials {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.socials a {
  display: inline-grid !important;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  font-size: .75rem !important;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: .78rem;
}

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px 10px 10px;
  border-radius: 999px;
  color: #fff;
  background: #25734a;
  box-shadow: 0 15px 35px rgba(37, 115, 74, .28);
}

.floating-wa span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  font-size: .77rem;
  font-weight: 900;
}

.floating-wa strong {
  font-size: .86rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .custom-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-grid {
    padding-top: 60px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-copy > p {
    margin-inline: auto;
  }

  .hero-visual {
    max-width: 650px;
    margin-inline: auto;
  }

  .trust-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .custom-copy {
    order: -1;
  }

  .contact-grid {
    max-width: 760px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 1.13rem;
  }

  .brand small {
    font-size: .62rem;
  }

  .hero-grid {
    padding: 45px 0 65px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .section {
    padding: 78px 0;
  }

  .note-one {
    left: -2%;
  }

  .note-two {
    right: -2%;
  }

  .trust-grid,
  .product-grid,
  .process-grid,
  .testimonial-grid,
  .stats,
  .form-row,
  .custom-copy ul,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    border-bottom: 0;
  }

  .product-image {
    min-height: 240px;
  }

  .process-card {
    min-height: auto;
  }

  .process-card > span {
    margin-bottom: 26px;
  }

  .newsletter-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter {
    padding: 58px 0;
  }

  .footer-grid > div:last-child {
    grid-column: auto;
  }

  .contact-form {
    padding: 24px 20px;
  }

  .floating-note {
    min-width: 118px;
    padding: 12px 14px;
  }

  .floating-note strong {
    font-size: .87rem;
  }

  .floating-note span {
    font-size: .68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
