:root {
  --navy: #0f1b2d;
  --navy-2: #14253d;
  --navy-3: #203653;
  --gold: #d4af37;
  --gold-soft: #ead78f;
  --paper: #f5f5f1;
  --white: #ffffff;
  --ink: #172033;
  --muted: #667085;
  --line: rgba(15, 27, 45, .13);
  --shadow: 0 28px 80px rgba(15, 27, 45, .14);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
*:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.shell { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -60px; z-index: 1000; padding: 10px 16px; background: var(--gold); color: var(--navy); border-radius: 8px; }
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  background: rgba(9, 27, 55, .94);
  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; min-width: 248px; }
.brand-logo { width: 248px; height: auto; border-radius: 4px; filter: drop-shadow(0 7px 18px rgba(0,0,0,.2)); }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2vw, 34px); }
.desktop-nav a { position: relative; padding-block: 28px; color: rgba(255,255,255,.78); font-size: 14px; font-weight: 600; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 19px; height: 1px; background: var(--gold); transition: right .25s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: white; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.language-switch { display: flex; align-items: center; }
.language-select { min-width: 66px; min-height: 38px; padding: 7px 10px; color: var(--gold-soft); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; background: var(--navy-2); cursor: pointer; font-size: 13px; font-weight: 700; letter-spacing: .06em; color-scheme: dark; }
.language-select option { color: white; background: var(--navy-2); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); background: transparent; border-radius: 50%; cursor: pointer; }
.menu-toggle span { display: block; width: 18px; height: 1px; margin: 5px auto; background: white; }
.mobile-menu { padding: 10px 24px 26px; background: var(--navy); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-menu a { display: block; padding: 12px 0; color: white; border-bottom: 1px solid rgba(255,255,255,.08); }

@media (min-width: 1181px) {
  .mobile-menu { display: none !important; }
  html[lang="tr"] .hero-text-line-primary { white-space: nowrap; }
}

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
}

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 24px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 700; letter-spacing: .02em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--navy); background: linear-gradient(135deg, #efd77c, var(--gold)); box-shadow: 0 12px 30px rgba(212,175,55,.2); }
.button-ghost { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.03); }
.button-dark { color: white; background: var(--navy); }
.button-small { min-height: 40px; padding: 9px 17px; font-size: 13px; }

