:root {
  --ink: #26312a;
  --ink-soft: #536057;
  --green: #435447;
  --green-deep: #2f4035;
  --sage: #95a08f;
  --sage-light: #dfe5dc;
  --cream: #f8f4ec;
  --paper: #fffdf9;
  --peach: #d68a69;
  --peach-soft: #f2d8ca;
  --gold: #b28b55;
  --line: rgba(47, 64, 53, .14);
  --shadow: 0 24px 70px rgba(31, 43, 35, .12);
  --shadow-soft: 0 14px 36px rgba(31, 43, 35, .09);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(214, 138, 105, .08), transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(149, 160, 143, .12), transparent 27%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { background: var(--peach-soft); color: var(--green-deep); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section-sm { padding: 72px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--peach);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section-title {
  margin: 0;
  max-width: 760px;
  color: var(--green-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 4.6vw, 4.35rem);
  font-weight: 500;
  line-height: .99;
  letter-spacing: -.035em;
}
.section-lead { margin: 22px 0 0; max-width: 640px; color: var(--ink-soft); font-size: 1.06rem; }

.skip-link { position: fixed; z-index: 999; left: 16px; top: -100px; padding: 12px 18px; background: var(--green); color: white; border-radius: 10px; transition: top .2s; }
.skip-link:focus { top: 16px; }

.announcement {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  text-align: center;
  color: #fff;
  background: var(--green-deep);
  font-size: .77rem;
  font-weight: 650;
  letter-spacing: .055em;
}
.announcement span { opacity: .64; margin-inline: 11px; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 253, 249, .88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: box-shadow .25s, border-color .25s, background .25s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 10px 30px rgba(30, 45, 35, .06); background: rgba(255, 253, 249, .96); }
.nav-wrap { min-height: 80px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 215px; height: auto; }
.site-nav { justify-self: center; display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; padding: 8px 0; color: var(--ink-soft); font-size: .93rem; font-weight: 650; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 1px; height: 1px; background: var(--peach); transition: right .25s; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green-deep); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 18px; height: 1.5px; margin: 4px auto; background: var(--green-deep); transition: transform .25s, opacity .25s; }
.menu-toggle.active span { opacity: 0; }
.menu-toggle.active::before { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle.active::after { transform: translateY(-5.5px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 760;
  transition: transform .22s, box-shadow .22s, background .22s, color .22s, border-color .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--green); box-shadow: 0 13px 24px rgba(67, 84, 71, .19); }
.btn-primary:hover { background: var(--green-deep); box-shadow: 0 16px 28px rgba(47, 64, 53, .24); }
.btn-secondary { color: var(--green-deep); border-color: var(--line); background: rgba(255,255,255,.7); }
.btn-secondary:hover { border-color: rgba(47,64,53,.32); background: white; }
.btn-peach { color: #fff; background: var(--peach); box-shadow: 0 13px 24px rgba(214, 138, 105, .22); }
.btn-peach:hover { background: #c87554; }
.btn-icon { width: 17px; height: 17px; flex: 0 0 17px; }
.btn-sm { min-height: 42px; padding: 10px 17px; font-size: .83rem; }

.hero { position: relative; overflow: hidden; padding: 68px 0 84px; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: -160px; border: 1px solid rgba(67,84,71,.12); border-radius: 50%; box-shadow: 0 0 0 90px rgba(149,160,143,.04), 0 0 0 180px rgba(214,138,105,.025); }
.hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(45px, 7vw, 94px); }
.hero-copy { position: relative; z-index: 2; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; padding: 8px 13px; border: 1px solid rgba(214,138,105,.28); border-radius: 999px; color: #9f5d43; background: rgba(242,216,202,.38); font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.hero-tag i { width: 7px; height: 7px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 5px rgba(214,138,105,.13); }
.hero h1 { margin: 0; color: var(--green-deep); font-family: Georgia, "Times New Roman", serif; font-size: clamp(3.4rem, 6.7vw, 6.7rem); font-weight: 500; line-height: .88; letter-spacing: -.055em; }
.hero h1 em { color: var(--peach); font-weight: 500; }
.hero-copy > p { max-width: 550px; margin: 28px 0 0; color: var(--ink-soft); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.hero-proof { display: flex; align-items: center; gap: 15px; margin-top: 30px; }
.avatar-stack { display: flex; }
.avatar-stack span { width: 35px; height: 35px; display: grid; place-items: center; margin-left: -7px; border: 3px solid var(--paper); border-radius: 50%; color: white; background: var(--green); font-size: .68rem; font-weight: 800; }
.avatar-stack span:first-child { margin-left: 0; background: var(--peach); }
.avatar-stack span:nth-child(2) { background: var(--gold); }
.hero-proof strong { display: block; color: var(--green-deep); font-size: .92rem; }
.hero-proof small { color: var(--ink-soft); }
.hero-media { position: relative; min-height: 650px; }
.hero-photo {
  position: absolute;
  inset: 0 3% 0 10%;
  overflow: hidden;
  border-radius: 50% 50% 32px 32px / 44% 44% 32px 32px;
  box-shadow: var(--shadow);
  background: var(--sage-light);
}
.hero-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(31,43,35,.24), transparent 40%); pointer-events: none; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-badge { position: absolute; z-index: 2; right: 0; top: 13%; width: 144px; height: 144px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--green); box-shadow: 0 18px 42px rgba(47,64,53,.24); text-align: center; transform: rotate(7deg); }
.hero-badge::before { content: ""; position: absolute; inset: 8px; border: 1px dashed rgba(255,255,255,.55); border-radius: 50%; }
.hero-badge span { position: relative; max-width: 105px; font-family: Georgia, serif; font-size: 1rem; line-height: 1.18; }
.hero-note { position: absolute; z-index: 2; left: 0; bottom: 8%; max-width: 220px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,253,249,.92); box-shadow: var(--shadow-soft); backdrop-filter: blur(12px); }
.hero-note strong { display: block; color: var(--green-deep); font-family: Georgia, serif; font-size: 1.24rem; font-weight: 500; }
.hero-note span { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .78rem; }

.trust-strip { border-block: 1px solid var(--line); background: rgba(248,244,236,.7); }
.trust-grid { min-height: 112px; display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 14px; padding: 20px 28px; border-right: 1px solid var(--line); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: 0; padding-right: 0; }
.trust-icon { width: 43px; height: 43px; display: grid; place-items: center; flex: 0 0 43px; border-radius: 50%; color: var(--green); background: white; box-shadow: 0 8px 20px rgba(31,43,35,.07); font-weight: 900; }
.trust-item strong { display: block; color: var(--green-deep); font-size: .92rem; }
.trust-item span { display: block; color: var(--ink-soft); font-size: .76rem; line-height: 1.35; }

.moments { overflow: hidden; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 42px; }
.section-head .btn { flex: 0 0 auto; }
.moment-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; grid-template-rows: 280px 280px; gap: 18px; }
.moment-card { position: relative; overflow: hidden; min-height: 250px; border-radius: var(--radius-lg); background: var(--sage-light); box-shadow: 0 10px 35px rgba(31,43,35,.07); }
.moment-card:first-child { grid-row: 1 / 3; }
.moment-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.8,.2,1); }
.moment-card:hover img { transform: scale(1.055); }
.moment-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,37,30,.76), rgba(26,37,30,.02) 65%); }
.moment-copy { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 26px; color: white; }
.moment-copy small { display: block; opacity: .78; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.moment-copy h3 { margin: 5px 0 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 2vw, 2.25rem); font-weight: 500; line-height: 1.08; }
.moment-card:first-child .moment-copy { padding: 35px; }
.moment-card:first-child .moment-copy h3 { font-size: clamp(2.25rem, 3vw, 3.35rem); }

