@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@500;600;700&display=swap');

:root {
  --cream: #f7f1e8;
  --cream-2: #efe3d4;
  --wood: #c8925b;
  --wood-dark: #5a3d2b;
  --ink: #2e2b28;
  --muted: #6d675f;
  --sage: #8c9a7a;
  --white: #fffdf9;
  --line: rgba(90, 61, 43, .14);
  --shadow: 0 20px 70px rgba(72, 51, 34, .12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { font-family: Manrope, Inter, sans-serif; line-height: 1.12; letter-spacing: -.035em; }
h1 { font-size: clamp(3rem, 6vw, 6rem); }
h2 { font-size: clamp(2.15rem, 4vw, 4rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 110px 0; }
.section-soft { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark p { color: rgba(255,255,255,.7); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--wood-dark);
  font: 700 .76rem/1 Manrope, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ""; background: var(--wood); }
.section-dark .eyebrow { color: #e4b98c; }
.section-title { max-width: 760px; margin-bottom: 52px; }
.section-title h2 { margin-bottom: 18px; }
.section-title p { max-width: 650px; font-size: 1.05rem; }
.split-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 50px; }
.split-heading h2 { max-width: 690px; margin-bottom: 0; }

.announcement { background: var(--ink); color: rgba(255,255,255,.86); font-size: .75rem; }
.announcement-inner { min-height: 34px; display: flex; align-items: center; justify-content: center; gap: 16px; letter-spacing: .04em; }
.announcement i { width: 3px; height: 3px; border-radius: 50%; background: var(--wood); }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,253,249,.95); border-bottom: 1px solid transparent; backdrop-filter: blur(14px); transition: .25s ease; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(72,51,34,.06); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { width: 190px; flex: 0 0 auto; }
.primary-nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.primary-nav a { position: relative; padding: 28px 0; color: #514c46; font-size: .9rem; font-weight: 600; }
.primary-nav a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; content: ""; background: var(--wood); transform: scaleX(0); transition: transform .2s ease; }
.primary-nav a:hover::after, .primary-nav a.active::after { transform: scaleX(1); }
.nav-group { position: relative; display: flex; align-items: center; }
.nav-dropdown { position: absolute; top: calc(100% - 5px); left: 50%; display: none; width: 250px; padding: 10px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow); transform: translateX(-50%); }
.nav-group:hover .nav-dropdown, .nav-group:focus-within .nav-dropdown { display: grid; }
.primary-nav .nav-dropdown a { padding: 10px 12px; border-radius: 9px; color: var(--ink); font-size: .8rem; }
.primary-nav .nav-dropdown a::after { display: none; }
.primary-nav .nav-dropdown a:hover { background: var(--cream); color: var(--wood-dark); }
.menu-toggle { display: none; border: 0; background: none; }

.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 9px; padding: 0 24px; border: 1px solid var(--wood-dark); border-radius: 999px; background: var(--wood-dark); color: white; font-weight: 700; transition: .22s ease; cursor: pointer; }
.button:hover { transform: translateY(-2px); background: #432b1e; box-shadow: 0 12px 30px rgba(90,61,43,.18); }
.button-outline { background: rgba(255,255,255,.55); color: var(--wood-dark); }
.button-outline:hover { color: white; }
.button-small { min-height: 44px; padding-inline: 19px; font-size: .82rem; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--wood-dark); font-weight: 700; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link.light { color: #f2c697; }

.home-hero { position: relative; min-height: 720px; display: grid; align-items: center; overflow: hidden; background: var(--cream); }
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(247,241,232,.96) 0%, rgba(247,241,232,.78) 38%, rgba(247,241,232,0) 68%); }
.hero-content { position: relative; z-index: 2; width: min(630px, 52%); padding: 82px 0; }
.hero-content h1 { margin-bottom: 25px; }
.hero-content p { max-width: 570px; margin-bottom: 34px; color: #5c554e; font-size: 1.12rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.micro-proof { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; color: var(--wood-dark); font-size: .84rem; font-weight: 600; }
.micro-proof span { display: flex; align-items: center; gap: 8px; }
.micro-proof span::before { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); content: ""; }

