@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --ink: #241c1f;
  --muted: #70666a;
  --paper: #fffdfa;
  --surface: #f6f0ec;
  --rose: #a73b59;
  --rose-dark: #76223d;
  --blush: #ead4d8;
  --sand: #d9c6b8;
  --line: rgba(36, 28, 31, .12);
  --white: #fff;
  --shadow: 0 24px 70px rgba(47, 32, 37, .12);
  --radius: 22px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'DM Sans', Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
bdi[dir='ltr'], [dir='ltr'] { direction: ltr; unicode-bidi: isolate; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3 { max-width: 100%; margin: 0; overflow-wrap: break-word; font-family: 'Playfair Display', Georgia, serif; line-height: 1.08; }
h1 { font-size: clamp(48px, 6vw, 82px); letter-spacing: -.045em; }
h2 { font-size: clamp(36px, 4vw, 58px); letter-spacing: -.035em; }
h3 { font-size: 25px; }
p { margin: 0; }
.lead { max-width: 680px; overflow-wrap: anywhere; color: var(--muted); font-size: clamp(17px, 1.7vw, 20px); }
.section { padding: 110px 0; }
.section-soft { background: var(--surface); }
.section-dark { color: var(--white); background: var(--ink); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.section-head > div:first-child { max-width: 720px; }
.section-head .lead { max-width: 470px; }

.topbar { color: rgba(255,255,255,.82); background: var(--ink); font-size: 13px; }
.topbar-inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topbar-links { display: flex; align-items: center; gap: 22px; }
.topbar a:hover { color: var(--white); }
.site-header { position: fixed; top: 38px; right: 0; left: 0; z-index: 50; background: rgba(255,253,250,.93); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); transition: top .25s ease, background .25s ease, box-shadow .25s ease; }
.site-header + main { padding-top: 82px; }
.site-header.is-compact { background: rgba(255,253,250,.98); box-shadow: 0 10px 34px rgba(36,28,31,.1); }
.site-header.is-compact { top: 0; }
.nav-wrap { min-height: 82px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; transition: min-height .25s ease; }
.site-header.is-compact .nav-wrap { min-height: 66px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { display: block; flex: 0 0 auto; width: 43px; height: 43px; transition: width .25s ease, height .25s ease; }
.brand-mark img { width: 100%; height: 100%; }
.site-header.is-compact .brand-mark { width: 37px; height: 37px; font-size: 17px; }
.brand-copy strong { display: block; font-size: 15px; letter-spacing: .16em; }
.brand-copy span { display: block; margin-top: 2px; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 30px; }
.site-nav > a { position: relative; font-size: 14px; font-weight: 600; }
.site-nav > a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--rose); transition: right .25s ease; }
.site-nav > a:hover::after, .site-nav > a.active::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.lang-menu { position: relative; }
.lang-button, .menu-toggle { border: 1px solid var(--line); color: var(--ink); background: var(--white); cursor: pointer; }
.lang-button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 13px; border-radius: 30px; font-size: 12px; font-weight: 700; line-height: 1; }
.lang-button i { width: 6px; height: 6px; margin-top: -3px; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.lang-list { position: absolute; top: calc(100% + 10px); right: 0; min-width: 170px; padding: 8px; visibility: hidden; opacity: 0; transform: translateY(-5px); background: var(--white); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); transition: .2s ease; }
.lang-menu:hover .lang-list, .lang-menu:focus-within .lang-list { visibility: visible; opacity: 1; transform: none; }
.lang-list a { display: block; padding: 9px 11px; border-radius: 8px; font-size: 13px; }
.lang-list a:hover { background: var(--surface); }
.menu-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 18px; height: 2px; margin: 4px auto; background: currentColor; transition: .25s ease; }