.products-section { background: var(--cream); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product-card { position: relative; overflow: hidden; border: 1px solid rgba(47,64,53,.09); border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 10px 28px rgba(31,43,35,.055); transition: transform .28s, box-shadow .28s; }
.product-card:hover { transform: translateY(-7px); box-shadow: 0 22px 42px rgba(31,43,35,.11); }
.product-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #eceeea; cursor: zoom-in; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-media img { transform: scale(1.045); }
.product-badge { position: absolute; top: 13px; left: 13px; z-index: 2; padding: 7px 10px; border-radius: 999px; color: var(--green-deep); background: rgba(255,253,249,.9); box-shadow: 0 7px 18px rgba(31,43,35,.08); backdrop-filter: blur(8px); font-size: .66rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase; }
.product-content { padding: 19px 18px 18px; }
.product-content h3 { margin: 0; color: var(--green-deep); font-family: Georgia, serif; font-size: 1.35rem; font-weight: 500; line-height: 1.08; }
.product-content p { min-height: 42px; margin: 9px 0 17px; color: var(--ink-soft); font-size: .81rem; line-height: 1.45; }
.product-meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.product-meta span { color: var(--peach); font-size: .74rem; font-weight: 800; }
.product-meta a { color: var(--green-deep); font-size: .77rem; font-weight: 850; }
.product-meta a:hover { color: var(--peach); }

.process { overflow: hidden; }
.process::before { content: ""; position: absolute; width: 430px; height: 430px; left: -260px; bottom: -160px; border-radius: 50%; background: rgba(149,160,143,.1); }
.process-grid { display: grid; grid-template-columns: .83fr 1.17fr; align-items: center; gap: 80px; }
.process-photo { position: relative; }
.process-photo-main { overflow: hidden; aspect-ratio: 4 / 5.2; border-radius: 180px 180px var(--radius-xl) var(--radius-xl); box-shadow: var(--shadow); }
.process-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.process-stamp { position: absolute; right: -32px; bottom: 45px; width: 150px; height: 150px; display: grid; place-items: center; border-radius: 50%; color: var(--green-deep); background: var(--peach-soft); box-shadow: var(--shadow-soft); text-align: center; }
.process-stamp span { max-width: 100px; font-family: Georgia, serif; font-size: 1.05rem; line-height: 1.15; }
.steps { margin-top: 38px; }
.step { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.step:first-child { padding-top: 0; }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(47,64,53,.18); border-radius: 50%; color: var(--peach); font-family: Georgia, serif; font-size: 1.25rem; }
.step h3 { margin: 0 0 4px; color: var(--green-deep); font-family: Georgia, serif; font-size: 1.32rem; font-weight: 500; }
.step p { margin: 0; color: var(--ink-soft); font-size: .91rem; }

.about-section { background: var(--green-deep); color: white; overflow: hidden; }
.about-section::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 28px 28px; }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 76px; }
.about-photo { position: relative; }
.about-photo img { width: 100%; aspect-ratio: 1 / 1.07; object-fit: cover; object-position: 50% 20%; border-radius: var(--radius-xl); box-shadow: 0 28px 80px rgba(0,0,0,.24); }
.about-chip { position: absolute; right: -20px; bottom: 28px; max-width: 220px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.25); border-radius: 18px; color: var(--green-deep); background: var(--cream); box-shadow: 0 18px 38px rgba(0,0,0,.16); font-family: Georgia, serif; font-size: 1.1rem; line-height: 1.25; }
.about-section .section-kicker { color: #f2b79d; }
.about-section .section-title { color: white; }
.about-copy > p { margin: 23px 0 0; max-width: 560px; color: rgba(255,255,255,.72); font-size: 1rem; }
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 31px; }
.about-value { padding: 17px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.045); }
.about-value strong { display: block; color: #fff; font-family: Georgia, serif; font-size: 1.12rem; font-weight: 500; }
.about-value span { color: rgba(255,255,255,.62); font-size: .72rem; }

.reviews-header { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 30px; }
.rating-card { min-width: 220px; padding: 22px; border: 1px solid var(--line); border-radius: 20px; background: white; box-shadow: var(--shadow-soft); }
.rating-card strong { font-family: Georgia, serif; font-size: 2.7rem; font-weight: 500; line-height: 1; }
.stars { display: flex; gap: 3px; margin: 8px 0 4px; color: var(--gold); }
.stars img { width: 16px; height: 16px; }
.rating-card span { color: var(--ink-soft); font-size: .78rem; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 45px; }
.review-card { display: flex; flex-direction: column; min-height: 285px; padding: 29px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: white; box-shadow: 0 12px 32px rgba(31,43,35,.06); }
.review-card .quote { margin: 0; color: var(--green-deep); font-family: Georgia, serif; font-size: 1.28rem; line-height: 1.45; }
.reviewer { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 25px; }
.reviewer-avatar { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--peach); font-weight: 800; }
.reviewer strong { display: block; color: var(--green-deep); font-size: .88rem; }
.reviewer span { display: block; color: var(--ink-soft); font-size: .7rem; }