.stats { position: relative; z-index: 3; margin-top: -38px; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--white); box-shadow: var(--shadow); }
.stat { padding: 26px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; color: var(--wood-dark); font: 700 1.45rem/1.2 Manrope, sans-serif; }
.stat span { display: block; margin-top: 5px; color: var(--muted); font-size: .82rem; }

.category-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.category-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 48px rgba(72,51,34,.07); transition: transform .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.category-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.category-copy { padding: 27px 28px 30px; }
.category-copy h3 { margin-bottom: 10px; }
.category-copy p { min-height: 52px; margin-bottom: 18px; font-size: .92rem; }

.feature-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.feature-visual { position: relative; }
.feature-visual > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.feature-badge { position: absolute; right: -22px; bottom: 30px; width: 175px; padding: 22px; border-radius: var(--radius-sm); background: var(--wood-dark); color: white; box-shadow: var(--shadow); }
.feature-badge strong { display: block; font: 700 2rem/1 Manrope, sans-serif; }
.feature-badge span { display: block; margin-top: 7px; font-size: .8rem; opacity: .75; }
.feature-copy h2 { margin-bottom: 22px; }
.feature-copy > p { margin-bottom: 28px; font-size: 1.05rem; }
.check-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin: 25px 0 34px; }
.check-grid span { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; }
.check-grid span::before { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--cream-2); color: var(--wood-dark); content: "✓"; font-size: .75rem; }

.process-grid { display: grid; grid-template-columns: repeat(5,1fr); counter-reset: process; }
.process-step { position: relative; padding: 0 24px; border-left: 1px solid rgba(255,255,255,.14); counter-increment: process; }
.process-step:first-child { padding-left: 0; border: 0; }
.process-step::before { display: block; margin-bottom: 32px; color: #e4b98c; content: "0" counter(process); font: 700 .78rem/1 Manrope, sans-serif; letter-spacing: .14em; }
.process-step h3 { margin-bottom: 12px; color: white; font-size: 1.1rem; }
.process-step p { font-size: .88rem; }

.proof-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; }
.proof-card { min-height: 360px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.proof-card.wood { display: flex; flex-direction: column; justify-content: end; background: linear-gradient(150deg, rgba(44,31,23,.18), rgba(44,31,23,.7)), url('assets/real/operations/sample-room.jpg') center/cover; color: white; }
.proof-card.wood::before { position: absolute; }
.proof-card h3 { font-size: 1.75rem; }
.proof-card.wood p { max-width: 460px; color: rgba(255,255,255,.82); }
.proof-list { display: grid; gap: 12px; margin-top: 25px; }
.proof-list div { padding: 16px 18px; border-radius: 12px; background: var(--cream); font-size: .9rem; font-weight: 600; }

.cta-band { overflow: hidden; border-radius: var(--radius); background: var(--cream); }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; }
.cta-copy { padding: 65px; }
.cta-copy h2 { margin-bottom: 18px; }
.cta-copy p { max-width: 560px; margin-bottom: 28px; }
.cta-image { height: 100%; min-height: 450px; background: url('assets/hero/kaimays-l-scratcher-hero-mobile-1080x1440.webp') center 60%/cover; }

.page-hero { padding: 92px 0 70px; background: var(--cream); }
.page-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; }
.page-hero h1 { margin-bottom: 24px; font-size: clamp(3rem,5vw,5.4rem); }
.page-hero p { max-width: 640px; font-size: 1.1rem; }
.page-hero-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.page-hero-visual img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
.page-hero-visual img:first-child { grid-row: span 2; height: 100%; }