.floating-whatsapp { position: fixed; right: 24px; bottom: 24px; z-index: 45; display: inline-flex; align-items: center; gap: 10px; min-height: 52px; padding: 7px 17px 7px 7px; color: var(--white); background: #187b55; border: 1px solid rgba(255,255,255,.25); border-radius: 30px; box-shadow: 0 14px 36px rgba(24,123,85,.28); font-size: 13px; font-weight: 700; transition: transform .2s ease, background .2s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); background: #116944; }
.wa-icon { display: grid; place-items: center; width: 38px; height: 38px; background: rgba(255,255,255,.17); border-radius: 50%; }
.wa-icon svg { width: 24px; height: 24px; }
[dir='rtl'] .floating-whatsapp { right: 24px; left: auto; padding: 7px 17px 7px 7px; direction: ltr; }

.reveal-item { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.7,.2,1); }
.reveal-item.reveal-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 30px; font-size: 14px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--rose); }
.button-primary:hover { background: var(--rose-dark); }
.button-light { color: var(--ink); background: var(--white); }
.button-outline { border-color: var(--line); background: transparent; }
.button-small { min-height: 42px; padding: 0 18px; }

.hero { position: relative; min-height: 720px; display: flex; align-items: center; overflow: hidden; background: var(--surface); }
.hero::before { content: ''; position: absolute; inset: 0 52% 0 0; background: linear-gradient(130deg, #f8eeeb, #fffdfa); }
.hero-grid { position: relative; display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 70px; padding-block: 80px; }
.hero-copy { position: relative; z-index: 2; }
.hero-copy, .hero-visual, .page-hero-grid > *, .about-grid > *, .brands-panel > * { min-width: 0; }
.hero-copy h1 { max-width: 680px; }
.hero-copy .lead { margin-top: 26px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 38px; color: var(--muted); font-size: 13px; }
.hero-note span { display: flex; align-items: center; gap: 8px; }
.hero-note span::before { content: '✓'; display: grid; place-items: center; width: 20px; height: 20px; color: var(--rose); background: var(--blush); border-radius: 50%; font-weight: 700; }
.hero-visual { position: relative; min-height: 570px; }
.hero-main-image { position: absolute; inset: 0 0 0 12%; height: 100%; object-fit: cover; border-radius: 180px 0 0 0; box-shadow: var(--shadow); }
.hero-inset { position: absolute; left: 0; bottom: 35px; width: 44%; aspect-ratio: 1 / 1.18; object-fit: cover; border: 10px solid var(--paper); border-radius: 90px 90px 18px 18px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; right: -20px; bottom: 36px; width: 160px; height: 160px; display: grid; place-items: center; padding: 22px; color: var(--white); text-align: center; background: var(--rose); border-radius: 50%; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.stats { position: relative; z-index: 3; margin-top: -1px; color: var(--white); background: var(--ink); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 34px 30px; border-inline-end: 1px solid rgba(255,255,255,.12); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 36px; }
.stat span { color: rgba(255,255,255,.63); font-size: 13px; }
.stat:last-child span { display: block; max-width: 250px; }

.about-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 90px; }
.image-frame { position: relative; }
.image-frame::before { content: ''; position: absolute; top: -18px; left: -18px; width: 45%; height: 55%; border: 1px solid var(--rose); border-radius: var(--radius); }
.image-frame img { position: relative; aspect-ratio: 1.16 / 1; object-fit: cover; border-radius: var(--radius); }
.about-copy .lead { margin-top: 24px; }
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; margin: 34px 0; }
.feature-item { padding-top: 16px; border-top: 1px solid var(--line); }
.feature-item strong { display: block; margin-bottom: 5px; font-size: 15px; }
.feature-item span { color: var(--muted); font-size: 13px; }

.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.capability-card { min-height: 290px; padding: 32px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .25s ease, box-shadow .25s ease; }
.capability-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.card-number { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 52px; color: var(--rose); background: var(--surface); border-radius: 50%; font-weight: 700; }
.capability-card p { margin-top: 13px; color: var(--muted); font-size: 14px; }
.production-gallery { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 20px; }
.production-gallery figure { position: relative; min-width: 0; margin: 0; overflow: hidden; background: var(--ink); border-radius: var(--radius); }
.production-gallery img { height: 390px; object-fit: cover; opacity: .92; transition: transform .45s ease; }
.production-gallery figure:hover img { transform: scale(1.025); }
.production-gallery figcaption { position: absolute; inset: auto 0 0; display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 26px; color: var(--white); background: linear-gradient(transparent, rgba(23,18,20,.9)); }
.production-gallery figcaption strong { font-family: 'Playfair Display', serif; font-size: 22px; }
.order-notes { display: grid; gap: 14px; margin: 32px 0; }
.order-notes article { padding: 20px 22px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; }
.order-notes h3 { font-family: 'DM Sans', sans-serif; font-size: 15px; }
.order-notes p { margin-top: 7px; color: var(--muted); font-size: 13px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.product-card img { aspect-ratio: 1.55 / 1; object-fit: cover; transition: transform .45s ease; }
.product-card:hover img { transform: scale(1.04); }
.product-body { padding: 26px; }
.product-body .tag { display: inline-block; margin-bottom: 12px; color: var(--rose); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-body p { margin-top: 11px; color: var(--muted); font-size: 14px; }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 58px; }
.process-step { position: relative; padding: 32px 26px 0; border-top: 1px solid rgba(255,255,255,.2); }
.process-step::before { content: ''; position: absolute; top: -6px; left: 26px; width: 11px; height: 11px; background: var(--rose); border-radius: 50%; box-shadow: 0 0 0 8px rgba(167,59,89,.2); }
.process-step strong { display: block; margin-bottom: 10px; font-size: 15px; }
.process-step p { color: rgba(255,255,255,.62); font-size: 13px; }

.brands-panel { display: grid; grid-template-columns: .9fr 1.1fr; overflow: hidden; background: var(--surface); border-radius: 30px; }
.brands-image { min-height: 470px; object-fit: cover; }
.brands-copy { display: flex; flex-direction: column; justify-content: center; padding: 72px; }
.brands-copy .lead { margin: 22px 0 30px; }
.brand-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-pills span { padding: 10px 16px; background: var(--white); border: 1px solid var(--line); border-radius: 30px; font-size: 13px; font-weight: 700; }

.brand-presence { margin-top: 24px; padding: 30px; background: var(--surface); border-radius: 28px; }
.presence-copy { display: grid; grid-template-columns: .72fr 1.28fr; align-items: end; gap: 48px; padding: 12px 12px 30px; }
.presence-copy h3 { margin-top: 12px; font-size: clamp(28px, 3vw, 40px); }
.presence-copy p { max-width: 680px; color: var(--muted); font-size: 16px; }
.presence-events { display: grid; grid-template-columns: 1fr; gap: 14px; min-width: 0; }
.event-record { min-width: 0; padding: 12px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.presence-source { display: block; min-height: 32px; margin: 0 2px 10px; color: var(--rose-dark); font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.presence-gallery { display: grid; grid-template-columns: 1.35fr .65fr; gap: 12px; min-width: 0; }
.presence-gallery figure { min-width: 0; margin: 0; overflow: hidden; background: var(--white); border-radius: 18px; }
.presence-gallery img { height: 240px; object-fit: cover; }
.event-video-poster { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; color: var(--white); background: var(--ink); border: 0; border-radius: 18px; cursor: pointer; }
.event-video-poster > img { height: 300px; object-fit: cover; transition: transform .35s ease; }
.event-video-poster:hover > img { transform: scale(1.025); }
.event-video-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 12px; background: linear-gradient(rgba(23,18,20,.05), rgba(23,18,20,.48)); font-size: 12px; font-weight: 700; }
.event-video-play { width: 60px; height: 60px; display: grid; place-items: center; background: var(--rose); border: 6px solid rgba(255,255,255,.3); border-radius: 50%; }
.event-video-play::before { content: ''; margin-left: 3px; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 11px solid var(--white); }
.event-record > .video-frame { height: 300px; aspect-ratio: auto; border-radius: 18px; }

.video-layout { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 72px; }
.video-copy .lead { margin-top: 24px; }
.video-poster { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; color: var(--white); background: var(--ink); border: 0; border-radius: 28px; box-shadow: var(--shadow); cursor: pointer; }
.video-poster > img { height: 430px; object-fit: cover; transition: transform .45s ease; }
.video-poster:hover > img { transform: scale(1.025); }
.video-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 24px; background: linear-gradient(rgba(23,18,20,.08), rgba(23,18,20,.48)); }
.video-overlay strong { font-size: 14px; }
.video-play { width: 74px; height: 74px; display: grid; place-items: center; background: var(--rose); border: 8px solid rgba(255,255,255,.25); border-radius: 50%; box-shadow: 0 12px 35px rgba(36,28,31,.25); }
.video-play::before { content: ''; margin-left: 5px; border-top: 10px solid transparent; border-bottom: 10px solid transparent; border-left: 16px solid var(--white); }
.video-frame { width: 100%; aspect-ratio: 16 / 9; display: block; border: 0; }

.page-hero { padding: 110px 0 84px; background: var(--surface); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .75fr; align-items: end; gap: 60px; }
.page-hero .lead { margin-top: 24px; }
.page-hero-image { height: 330px; object-fit: cover; border-radius: 120px 20px 20px 20px; }
.long-copy { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.prose { color: var(--muted); font-size: 17px; }
.prose p + p { margin-top: 20px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.value-card p { margin-top: 12px; color: var(--muted); font-size: 14px; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card { padding: 34px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card .label { color: var(--rose); font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-card h3 { margin: 14px 0; }
.contact-card p, .contact-card a { color: var(--muted); font-size: 14px; }
.contact-card a:hover { color: var(--rose); }
.contact-card .contact-lines { display: grid; gap: 7px; margin-top: 22px; }
.inquiry-section { background: var(--paper); }
.inquiry-grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.inquiry-grid .lead { margin-top: 20px; }
.inquiry-facts { display: grid; gap: 10px; margin-top: 30px; color: var(--muted); font-size: 14px; }
.inquiry-facts span { display: flex; align-items: center; gap: 9px; }
.inquiry-facts span::before { content: '✓'; color: var(--rose); font-weight: 700; }
.inquiry-form { display: grid; gap: 17px; padding: 34px; background: var(--surface); border-radius: var(--radius); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: grid; gap: 7px; color: var(--muted); font-size: 12px; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: 14px; outline: none; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(167,59,89,.1); }
.cta { padding: 90px 0; }
.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: 58px 64px; color: var(--white); background: var(--rose-dark); border-radius: 30px; }
.cta-panel p { max-width: 650px; margin-top: 16px; color: rgba(255,255,255,.7); }

.site-footer { padding: 72px 0 24px; color: rgba(255,255,255,.72); background: #171214; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .7fr 1fr; gap: 60px; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand p { max-width: 360px; margin-top: 22px; font-size: 13px; }
.footer-col strong { display: block; margin-bottom: 18px; color: var(--white); font-size: 14px; }
.footer-col { display: grid; align-content: start; gap: 10px; font-size: 13px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 56px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }

[dir='rtl'] .eyebrow::before { order: 2; }
[dir='rtl'] .lang-list { right: auto; left: 0; }
[dir='rtl'] .topbar-inner { direction: ltr; }
[dir='rtl'] .topbar-inner > * { direction: rtl; }
[dir='rtl'] .brand { direction: ltr; }
[dir='rtl'] .nav-wrap,
[dir='rtl'] .hero-grid,
[dir='rtl'] .about-grid,
[dir='rtl'] .brands-panel,
[dir='rtl'] .page-hero-grid,
[dir='rtl'] .long-copy,
[dir='rtl'] .inquiry-grid,
[dir='rtl'] .stats-grid,
[dir='rtl'] .feature-list,
[dir='rtl'] .capability-grid,
[dir='rtl'] .production-gallery,
[dir='rtl'] .product-grid,
[dir='rtl'] .process-grid,
[dir='rtl'] .value-grid,
[dir='rtl'] .contact-grid,
[dir='rtl'] .form-row,
[dir='rtl'] .footer-grid,
[dir='rtl'] .footer-bottom,
[dir='rtl'] .section-head { direction: ltr; }
[dir='rtl'] .nav-wrap > *,
[dir='rtl'] .hero-grid > *,
[dir='rtl'] .about-grid > *,
[dir='rtl'] .brands-panel > *,
[dir='rtl'] .page-hero-grid > *,
[dir='rtl'] .long-copy > *,
[dir='rtl'] .inquiry-grid > *,
[dir='rtl'] .stats-grid > *,
[dir='rtl'] .feature-list > *,
[dir='rtl'] .capability-grid > *,
[dir='rtl'] .production-gallery > *,
[dir='rtl'] .product-grid > *,
[dir='rtl'] .process-grid > *,
[dir='rtl'] .value-grid > *,
[dir='rtl'] .contact-grid > *,
[dir='rtl'] .form-row > *,
[dir='rtl'] .footer-grid > *,
[dir='rtl'] .footer-bottom > *,
[dir='rtl'] .section-head > * { direction: rtl; }
[dir='rtl'] .brand-presence,
[dir='rtl'] .presence-copy,
[dir='rtl'] .presence-events,
[dir='rtl'] .presence-gallery,
[dir='rtl'] .video-layout { direction: ltr; }
[dir='rtl'] .brand-presence > *,
[dir='rtl'] .presence-copy > *,
[dir='rtl'] .presence-events > *,
[dir='rtl'] .presence-gallery > *,
[dir='rtl'] .video-layout > * { direction: rtl; }
[dir='rtl'] .brand-presence > .presence-events,
[dir='rtl'] .event-record > .presence-gallery { direction: ltr; }
[dir='rtl'] .site-nav { direction: ltr; }
[dir='rtl'] .site-nav > a { direction: rtl; }
[dir='rtl'] .nav-actions { direction: ltr; }
[dir='rtl'] .nav-wrap > .brand,
[dir='rtl'] .topbar-links { direction: ltr; }
[dir='rtl'] .hero-copy h1 { font-size: clamp(44px, 5vw, 70px); line-height: 1.16; letter-spacing: 0; }
[dir='rtl'] .hero::before { inset: 0 52% 0 0; }
[dir='rtl'] .hero-main-image { inset: 0 0 0 12%; border-radius: 180px 0 0 0; }
[dir='rtl'] .hero-inset { left: 0; right: auto; }
[dir='rtl'] .hero-badge { right: -20px; left: auto; }
[dir='rtl'] .image-frame::before { left: -18px; right: auto; }
[dir='rtl'] .process-step::before { left: 26px; right: auto; }

@media (max-width: 1050px) {
  .site-nav { gap: 18px; }
  .button-small { display: none; }
  .hero-grid { gap: 35px; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 30px; }
}

@media (max-width: 820px) {
  .container { width: calc(100% - 34px); max-width: var(--container); }
  .topbar { display: none; }
  .site-header { top: 0; }
  .site-header + main { padding-top: 72px; }
  .nav-wrap { min-height: 72px; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
  .site-header.is-compact .nav-wrap { min-height: 62px; }
  .site-nav { position: absolute; top: 100%; right: 0; left: 0; z-index: 60; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0; width: 100%; height: calc(100dvh - 72px); padding: 22px 24px 34px; overflow-y: auto; visibility: hidden; opacity: 0; transform: translateY(-8px); color: var(--ink); background: var(--paper); box-shadow: 0 18px 36px rgba(36,28,31,.13); transition: visibility .22s ease, opacity .22s ease, transform .22s ease; }
  .nav-open .site-nav { visibility: visible; opacity: 1; transform: none; }
  .site-nav > a { flex: 0 0 auto; padding: 17px 4px; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 18px; line-height: 1.35; }
  .site-nav > a::after { display: none; }
  .nav-actions { grid-column: 2; grid-row: 1; }
  .menu-toggle { display: block; }
  .nav-open .menu-toggle span { opacity: 0; }
  .nav-open .menu-toggle::before { transform: translateY(6px) rotate(45deg); }
  .nav-open .menu-toggle::after { transform: translateY(-6px) rotate(-45deg); }
  [dir='rtl'] .site-nav { direction: rtl; text-align: right; }
  .hero { min-height: auto; }
  .hero::before { inset: 0; }
  .hero-grid, .about-grid, .brands-panel, .page-hero-grid, .long-copy, .video-layout { grid-template-columns: 1fr; }
  .hero-grid { padding-block: 64px; }
  .hero-visual { min-height: 520px; }
  .hero-main-image { inset: 0 0 0 10%; }
  [dir='rtl'] .hero-main-image { inset: 0 0 0 10%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .production-gallery { grid-template-columns: 1fr 1fr; }
  .production-gallery figure:first-child { grid-column: 1 / -1; }
  .inquiry-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-grid { grid-template-columns: 1fr; gap: 22px; }
  .process-step { padding: 0 0 0 32px; border-top: 0; border-left: 1px solid rgba(255,255,255,.2); }
  .process-step::before { top: 5px; left: -6px; }
  [dir='rtl'] .process-step { padding: 0 0 0 32px; border-left: 1px solid rgba(255,255,255,.2); border-right: 0; }
  [dir='rtl'] .process-step::before { left: -6px; right: auto; }
  .brands-copy { padding: 50px; }
  .presence-copy { grid-template-columns: 1fr; gap: 18px; }
  .presence-events { grid-template-columns: 1fr; }
  .video-layout { gap: 42px; }
  .value-grid, .contact-grid { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .container { width: 100%; max-width: 100%; margin-inline: 0; padding-inline: 18px; }
  .section { padding: 76px 0; }
  .section-head { display: block; margin-bottom: 34px; }
  .section-head .lead { margin-top: 18px; }
  .brand { gap: 9px; }
  .brand-mark { width: 38px; height: 38px; font-size: 17px; }
  .brand-copy strong { font-size: 11px; letter-spacing: .08em; white-space: nowrap; }
  .brand-copy span { display: none; }
  .nav-actions { gap: 5px; }
  .lang-button { min-height: 40px; padding-inline: 9px; }
  .menu-toggle { width: 40px; height: 40px; }
  .floating-whatsapp, [dir='rtl'] .floating-whatsapp { right: 14px; left: auto; bottom: 14px; min-height: 48px; padding: 5px; }
  .floating-whatsapp .wa-label { display: none; }
  .wa-icon { width: 38px; height: 38px; }
  h1 { font-size: clamp(38px, 11.2vw, 52px); line-height: 1.03; }
  h2 { font-size: 37px; }
  .hero-copy .lead { font-size: 17px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; padding-inline: 16px; }
  .hero-visual { min-height: 420px; }
  .hero-main-image, [dir='rtl'] .hero-main-image { inset: 0; border-radius: 90px 10px 10px 10px; }
  .hero-inset { display: none; }
  .hero-badge { right: 12px; bottom: 18px; width: 120px; height: 120px; font-size: 10px; }
  [dir='rtl'] .hero-badge { right: 12px; left: auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat { padding: 25px 16px; }
  .stat strong { font-size: 29px; }
  .about-grid { gap: 48px; }
  .feature-list, .capability-grid, .product-grid { grid-template-columns: 1fr; }
  .production-gallery { grid-template-columns: 1fr; }
  .production-gallery figure:first-child { grid-column: auto; }
  .production-gallery img { height: 290px; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 24px 18px; }
  .card-number { margin-bottom: 32px; }
  .brands-image { min-height: 320px; }
  .brands-copy { padding: 36px 25px; }
  .brand-presence { padding: 22px; border-radius: 22px; }
  .presence-copy { padding: 4px 2px; }
  .presence-events { grid-template-columns: 1fr; }
  .presence-gallery { grid-template-columns: 1.35fr .65fr; gap: 8px; }
  .presence-gallery img { height: 220px; }
  .event-video-poster > img { height: 220px; }
  .event-record > .video-frame { height: 220px; }
  .video-poster > img { height: 270px; }
  .video-play { width: 62px; height: 62px; }
  .page-hero { padding: 70px 0 56px; }
  .page-hero-grid { gap: 38px; }
  .page-hero-image { height: 240px; border-radius: 70px 14px 14px 14px; }
  .cta { padding: 58px 0; }
  .cta-panel { padding: 38px 26px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  [dir='rtl'] .nav-wrap { direction: ltr; }
  [dir='rtl'] .brand { direction: ltr; }
  [dir='rtl'] .hero::before { inset: 0; }
  [dir='rtl'] .hero-copy, [dir='rtl'] .page-hero-grid > div { width: 100%; max-width: 100%; direction: rtl; }
}

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