.hero { position: relative; overflow: hidden; color: white; background: var(--navy); padding-top: 84px; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom, black, transparent 78%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 720px; height: 720px; right: -220px; top: -250px; background: radial-gradient(circle, rgba(48,99,144,.38), transparent 67%); }
.hero-glow-two { width: 540px; height: 540px; left: -260px; bottom: -330px; background: radial-gradient(circle, rgba(212,175,55,.13), transparent 68%); }
.hero-grid { position: relative; min-height: 690px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 44px; padding-block: 72px 80px; }
.hero-copy { position: relative; z-index: 3; max-width: 690px; }
.eyebrow { margin: 0 0 18px; color: var(--gold-soft); font-size: 12px; font-weight: 700; letter-spacing: .22em; }
.eyebrow.dark { color: #8a6b13; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 26px; font-size: clamp(48px, 6.1vw, 82px); line-height: .99; letter-spacing: -.045em; font-weight: 600; }
h1 em, h2 em { color: var(--gold-soft); font-family: var(--serif); font-weight: 600; }
.hero-text { max-width: 590px; margin-bottom: 32px; color: rgba(255,255,255,.72); font-size: clamp(17px, 1.6vw, 20px); line-height: 1.65; }
.hero-text-line { display: block; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { max-width: 530px; display: flex; align-items: center; gap: 16px; margin-top: 44px; color: rgba(255,255,255,.5); font-size: 13px; }
.hero-note p { margin: 0; }
.note-line { flex: 0 0 42px; height: 1px; background: var(--gold); }

.hero-products { position: relative; min-height: 530px; align-self: stretch; }
.hero-orbit { position: absolute; width: 460px; height: 460px; left: 50%; top: 50%; transform: translate(-50%,-48%); border: 1px solid rgba(212,175,55,.21); border-radius: 50%; }
.hero-orbit::before, .hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; }
.hero-orbit::before { inset: 48px; }
.hero-orbit::after { inset: 112px; background: rgba(255,255,255,.03); }
.hero-product { position: absolute; margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); background: #e9eff6; box-shadow: 0 35px 80px rgba(0,0,0,.35); }
.hero-product img { width: 100%; height: 100%; object-fit: cover; }
.hero-product-main { z-index: 2; width: 370px; height: 370px; top: 60px; left: 50%; transform: translateX(-50%); border-radius: 50%; }
.hero-product-left { z-index: 1; width: 190px; height: 230px; left: 2%; bottom: 28px; border-radius: 90px 90px 24px 24px; transform: rotate(-5deg); }
.hero-product-right { z-index: 3; width: 190px; height: 230px; right: 0; bottom: 22px; border-radius: 24px 24px 90px 90px; transform: rotate(5deg); }
.hero-seal { position: absolute; z-index: 4; right: 18px; top: 38px; width: 118px; height: 118px; display: grid; place-content: center; text-align: center; border: 1px solid var(--gold); border-radius: 50%; background: rgba(15,27,45,.88); box-shadow: 0 15px 35px rgba(0,0,0,.25); }
.hero-seal span, .hero-seal small { color: var(--gold-soft); font-size: 9px; letter-spacing: .15em; }
.hero-seal strong { font-size: 12px; letter-spacing: .08em; }
.trust-strip { position: relative; border-top: 1px solid rgba(255,255,255,.11); background: rgba(255,255,255,.025); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid > div { min-height: 116px; display: flex; align-items: center; gap: 16px; padding: 24px; border-right: 1px solid rgba(255,255,255,.1); }
.trust-grid > div:first-child { border-left: 1px solid rgba(255,255,255,.1); }
.trust-grid strong { color: var(--gold-soft); font-family: var(--serif); font-size: 24px; }
.trust-grid .trust-language-codes { font-family: var(--sans); font-size: 17px; letter-spacing: .02em; white-space: nowrap; }
.trust-grid span { color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.4; }

.section { padding: 120px 0; }
.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.product-brand-lockup { width: min(360px, 100%); margin-bottom: 28px; padding: 14px 16px; overflow: hidden; border: 1px solid rgba(212,175,55,.28); border-radius: 20px; background: #091b33; box-shadow: 0 18px 45px rgba(15,27,45,.16); }
.product-brand-lockup img { width: 100%; height: auto; border-radius: 8px; }
.section-heading h2, .routine-copy h2, .company-copy h2, .contact-section h2 { margin: 0; font-size: clamp(38px, 4.5vw, 64px); line-height: 1.08; letter-spacing: -.035em; }
.section-heading h2 em, .company-copy h2 em, .contact-section h2 em { color: #8a6b13; }
.split-heading > p { max-width: 430px; margin: 0 0 8px; color: var(--muted); font-size: 17px; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 34px; }
.filter-button { padding: 10px 17px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; font-size: 14px; font-weight: 600; }
.filter-button.is-active { color: white; border-color: var(--navy); background: var(--navy); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; }
.product-card { display: flex; flex-direction: column; min-height: 100%; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-image { position: relative; overflow: hidden; aspect-ratio: 1; background: #e9eff6; }
.product-image::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(to top, rgba(15,27,45,.06), transparent); pointer-events: none; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.035); }
.product-badge { position: absolute; z-index: 2; left: 14px; top: 14px; padding: 6px 10px; color: var(--navy); border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: rgba(255,255,255,.86); backdrop-filter: blur(8px); font-size: 11px; font-weight: 700; }
.product-copy { display: flex; flex-direction: column; flex: 1; padding: 20px; }
.product-brand { margin-bottom: 7px; color: #8a6b13; font-size: 10px; font-weight: 700; letter-spacing: .15em; }
.product-copy h3 { margin-bottom: 10px; font-size: 20px; line-height: 1.25; }
.product-copy p { margin-bottom: 18px; color: var(--muted); font-size: 14px; line-height: 1.55; }
.product-open { display: inline-flex; align-items: center; justify-content: space-between; width: 100%; margin-top: auto; padding: 11px 0 0; color: var(--navy); border: 0; border-top: 1px solid var(--line); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; text-align: left; }
.product-open::after { content: "↗"; color: #8a6b13; font-size: 18px; }
.products-legal-note { max-width: 920px; margin: 30px 0 0; padding: 16px 18px; color: var(--muted); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 10px; background: rgba(255,255,255,.72); font-size: 12px; line-height: 1.65; }

.routine-section { position: relative; overflow: hidden; color: white; background: var(--navy); }
.routine-section::after { content: "L’R"; position: absolute; right: -60px; bottom: -170px; color: rgba(255,255,255,.025); font-family: var(--serif); font-size: 410px; line-height: 1; pointer-events: none; }
.routine-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; align-items: center; }
.routine-copy h2 { margin-bottom: 26px; }
.routine-copy p:not(.eyebrow) { color: rgba(255,255,255,.64); }
.routine-caution { margin-top: 30px; padding-left: 18px; border-left: 2px solid var(--gold); font-size: 13px; }
.routine-panels { display: grid; gap: 16px; }
.routine-panel { display: grid; grid-template-columns: 88px 1fr; gap: 24px; padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.055); backdrop-filter: blur(10px); }
.routine-panel.evening { margin-left: 50px; }
.routine-number { color: var(--gold-soft); font-family: var(--serif); font-size: 46px; line-height: 1; }
.routine-time { margin-bottom: 5px; color: var(--gold-soft); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.routine-panel h3 { margin-bottom: 14px; font-size: 26px; }
.routine-panel ol { margin: 0; padding-left: 18px; color: rgba(255,255,255,.68); font-size: 14px; }

.company-section { background: white; }
.company-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 100px; align-items: center; }
.company-visual { position: relative; min-height: 560px; display: grid; place-items: center; overflow: hidden; color: white; border-radius: 26px; background: radial-gradient(circle at 65% 30%, #274467, var(--navy) 58%); box-shadow: var(--shadow); }
.company-visual::before { content: ""; position: absolute; width: 460px; height: 460px; border: 1px solid rgba(212,175,55,.25); border-radius: 50%; }
.company-visual::after { content: ""; position: absolute; width: 315px; height: 315px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.company-logo-mark { position: relative; z-index: 2; width: clamp(210px, 54%, 280px); height: auto; border: 1px solid rgba(212,175,55,.48); border-radius: 50%; box-shadow: 0 24px 60px rgba(0,0,0,.28); }
.company-caption { position: absolute; z-index: 3; left: 34px; bottom: 34px; display: grid; }
.company-caption span { color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .18em; }
.company-caption strong { margin-top: 5px; font-size: 14px; letter-spacing: .08em; }
.company-copy h2 { margin-bottom: 30px; }
.company-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.company-pillars { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.company-pillars article { padding: 19px; border: 1px solid var(--line); border-radius: 14px; background: var(--paper); }
.company-pillars span { display: block; margin-bottom: 8px; color: #8a6b13; font-size: 11px; font-weight: 800; letter-spacing: .14em; }
.company-pillars p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.value-list { margin-top: 24px; border-top: 1px solid var(--line); }
.value-list div { display: grid; grid-template-columns: 50px 1fr; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.value-list span { color: #8a6b13; font-family: var(--serif); }
.value-list strong { font-size: 15px; }

.partners-section { color: white; background: var(--navy-2); }
.centered-heading { max-width: 820px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 620px; margin: 24px auto 0; color: rgba(255,255,255,.6); font-size: 17px; }
.partner-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.partner-grid article { padding: 34px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.04); }
.partner-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 30px; color: var(--gold-soft); border: 1px solid rgba(212,175,55,.45); border-radius: 50%; font-family: var(--serif); font-size: 19px; }
.partner-grid h3 { margin-bottom: 10px; font-size: 24px; }
.partner-grid p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }
.partners-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12); }
.partners-cta p { max-width: 650px; margin: 0; color: rgba(255,255,255,.72); }

.contact-section { background: var(--gold); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.contact-section .eyebrow.dark { color: rgba(15,27,45,.62); }
.contact-section h2 em { color: rgba(15,27,45,.58); }
.contact-list { border-top: 1px solid rgba(15,27,45,.28); }
.contact-list a, .contact-list > div { display: grid; grid-template-columns: 130px 1fr; gap: 30px; padding: 19px 0; border-bottom: 1px solid rgba(15,27,45,.28); }
.contact-list span { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.contact-list strong { font-size: 17px; font-weight: 600; }
.contact-list a:hover strong { text-decoration: underline; text-underline-offset: 4px; }
.contact-privacy { margin: 18px 0 0; color: rgba(15,27,45,.7); font-size: 13px; line-height: 1.55; }
.contact-privacy button { padding: 0; color: var(--navy); border: 0; border-bottom: 1px solid rgba(15,27,45,.55); background: transparent; cursor: pointer; font: inherit; font-weight: 700; }
.contact-privacy button:hover { border-bottom-color: var(--navy); }

.site-footer { color: white; background: #091b33; }
.footer-main { min-height: 180px; display: grid; grid-template-columns: 1fr 1fr auto; gap: 40px; align-items: center; }
.footer-brand { display: flex; align-items: center; }
.footer-logo { width: min(270px, 100%); height: auto; border-radius: 4px; }
.footer-main p { margin: 0; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-main p span, .footer-main p small { display: block; }
.footer-main p small { margin-top: 8px; color: rgba(255,255,255,.38); font-size: 11px; line-height: 1.55; }
.footer-links { display: flex; gap: 18px; }
.footer-links button { padding: 0; color: rgba(255,255,255,.65); border: 0; background: none; cursor: pointer; font-size: 13px; }
.footer-links button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 22px; color: rgba(255,255,255,.4); border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; }
.whatsapp-float { position: fixed; z-index: 80; right: 22px; bottom: 22px; width: 54px; height: 54px; display: grid; place-items: center; color: white; border: 2px solid rgba(255,255,255,.75); border-radius: 50%; background: #168f5a; box-shadow: 0 14px 35px rgba(15,27,45,.3); font-weight: 800; }

dialog { padding: 0; border: 0; color: var(--ink); border-radius: 24px; box-shadow: 0 40px 120px rgba(0,0,0,.38); }
dialog::backdrop { background: rgba(6,13,23,.78); backdrop-filter: blur(8px); }
.product-dialog { width: min(940px, calc(100% - 32px)); max-height: min(800px, calc(100vh - 32px)); overflow: auto; }
.dialog-layout { display: grid; grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr); min-height: 560px; }
.dialog-image-wrap { min-width: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: 32px 28px; background: linear-gradient(145deg, #f4f7fb, #e5ecf4); }
#dialog-image { display: block; width: min(100%, 300px); height: auto; aspect-ratio: 1; object-fit: contain; border: 1px solid rgba(15,27,45,.08); border-radius: 18px; background: white; box-shadow: 0 18px 42px rgba(15,27,45,.12); }
.dialog-gallery { display: flex; justify-content: center; gap: 9px; width: min(100%, 300px); overflow-x: auto; padding: 2px 2px 5px; }
.dialog-gallery[hidden] { display: none; }
.dialog-thumb { flex: 0 0 58px; width: 58px; height: 58px; padding: 3px; overflow: hidden; border: 2px solid transparent; border-radius: 11px; background: white; cursor: pointer; opacity: .68; transition: border-color .2s ease, opacity .2s ease, transform .2s ease; }
.dialog-thumb:hover { opacity: 1; transform: translateY(-2px); }
.dialog-thumb.is-active { border-color: var(--gold); opacity: 1; }
.dialog-thumb img { width: 100%; height: 100%; object-fit: contain; border-radius: 7px; background: #f7f9fc; }
.dialog-copy { padding: 56px 52px 42px; }
.dialog-copy h2 { margin-bottom: 18px; font-size: clamp(32px, 4vw, 48px); line-height: 1.05; letter-spacing: -.035em; }
.dialog-lead { color: var(--muted); font-size: 17px; }
.dialog-section { margin-top: 25px; padding-top: 18px; border-top: 1px solid var(--line); }
.dialog-section span { display: block; margin-bottom: 5px; color: #8a6b13; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.dialog-section p { margin: 0; }
.dialog-disclaimer { margin: 24px 0; padding: 13px 15px; color: var(--muted); border-radius: 10px; background: var(--paper); font-size: 12px; }
.dialog-close { position: sticky; z-index: 3; float: right; top: 14px; right: 14px; width: 42px; height: 42px; margin: 14px 14px -56px 0; color: var(--navy); border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.92); cursor: pointer; font-size: 28px; line-height: 1; }
.legal-dialog { width: min(820px, calc(100% - 32px)); max-height: calc(100vh - 40px); overflow: auto; }
.legal-dialog article { padding: 52px; }
.legal-dialog h2 { margin-bottom: 26px; font-family: var(--serif); font-size: 38px; }
.legal-dialog h3 { margin: 28px 0 8px; color: var(--navy); font-size: 17px; }
.legal-dialog p, .legal-dialog li { color: var(--muted); font-size: 14px; }
.legal-dialog a { color: #765a0c; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.legal-identity { padding: 18px 20px; border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 12px; background: var(--paper); }
.legal-identity p { margin: 5px 0; }
.legal-note { padding: 14px 16px; border-radius: 10px; background: #fff3d8; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr .9fr; }
  .hero-product-main { width: 320px; height: 320px; }
  .hero-product-left, .hero-product-right { width: 160px; height: 200px; }
  .product-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .company-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 32px, 680px); }
  .header-inner { min-height: 74px; }
  .desktop-contact { display: none; }
  .brand { min-width: 218px; }
  .brand-logo { width: 218px; }
  .hero { padding-top: 74px; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 64px 54px; }
  .hero-copy { text-align: center; }
  .hero-text, .hero-note { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-products { min-height: 460px; max-width: 580px; width: 100%; margin-inline: auto; }
  .hero-product-main { top: 38px; }
  .hero-product-left { left: 8%; }
  .hero-product-right { right: 8%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid > div { border-bottom: 1px solid rgba(255,255,255,.1); }
  .section { padding: 86px 0; }
  .split-heading, .routine-grid, .company-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-brand-lockup { width: min(330px, 100%); }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .routine-copy { max-width: 580px; }
  .routine-panel.evening { margin-left: 0; }
  .company-visual { min-height: 430px; }
  .company-pillars { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .partners-cta { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; gap: 22px; padding-block: 45px; }
  .dialog-layout { grid-template-columns: 1fr; }
  .dialog-image-wrap { padding: 22px 20px 20px; }
  #dialog-image { width: min(100%, 280px); }
  .dialog-gallery { width: min(100%, 280px); }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 24px, 500px); }
  .header-inner { gap: 12px; }
  .brand { min-width: min(172px, 50vw); }
  .brand-logo { width: min(172px, 50vw); }
  .header-actions { gap: 11px; }
  .language-select { min-width: 60px; padding-inline: 8px; }
  h1 { font-size: 45px; }
  .hero-grid { padding-top: 52px; }
  .hero-products { min-height: 390px; }
  .hero-orbit { width: 340px; height: 340px; }
  .hero-product-main { width: 280px; height: 280px; }
  .hero-product-left, .hero-product-right { width: 128px; height: 160px; bottom: 6px; }
  .hero-seal { width: 94px; height: 94px; right: 0; top: 20px; }
  .trust-grid > div { min-height: 96px; flex-direction: column; align-items: flex-start; gap: 4px; padding: 18px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading h2, .routine-copy h2, .company-copy h2, .contact-section h2 { font-size: 38px; }
  .product-grid { grid-template-columns: 1fr; }
  .filter-bar { display: grid; grid-template-columns: repeat(2,1fr); }
  .filter-button { width: 100%; padding-inline: 8px; }
  .routine-panel { grid-template-columns: 1fr; padding: 26px; }
  .company-monogram { font-size: 110px; }
  .contact-list a, .contact-list > div { grid-template-columns: 1fr; gap: 4px; }
  .footer-bottom { flex-direction: column; gap: 4px; }
  .dialog-copy { padding: 42px 24px 28px; }
  .legal-dialog article { padding: 44px 24px 28px; }
}

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