.product-row { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; padding: 42px 0; border-bottom: 1px solid var(--line); }
.product-row:nth-child(even) .product-image { order: 2; }
.product-image img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.product-copy h2 { margin-bottom: 18px; }
.specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.specs span { padding: 8px 13px; border-radius: 999px; background: var(--cream); color: var(--wood-dark); font-size: .78rem; font-weight: 700; }

.catalog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.catalog-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 48px rgba(72,51,34,.07); }
.catalog-card > img, .catalog-image-link img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #f8f6f2; }
.catalog-image-link { display: block; overflow: hidden; }
.catalog-image-link img { transition: transform .3s ease; }
.catalog-image-link:hover img { transform: scale(1.035); }
.catalog-card > div { padding: 26px 28px 30px; }
.catalog-card small { color: var(--wood-dark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-card h3 { margin: 11px 0; }
.catalog-card p { min-height: 72px; font-size: .9rem; }
.catalog-grid-single { grid-template-columns: minmax(0, 760px); }

.product-category-nav { position: static; border-block: 1px solid var(--line); background: var(--white); }
.product-category-nav-inner { display: grid; grid-template-columns: repeat(5,1fr); }
.product-category-nav-inner { scrollbar-width: none; }
.product-category-nav-inner::-webkit-scrollbar { display: none; }
.product-category-nav a { display: flex; min-height: 74px; align-items: center; justify-content: center; gap: 9px; padding: 12px; border-right: 1px solid var(--line); color: var(--wood-dark); font-size: .78rem; font-weight: 700; text-align: center; }
.product-category-nav a:last-child { border-right: 0; }
.product-category-nav a:hover { background: var(--cream); }
.product-category-nav a span { color: var(--wood); font: 700 .66rem/1 Manrope, sans-serif; }
.product-collection { scroll-margin-top: 120px; }
.collection-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.collection-heading > div { max-width: 760px; }
.collection-heading h2 { margin-bottom: 14px; }
.collection-heading p { margin-bottom: 0; }
.collection-heading .button-outline { flex: 0 0 auto; background: transparent; }
.catalog-card .specs { margin: 18px 0 24px; }
.button-whatsapp { background: #1f9d58; }
.button-whatsapp:hover { background: #17864a; }

.product-detail-hero { padding: 44px 0 90px; background: var(--cream); }
.product-detail-hero .breadcrumb { margin-bottom: 34px; }
.product-detail-grid { display: grid; grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr); gap: 72px; align-items: center; }
.product-gallery-main { display: grid; aspect-ratio: 1; overflow: hidden; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.product-gallery-main img { width: 100%; height: 100%; object-fit: contain; transition: transform .3s ease, object-position .3s ease; }
.product-gallery-main img.is-zoomed { transform: scale(1.65); }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 14px; }
.gallery-thumb { overflow: hidden; padding: 0 0 10px; border: 1px solid var(--line); border-radius: 14px; background: white; color: var(--ink); cursor: pointer; }
.gallery-thumb.is-active { border-color: var(--wood); box-shadow: 0 0 0 2px rgba(160,108,64,.16); }
.gallery-thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.gallery-thumb span { display: block; padding-top: 9px; font-size: .72rem; font-weight: 700; }
.product-summary h1 { margin: 14px 0 20px; font-size: clamp(2.5rem,5vw,4.8rem); line-height: .98; }
.product-summary > p { max-width: 650px; font-size: 1.04rem; }
.product-highlights { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; margin: 28px 0; }
.product-highlights span { padding: 12px 14px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.6); color: var(--ink); font-size: .78rem; font-weight: 700; }
.product-detail-actions { display: none !important; }
.product-detail-actions .button { width: 100%; justify-content: center; text-align: center; }
.product-whatsapp-button { background: #25d366; }
.product-whatsapp-button:hover { background: #1ebe5d; }
.product-whatsapp-button .whatsapp-icon { width: 21px; height: 21px; margin-right: 9px; fill: currentColor; }
.product-note { display: block; margin-top: 18px; color: var(--muted); line-height: 1.6; }
.product-information-grid { display: grid; grid-template-columns: minmax(0,1.2fr) minmax(330px,.8fr); gap: 70px; align-items: start; }
.product-information-grid article > p { max-width: 780px; }
.detail-feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 34px; }
.detail-feature-grid div { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.detail-feature-grid strong, .detail-feature-grid span { display: block; }
.detail-feature-grid span { margin-top: 7px; color: var(--muted); font-size: .84rem; line-height: 1.6; }
.product-spec-panel { padding: 32px; border-radius: var(--radius); background: var(--ink); color: white; }
.product-spec-panel h3 { margin-bottom: 20px; color: white; }
.product-spec-panel dl { margin: 0; }
.product-spec-panel dl div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 15px 0; border-top: 1px solid rgba(255,255,255,.12); }
.product-spec-panel dt { color: #d8b286; font-size: .74rem; font-weight: 700; text-transform: uppercase; }
.product-spec-panel dd { margin: 0; color: rgba(255,255,255,.8); font-size: .84rem; line-height: 1.55; }
.catalog-request-card { display: grid; grid-template-columns: 280px 1fr; align-items: center; gap: 45px; min-height: 330px; padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 48px rgba(72,51,34,.07); }
.catalog-request-card small { color: var(--wood-dark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.catalog-request-card h3 { margin: 12px 0; font-size: 1.8rem; }
.catalog-request-card p { max-width: 680px; }
.category-symbol { position: relative; display: grid; width: 220px; height: 220px; place-items: center; margin: auto; border-radius: 50%; background: var(--cream); }
.category-symbol::before { width: 128px; height: 128px; border: 16px solid #caa474; border-radius: 50%; content: ""; box-shadow: inset 0 0 0 3px rgba(90,61,43,.12); }
.category-symbol::after { position: absolute; width: 36px; height: 36px; border-radius: 50%; background: var(--wood-dark); content: ""; }
.category-symbol-post::before { width: 58px; height: 150px; border: 0; border-radius: 999px; background: repeating-linear-gradient(0deg,#c39a68 0 7px,#a97b49 7px 10px); box-shadow: none; }
.category-symbol-post::after { bottom: 28px; width: 150px; height: 28px; border-radius: 50%; background: var(--wood-dark); }
.dark-value-grid .value-card { border-color: rgba(255,255,255,.12); background: #39332e; color: white; }
.dark-value-grid .value-card p { color: rgba(255,255,255,.66); }

.directory-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.directory-card { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; min-height: 370px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 16px 48px rgba(72,51,34,.07); transition: transform .25s ease, box-shadow .25s ease; }
.directory-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.directory-card > img { width: 100%; height: 100%; min-height: 370px; object-fit: cover; }
.directory-card > div:last-child { padding: 34px; }
.directory-card small { color: var(--wood-dark); font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.directory-card h2 { margin: 12px 0; font-size: clamp(1.75rem,3vw,2.7rem); }
.directory-card p { font-size: .9rem; }
.directory-card-wide { grid-column: 1/-1; grid-template-columns: 1fr 1fr; min-height: 440px; }
.directory-card-wide > img { min-height: 440px; }
.directory-card-symbol { grid-template-columns: 230px 1fr; background: var(--cream); }
.directory-card-symbol > .category-symbol { margin: 25px; }
.cta-simple { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-simple h2 { max-width: 760px; margin-bottom: 0; }
.button-light { border-color: white; background: white; color: var(--wood-dark); }
.button-light:hover { background: var(--cream); color: var(--wood-dark); }

.breadcrumb { display: flex; align-items: center; gap: 9px; margin-bottom: 26px; color: var(--muted); font-size: .8rem; }
.breadcrumb a { color: var(--wood-dark); font-weight: 700; }
.breadcrumb strong { color: var(--ink); }
.category-page-hero h1 { margin-bottom: 20px; }
.category-hero-single { overflow: hidden; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.category-hero-single img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.category-symbol-large { width: min(420px,100%); height: auto; aspect-ratio: 1; box-shadow: var(--shadow); }
.category-bottom-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.category-bottom-nav a { color: var(--wood-dark); font-weight: 700; }
.category-bottom-nav a:hover { color: var(--ink); }

.operations-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 22px; }
.operation-card { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.operation-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.operation-card figcaption { display: grid; gap: 4px; padding: 20px 24px 24px; }
.operation-card figcaption strong { font-family: Manrope, sans-serif; }
.operation-card figcaption span { color: var(--muted); font-size: .86rem; }

.section-side-copy { max-width: 420px; margin: 0; color: rgba(255,255,255,.66); }
.case-gallery { display: grid; grid-template-columns: repeat(5,1fr); gap: 14px; }
.case-gallery figure { overflow: hidden; margin: 0; border-radius: var(--radius-sm); background: #39322d; }
.case-gallery img { width: 100%; height: 360px; object-fit: cover; }
.case-gallery figure:nth-child(2), .case-gallery figure:nth-child(4) { transform: translateY(28px); }

.review-gallery { display: grid; gap: 18px; }
.review-gallery figure { overflow: hidden; margin: 0; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; box-shadow: 0 12px 35px rgba(72,51,34,.06); }
.review-gallery img { width: 100%; height: auto; }

.document-layout { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; align-items: center; }
.document-layout > div:first-child p { margin-bottom: 28px; }
.document-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.document-grid figure { overflow: hidden; margin: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.document-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; }
.document-grid figcaption { padding: 14px; color: var(--wood-dark); font-size: .8rem; font-weight: 700; text-align: center; }

.home-proof-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.home-proof-copy p { margin-bottom: 28px; }
.home-proof-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.home-proof-gallery img { width: 100%; height: 360px; object-fit: cover; border-radius: var(--radius-sm); }
.home-proof-gallery img:nth-child(2) { margin-top: 32px; }

.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.value-icon { display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 26px; border-radius: 50%; background: var(--cream); color: var(--wood-dark); font: 700 1.1rem/1 Manrope, sans-serif; }
.value-card p { margin-bottom: 0; font-size: .9rem; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.timeline::before { position: absolute; top: 22px; right: 9%; left: 9%; height: 1px; content: ""; background: var(--line); }
.timeline-item { position: relative; text-align: center; }
.timeline-dot { position: relative; z-index: 2; width: 46px; height: 46px; margin: 0 auto 22px; border: 8px solid var(--cream); border-radius: 50%; background: var(--wood); }
.timeline-item p { font-size: .85rem; }

.about-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.about-mark { padding: 55px; border-radius: var(--radius); background: var(--cream); }
.about-mark img { width: 100%; }
.about-hero-photo { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-hero-photo img { width: 100%; min-height: 420px; object-fit: cover; }
.about-photo-stack { display: grid; gap: 18px; }
.about-photo-stack img { width: 100%; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.about-photo-stack img:last-child { width: 78%; margin: -70px 0 0 auto; border: 9px solid var(--white); }
.about-copy blockquote { margin: 34px 0; padding-left: 28px; border-left: 3px solid var(--wood); color: var(--wood-dark); font: 600 1.45rem/1.5 Manrope, sans-serif; }
.facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 32px; }
.fact { padding: 22px; border-radius: var(--radius-sm); background: var(--cream); }
.fact strong { display: block; color: var(--wood-dark); font-family: Manrope, sans-serif; }
.fact span { color: var(--muted); font-size: .82rem; }

.article-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.article-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-sm); background: white; }
.article-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.article-copy { padding: 26px; }
.article-copy small { color: var(--wood-dark); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.article-copy h3 { min-height: 50px; margin: 12px 0; }
.article-copy p { font-size: .9rem; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact-panel { position: sticky; top: 130px; padding: 38px; border-radius: var(--radius); background: var(--ink); color: white; }
.contact-panel p { color: rgba(255,255,255,.7); }
.contact-list { display: grid; gap: 18px; margin-top: 30px; }
.contact-list div { padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-list small { display: block; color: #d8b286; text-transform: uppercase; letter-spacing: .1em; }
.contact-list strong { display: block; margin-top: 6px; font-size: .94rem; }
.contact-list a { color: white; text-decoration: underline; text-decoration-color: rgba(255,255,255,.3); text-underline-offset: 4px; }
.contact-list a:hover { text-decoration-color: #d8b286; }
.whatsapp-card { display: grid; grid-template-columns: 88px 1fr; align-items: center; gap: 16px; margin-top: 28px; padding: 12px; border-radius: 16px; background: white; color: var(--ink); }
.whatsapp-card img { width: 88px; aspect-ratio: 1; object-fit: cover; object-position: center 77%; border-radius: 10px; }
.whatsapp-card span, .whatsapp-card strong, .whatsapp-card small { display: block; }
.whatsapp-card small { margin-top: 4px; color: var(--muted); font-size: .72rem; }
.form-card { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.selected-product { display: grid; grid-template-columns: 1fr auto; gap: 5px 18px; margin: 24px 0; padding: 16px 18px; border: 1px solid #d8b286; border-radius: 14px; background: var(--cream); }
.selected-product[hidden] { display: none; }
.selected-product span { grid-column: 1/-1; color: var(--wood-dark); font-size: .72rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.selected-product strong { font-size: .96rem; }
.selected-product a { color: var(--wood-dark); font-size: .78rem; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1/-1; }
.field label { font-size: .82rem; font-weight: 700; }
.field input, .field textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; outline: none; background: var(--cream); color: var(--ink); padding: 14px 16px; transition: border .2s ease, background .2s ease; }
.field input:focus, .field textarea:focus { border-color: var(--wood); background: white; }
.field textarea { min-height: 160px; resize: vertical; }
.privacy { display: flex; gap: 10px; margin: 18px 0 24px; color: var(--muted); font-size: .8rem; }
.form-status { margin: 18px 0 0; padding: 14px 16px; border-radius: 12px; background: #eef2ea; color: #46523b; font-size: .85rem; }
.faq-layout { max-width: 900px; }

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item button { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: none; color: var(--ink); text-align: left; font-weight: 700; cursor: pointer; }
.accordion-item button::after { content: "+"; color: var(--wood-dark); font-size: 1.3rem; }
.accordion-item.open button::after { content: "−"; }
.accordion-content { display: none; max-width: 760px; padding-bottom: 24px; }
.accordion-item.open .accordion-content { display: block; }

.site-footer { padding: 76px 0 24px; background: #241f1b; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,1fr); gap: 60px; }
.footer-brand img { width: 210px; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; color: rgba(255,255,255,.62); }
.site-footer h3 { margin-bottom: 20px; color: #dcb88e; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; }
.site-footer a { display: block; margin: 10px 0; color: rgba(255,255,255,.76); font-size: .88rem; }
.site-footer a:hover { color: white; }
.footer-note { color: rgba(255,255,255,.58); font-size: .85rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.45); font-size: .75rem; }

.whatsapp-float { position: fixed; right: 22px; bottom: 96px; z-index: 45; display: grid; width: 58px; height: 58px; place-items: center; padding: 0; border: 2px solid white; border-radius: 50%; background: #25d366; color: white; box-shadow: 0 12px 35px rgba(21,91,52,.3); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.whatsapp-float .whatsapp-icon { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-float:hover { transform: translateY(-2px); background: #1ebe5d; }
.whatsapp-float.is-hidden-by-actions { opacity: 0; transform: translateY(12px); pointer-events: none; }
body.product-actions-visible #chat-widget-container { opacity: 0 !important; visibility: hidden !important; pointer-events: none !important; }

@media (max-width: 980px) {
  .header-cta { margin-left: auto; }
  .menu-toggle { order: 3; display: grid; width: 45px; height: 45px; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 50%; }
  .menu-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }
  .menu-toggle b { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .primary-nav { position: absolute; z-index: 100; top: 100%; right: 0; left: 0; display: none; min-height: calc(100vh - 116px); margin: 0; padding: 28px 30px; background: #fffdf9; box-shadow: 0 30px 60px rgba(72,51,34,.16); flex-direction: column; align-items: stretch; gap: 0; }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font: 600 1.25rem Manrope, sans-serif; }
  .primary-nav a::after { display: none; }
  .nav-group { display: block; }
  .nav-group > a { display: block; }
  .nav-dropdown { position: static; display: grid; width: auto; padding: 4px 0 10px 18px; border: 0; border-radius: 0; background: transparent; box-shadow: none; transform: none; }
  .primary-nav .nav-dropdown a { padding: 10px 12px; border-bottom: 0; font: 600 .9rem Inter, sans-serif; }
  .home-hero { min-height: 680px; }
  .hero-content { width: 58%; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .category-grid, .value-grid, .article-grid, .catalog-grid { grid-template-columns: repeat(2,1fr); }
  .feature-layout, .page-hero-grid, .about-story, .contact-grid, .document-layout, .home-proof-layout { grid-template-columns: 1fr; }
  .feature-visual { max-width: 660px; }
  .process-grid { grid-template-columns: repeat(3,1fr); gap: 38px 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-copy { padding: 45px; }
  .product-row { gap: 35px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .contact-panel { position: static; }
  .case-gallery { grid-template-columns: repeat(3,1fr); }
  .case-gallery figure:nth-child(2), .case-gallery figure:nth-child(4) { transform: none; }
  .product-category-nav-inner { overflow-x: auto; grid-template-columns: repeat(5,minmax(180px,1fr)); }
  .directory-card, .directory-card-wide { grid-template-columns: 1fr; }
  .directory-card > img, .directory-card-wide > img { min-height: 330px; }
  .directory-card-symbol { grid-template-columns: 220px 1fr; }
  .product-detail-grid, .product-information-grid { grid-template-columns: 1fr; }
  .product-detail-grid { gap: 48px; }
  .product-information-grid { gap: 42px; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .announcement-inner { gap: 7px; font-size: .62rem; }
  .announcement-inner span:nth-of-type(3), .announcement-inner i:last-of-type { display: none; }
  .header-inner { min-height: 70px; gap: 14px; }
  .brand { width: 142px; }
  .header-cta { display: none; }
  .primary-nav { top: 100%; min-height: calc(100vh - 104px); }
  .home-hero { min-height: 790px; align-items: start; }
  .hero-media img { object-position: center bottom; }
  .hero-shade { background: linear-gradient(180deg, rgba(247,241,232,.99) 0%, rgba(247,241,232,.92) 33%, rgba(247,241,232,.08) 62%); }
  .hero-content { width: 100%; padding: 55px 0 380px; }
  .hero-content h1 { max-width: 560px; font-size: clamp(2.6rem,12vw,4rem); }
  .hero-content p { max-width: 500px; font-size: .98rem; }
  .hero-actions .button { flex: 1; padding-inline: 15px; }
  .micro-proof { display: none; }
  .stats { margin-top: -28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 20px 17px; }
  .stat strong { font-size: 1.12rem; }
  .split-heading { display: block; }
  .split-heading .text-link { margin-top: 20px; }
  .category-grid, .value-grid, .article-grid, .catalog-grid, .operations-grid { grid-template-columns: 1fr; }
  .category-copy p { min-height: 0; }
  .feature-layout { gap: 42px; }
  .feature-badge { right: 12px; bottom: 12px; width: 145px; padding: 17px; }
  .check-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { padding: 0 0 22px 48px; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .process-step:first-child { padding-left: 48px; }
  .process-step::before { position: absolute; top: 4px; left: 0; }
  .proof-card { min-height: 320px; padding: 28px; }
  .cta-grid { grid-template-columns: 1fr; }
  .cta-copy { padding: 36px 26px; }
  .cta-image { min-height: 360px; }
  .page-hero { padding: 65px 0 55px; }
  .page-hero-grid { gap: 45px; }
  .page-hero-visual { gap: 8px; }
  .product-row, .product-row:nth-child(even) { grid-template-columns: 1fr; gap: 25px; }
  .product-row:nth-child(even) .product-image { order: 0; }
  .timeline { grid-template-columns: 1fr; text-align: left; }
  .timeline::before { top: 0; bottom: 0; left: 22px; width: 1px; height: auto; }
  .timeline-item { display: grid; grid-template-columns: 50px 1fr; align-items: start; text-align: left; }
  .timeline-dot { margin: 0; }
  .facts { grid-template-columns: 1fr; }
  .catalog-card p { min-height: 0; }
  .product-detail-hero { padding: 30px 0 68px; }
  .product-detail-hero .breadcrumb { margin-bottom: 24px; }
  .product-detail-grid { gap: 36px; }
  .product-summary h1 { font-size: clamp(2.35rem,12vw,3.6rem); }
  .product-highlights, .detail-feature-grid { grid-template-columns: 1fr; }
  .product-detail-actions { width: 100%; max-width: none; }
  .gallery-thumb span { padding: 8px 4px 0; font-size: .64rem; }
  .product-spec-panel { padding: 26px 22px; }
  .product-spec-panel dl div { grid-template-columns: 88px 1fr; gap: 12px; }
  .catalog-grid-single { grid-template-columns: 1fr; }
  .product-category-nav-inner { width: 100%; grid-template-columns: repeat(5,160px); }
  .product-category-nav a { min-height: 62px; padding: 9px; }
  .product-collection { scroll-margin-top: 90px; }
  .collection-heading { display: block; margin-bottom: 30px; }
  .collection-heading .button { margin-top: 18px; }
  .catalog-request-card { grid-template-columns: 1fr; gap: 26px; min-height: 0; padding: 28px 22px; }
  .category-symbol { width: 160px; height: 160px; }
  .category-symbol::before { width: 96px; height: 96px; border-width: 12px; }
  .category-symbol-post::before { width: 46px; height: 108px; border: 0; }
  .category-symbol-post::after { bottom: 21px; width: 112px; height: 22px; }
  .directory-grid { grid-template-columns: 1fr; }
  .directory-card-wide { grid-column: auto; }
  .directory-card, .directory-card-wide, .directory-card-symbol { grid-template-columns: 1fr; min-height: 0; }
  .directory-card > img, .directory-card-wide > img { min-height: 0; aspect-ratio: 1; }
  .directory-card > div:last-child { padding: 27px 24px 30px; }
  .directory-card-symbol > .category-symbol { margin: 30px auto 0; }
  .cta-simple { align-items: flex-start; flex-direction: column; }
  .category-bottom-nav { align-items: flex-start; flex-direction: column; }
  .case-gallery { grid-template-columns: 1fr 1fr; gap: 9px; }
  .case-gallery img { height: 230px; }
  .document-grid { grid-template-columns: 1fr 1fr; }
  .home-proof-gallery { gap: 8px; }
  .home-proof-gallery img { height: 220px; }
  .home-proof-gallery img:nth-child(2) { margin-top: 18px; }
  .about-hero-photo img { min-height: 300px; }
  .about-photo-stack img:last-child { width: 88%; margin-top: -42px; border-width: 6px; }
  .form-card { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 96px; width: 54px; height: 54px; }
}