.contact-section { padding-top: 48px; }
.contact-shell { overflow: hidden; display: grid; grid-template-columns: .85fr 1.15fr; min-height: 540px; border: 1px solid var(--line); border-radius: var(--radius-xl); background: var(--cream); box-shadow: var(--shadow); }
.contact-copy { padding: clamp(38px, 6vw, 72px); }
.contact-copy h2 { margin: 0; color: var(--green-deep); font-family: Georgia, serif; font-size: clamp(2.35rem, 4vw, 4.1rem); font-weight: 500; line-height: .98; }
.contact-copy > p { margin: 20px 0 27px; color: var(--ink-soft); }
.contact-list { display: grid; gap: 14px; margin: 0 0 28px; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 40px 1fr; gap: 13px; align-items: start; }
.contact-list i { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; color: var(--green); background: white; font-style: normal; font-weight: 850; }
.contact-list strong { display: block; font-size: .86rem; }
.contact-list span, .contact-list a { color: var(--ink-soft); font-size: .8rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.map-wrap { min-height: 100%; background: #dde3dc; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 540px; border: 0; filter: saturate(.8) contrast(.95); }

.cta-section { padding: 82px 0; }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 35px; padding: 48px 54px; border-radius: var(--radius-xl); color: white; background: var(--peach); box-shadow: 0 25px 60px rgba(184,103,73,.2); }
.cta-card::before { content: ""; position: absolute; width: 280px; height: 280px; right: 15%; top: -190px; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.06), 0 0 0 110px rgba(255,255,255,.035); }
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { margin: 0; max-width: 680px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.7rem); font-weight: 500; line-height: 1; }
.cta-card p { margin: 12px 0 0; opacity: .86; }
.cta-card .btn { color: var(--green-deep); background: white; }

.site-footer { padding: 68px 0 24px; color: rgba(255,255,255,.7); background: #233129; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .8fr .9fr; gap: 48px; }
.footer-brand img { width: 210px; filter: brightness(0) invert(1); opacity: .96; }
.footer-brand p { max-width: 340px; margin: 19px 0 0; font-size: .86rem; }
.footer-col h3 { margin: 3px 0 17px; color: white; font-family: Georgia, serif; font-size: 1.15rem; font-weight: 500; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { width: fit-content; font-size: .81rem; }
.footer-links a:hover { color: white; }
.social-row { display: flex; gap: 9px; margin-top: 20px; }
.social-link { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; color: white; transition: background .2s, transform .2s; }
.social-link:hover { background: var(--peach); transform: translateY(-2px); }
.social-link img { width: 17px; height: 17px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.floating-social { position: fixed; z-index: 60; right: 20px; bottom: 20px; display: grid; gap: 9px; }
.float-btn { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; box-shadow: 0 14px 30px rgba(31,43,35,.23); transition: transform .22s, box-shadow .22s; }
.float-btn:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 18px 36px rgba(31,43,35,.29); }
.float-btn img { width: 24px; height: 24px; }
.float-instagram { background: var(--peach); }
.float-whatsapp { background: #1f8f5f; }

/* Catalog */
.page-hero { padding: 66px 0 58px; border-bottom: 1px solid var(--line); background: linear-gradient(135deg, rgba(248,244,236,.84), rgba(223,229,220,.42)); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .6fr; align-items: center; gap: 60px; }
.page-hero h1 { margin: 0; color: var(--green-deep); font-family: Georgia, serif; font-size: clamp(3rem, 6vw, 6.2rem); font-weight: 500; line-height: .9; letter-spacing: -.05em; }
.page-hero p { max-width: 640px; margin: 22px 0 0; color: var(--ink-soft); }
.page-hero-photo { position: relative; height: 310px; overflow: hidden; border-radius: 160px 160px 26px 26px; box-shadow: var(--shadow-soft); }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.catalog-toolbar { position: sticky; z-index: 40; top: 80px; padding: 15px 0; border-bottom: 1px solid var(--line); background: rgba(255,253,249,.93); backdrop-filter: blur(16px); }
.toolbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn { padding: 9px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-soft); background: transparent; cursor: pointer; font-size: .78rem; font-weight: 750; transition: .2s; }
.filter-btn:hover, .filter-btn.active { color: white; border-color: var(--green); background: var(--green); }
.catalog-search { position: relative; min-width: 260px; }
.catalog-search input { width: 100%; height: 43px; padding: 0 42px 0 15px; border: 1px solid var(--line); border-radius: 999px; outline: none; color: var(--ink); background: white; }
.catalog-search input:focus { border-color: var(--sage); box-shadow: 0 0 0 4px rgba(149,160,143,.14); }
.catalog-search span { position: absolute; right: 15px; top: 9px; color: var(--ink-soft); }
.catalog-main { padding: 68px 0 104px; }
.catalog-summary { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.catalog-summary h2 { margin: 0; color: var(--green-deep); font-family: Georgia, serif; font-size: 2.4rem; font-weight: 500; }
.catalog-summary p { margin: 5px 0 0; color: var(--ink-soft); font-size: .9rem; }
.result-count { color: var(--peach); font-size: .8rem; font-weight: 800; }
.catalog-grid { grid-template-columns: repeat(4, 1fr); }
.product-card[hidden] { display: none; }
.empty-state { display: none; padding: 50px; border: 1px dashed var(--line); border-radius: var(--radius-lg); text-align: center; color: var(--ink-soft); }
.empty-state.visible { display: block; }

/* Lightbox */
.lightbox { position: fixed; z-index: 140; inset: 0; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(20,27,23,.86); backdrop-filter: blur(10px); }
.lightbox.open { display: flex; }
.lightbox-dialog { position: relative; width: min(920px, 100%); display: grid; grid-template-columns: minmax(0, 1fr) 300px; overflow: hidden; border-radius: 24px; background: var(--paper); box-shadow: 0 35px 100px rgba(0,0,0,.38); }
.lightbox-image { max-height: 82vh; width: 100%; height: 100%; object-fit: contain; background: #e9ece7; }
.lightbox-copy { display: flex; flex-direction: column; justify-content: center; padding: 32px; }
.lightbox-copy h3 { margin: 0; color: var(--green-deep); font-family: Georgia, serif; font-size: 2rem; font-weight: 500; line-height: 1.08; }
.lightbox-copy p { color: var(--ink-soft); font-size: .88rem; }
.lightbox-close { position: absolute; z-index: 2; top: 13px; right: 13px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: white; background: rgba(35,49,41,.88); cursor: pointer; font-size: 1.35rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1050px) {
  .site-nav { gap: 19px; }
  .brand img { width: 190px; }
  .nav-actions .btn { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
  .hero-media { min-height: 560px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-item:first-child, .trust-item:nth-child(3) { padding-left: 0; }
  .product-grid, .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .process-grid { gap: 50px; }
  .footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
  .footer-col:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .announcement { font-size: .69rem; }
  .nav-wrap { min-height: 72px; grid-template-columns: 1fr auto; }
  .brand img { width: 180px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 107px 14px auto; display: grid; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,253,249,.98); box-shadow: var(--shadow); transform: translateY(-15px); opacity: 0; visibility: hidden; transition: .25s; }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-actions { display: none; }
  .hero { padding: 52px 0 70px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .hero-media { min-height: 620px; max-width: 590px; width: 100%; margin: 0 auto; }
  .hero-photo { inset: 0 6%; }
  .hero-note { left: 1%; }
  .hero-badge { right: 0; }
  .section-head, .reviews-header { align-items: start; flex-direction: column; display: flex; }
  .moment-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 270px 270px; }
  .moment-card:first-child { grid-column: 1 / 3; grid-row: auto; }
  .moment-card:nth-child(4) { grid-column: 1 / 3; }
  .product-grid, .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .about-grid, .contact-shell, .page-hero-grid { grid-template-columns: 1fr; }
  .process-photo { max-width: 520px; margin: 0 auto; }
  .about-photo { max-width: 560px; }
  .about-chip { right: 14px; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card { min-height: auto; }
  .map-wrap iframe { min-height: 420px; }
  .cta-card { grid-template-columns: 1fr; padding: 40px; }
  .cta-card .btn { width: fit-content; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col:last-child { grid-column: auto; }
  .catalog-toolbar { top: 72px; }
  .toolbar-inner { align-items: stretch; flex-direction: column; }
  .catalog-search { min-width: 0; }
  .page-hero-photo { height: 360px; }
  .lightbox-dialog { grid-template-columns: 1fr; max-height: 92vh; overflow: auto; }
  .lightbox-image { max-height: 61vh; }
  .lightbox-copy { padding: 24px; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .section-title { font-size: clamp(2.2rem, 13vw, 3.6rem); }
  .hero h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .hero-actions .btn { width: 100%; }
  .hero-media { min-height: 490px; }
  .hero-photo { inset: 0 0 0 7%; }
  .hero-badge { width: 112px; height: 112px; right: -3px; top: 10%; }
  .hero-badge span { max-width: 80px; font-size: .82rem; }
  .hero-note { max-width: 180px; padding: 14px 16px; bottom: 5%; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); padding: 17px 0; }
  .trust-item:last-child { border-bottom: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .moment-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 310px); }
  .moment-card:first-child, .moment-card:nth-child(4) { grid-column: auto; }
  .product-grid, .catalog-grid { grid-template-columns: 1fr; }
  .product-content p { min-height: 0; }
  .process-stamp { right: -6px; width: 118px; height: 118px; }
  .about-values { grid-template-columns: 1fr; }
  .contact-copy { padding: 32px 24px; }
  .contact-actions .btn { width: 100%; }
  .cta-card { padding: 34px 25px; }
  .cta-card .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .floating-social { right: 13px; bottom: 13px; }
  .float-btn { width: 50px; height: 50px; }
  .catalog-summary { align-items: flex-start; flex-direction: column; }
  .filter-group { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; }
  .filter-btn { flex: 0 0 auto; }
  .page-hero-photo { height: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
