/* MW Studio Media — premium interface */
:root {
  --bg: #0b0b0c;
  --bg-2: #101012;
  --surface: #151517;
  --surface-2: #1a1a1d;
  --text: #f4f0e8;
  --text-soft: #d7d1c7;
  --text-mute: #aaa39a;
  --gold: #d2b06e;
  --gold-2: #b89556;
  --gold-soft: rgba(210,176,110,.12);
  --line: rgba(255,255,255,.11);
  --line-2: rgba(255,255,255,.07);
  --success: #79b98a;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 28px 80px rgba(0,0,0,.28);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 20% 0%, rgba(210,176,110,.055), transparent 28rem),
    var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::selection { background: var(--gold); color: #111; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.section-surface { background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.008)); border-block: 1px solid var(--line-2); }

.skip-link { position: fixed; top: -80px; left: 18px; z-index: 9999; background: var(--text); color: var(--bg); padding: 10px 14px; border-radius: 8px; transition: top .2s ease; }
.skip-link:focus { top: 18px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 46px; padding: 0 18px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 600; letter-spacing: -.01em; transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #111; background: linear-gradient(135deg, #ddc185, var(--gold)); box-shadow: 0 10px 30px rgba(210,176,110,.12); }
.btn-primary:hover { background: linear-gradient(135deg, #e6cc96, #cba764); box-shadow: 0 14px 36px rgba(210,176,110,.19); }
.btn-ghost, .btn-outline { color: var(--text); background: rgba(255,255,255,.025); border-color: var(--line); }
.btn-ghost:hover, .btn-outline:hover { border-color: rgba(210,176,110,.55); background: var(--gold-soft); }
.btn-link { color: var(--gold); padding-inline: 0; min-height: auto; border: 0; }
.btn-lg { min-height: 54px; padding-inline: 24px; font-size: 14px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 90; background: rgba(11,11,12,.72); border-bottom: 1px solid transparent; backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); transition: background .25s ease, border-color .25s ease, box-shadow .25s ease; }
.site-header.scrolled { background: rgba(11,11,12,.92); border-bottom-color: var(--line-2); box-shadow: 0 12px 40px rgba(0,0,0,.18); }
.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brand-copy { display: grid; gap: 3px; }
.brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: .82; letter-spacing: -.03em; }
.brand-sub { font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-mute); }
.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 29px); margin-left: auto; }
.main-nav > a { position: relative; color: #c5beb5; font-size: 12.5px; font-weight: 500; transition: color .2s ease; }
.main-nav > a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 0; height: 1px; background: var(--gold); transition: width .25s ease; }
.main-nav > a:hover { color: var(--text); }
.main-nav > a:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher, .footer-langs, .mobile-lang { display: inline-flex; align-items: center; gap: 4px; padding: 3px; border: 1px solid var(--line-2); border-radius: 999px; background: rgba(255,255,255,.015); }
.lang-switcher a, .footer-langs a, .mobile-lang a { min-width: 31px; height: 27px; display: grid; place-items: center; border-radius: 999px; color: var(--text-mute); font-size: 10px; font-weight: 600; letter-spacing: .06em; transition: .2s ease; }
.lang-switcher a.active, .lang-switcher a:hover, .footer-langs a.active, .footer-langs a:hover, .mobile-lang a.active { background: var(--gold); color: #111; }
.header-cta { white-space: nowrap; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; background: rgba(255,255,255,.02); cursor: pointer; place-items: center; }
.menu-toggle span { display: block; width: 17px; height: 1px; background: var(--text); margin: 3px auto; transition: transform .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(2px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-2px) rotate(-45deg); }
.mobile-menu { display: none; border-top: 1px solid var(--line-2); background: rgba(11,11,12,.97); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding-block: 18px 26px; display: grid; gap: 4px; }
.mobile-menu-inner > a:not(.btn) { padding: 13px 0; border-bottom: 1px solid var(--line-2); color: var(--text-soft); font-size: 14px; }
.mobile-menu-inner .mobile-lang { justify-self: start; margin: 14px 0; }

/* Type system */
.eyebrow, .section-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--gold); font-size: 11px; line-height: 1; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(210,176,110,.08); }
.hero-title, .section-title { font-family: var(--font-display); font-weight: 600; letter-spacing: -.035em; text-wrap: balance; }
.hero-title { max-width: 740px; font-size: clamp(50px, 5.3vw, 76px); line-height: .97; margin-bottom: 25px; }
.hero-title em, .section-title em { color: var(--gold); font-style: italic; font-weight: 500; }
.section-title { max-width: 760px; font-size: clamp(38px, 4vw, 56px); line-height: 1.02; }
.section-lead { max-width: 580px; color: var(--text-mute); font-size: 15px; line-height: 1.8; }
.section-head { margin-bottom: 52px; }
.split-head { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(330px,.75fr); gap: 70px; align-items: end; }
.split-head .section-lead { margin: 0 0 2px auto; }

/* Hero */
.premium-hero { position: relative; min-height: 760px; padding: 96px 0 0; overflow: clip; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero-glow-one { width: 620px; height: 620px; right: -240px; top: -180px; background: radial-gradient(circle, rgba(210,176,110,.14), rgba(210,176,110,0) 68%); }
.hero-glow-two { width: 480px; height: 480px; left: -280px; bottom: 0; background: radial-gradient(circle, rgba(255,255,255,.035), transparent 70%); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,1.04fr) minmax(430px,.96fr); gap: 72px; align-items: center; }
.hero-lead { max-width: 650px; margin-bottom: 30px; color: #b7b0a7; font-size: 17px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 11px; }
.hero-note { display: flex; align-items: center; gap: 9px; margin-top: 22px; color: #8f8982; font-size: 12px; }
.hero-note span { width: 23px; height: 1px; background: rgba(210,176,110,.55); }
.founder-hero-card { position: relative; padding: 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: linear-gradient(150deg, rgba(255,255,255,.075), rgba(255,255,255,.015)); box-shadow: var(--shadow); transform: rotate(1deg); }
.founder-photo-wrap { position: relative; overflow: hidden; border-radius: 21px; aspect-ratio: 4 / 4.2; background: #e9e7e4; }
.founder-photo { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.87) contrast(1.02); }
.founder-photo-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,9,10,.88) 0, rgba(9,9,10,.28) 31%, transparent 55%); }
.founder-caption { position: absolute; z-index: 2; inset: auto 26px 25px; display: grid; gap: 2px; }
.founder-kicker { margin-bottom: 4px; color: #d9c49a; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.founder-caption strong { font-family: var(--font-display); font-size: 25px; line-height: 1.08; font-weight: 600; }
.founder-caption strong span { color: var(--gold); font-style: italic; font-weight: 500; }
.founder-caption small { color: rgba(255,255,255,.64); font-size: 10px; letter-spacing: .06em; }
.founder-card-detail { position: absolute; width: 72px; height: 72px; right: -18px; bottom: -18px; border-right: 1px solid rgba(210,176,110,.45); border-bottom: 1px solid rgba(210,176,110,.45); border-radius: 0 0 30px 0; pointer-events: none; }
.hero-audience { position: relative; z-index: 2; margin-top: 76px; padding-bottom: 32px; display: flex; align-items: center; gap: 25px; }
.hero-audience p { flex: 0 1 auto; color: #8f8982; font-size: 11px; letter-spacing: .03em; }
.hero-audience-line { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); }

/* Value */
.value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.value-card { position: relative; min-height: 250px; padding: 30px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.025), rgba(255,255,255,.008)); overflow: hidden; }
.value-card::after { content: ''; position: absolute; width: 120px; height: 120px; right: -70px; bottom: -70px; border-radius: 50%; border: 1px solid rgba(210,176,110,.13); }
.card-index { display: block; margin-bottom: 55px; color: var(--gold); font-family: var(--font-display); font-size: 15px; }
.value-card h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 25px; line-height: 1.1; font-weight: 600; }
.value-card p { color: var(--text-mute); font-size: 13px; line-height: 1.75; }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.premium-service-card { position: relative; min-height: 330px; padding: 32px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.016); overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.premium-service-card:hover { transform: translateY(-5px); border-color: rgba(210,176,110,.28); background: rgba(255,255,255,.028); }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 58px; }
.service-number { color: var(--gold); font-family: var(--font-display); font-size: 17px; }
.service-arrow { width: 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: #c8c2b9; transition: .25s ease; }
.premium-service-card:hover .service-arrow { border-color: var(--gold); background: var(--gold); color: #111; transform: rotate(45deg); }
.premium-service-card h3 { margin-bottom: 12px; font-family: var(--font-display); font-size: 32px; line-height: 1.05; font-weight: 600; }
.premium-service-card > p { max-width: 520px; margin-bottom: 26px; color: var(--text-mute); font-size: 13px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags li { padding: 7px 10px; border: 1px solid var(--line-2); border-radius: 999px; color: #a9a299; font-size: 10px; }
.card-link { position: absolute; inset: 0; }

/* Pricing */
.pricing-intro { max-width: 830px; margin-bottom: 52px; }
.pricing-intro .section-lead { margin-top: 20px; }
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.package-card { position: relative; display: flex; flex-direction: column; padding: 30px; border: 1px solid var(--line-2); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012)); }
.package-card.featured { border-color: rgba(210,176,110,.56); background: linear-gradient(180deg, rgba(210,176,110,.09), rgba(255,255,255,.014) 48%); box-shadow: 0 22px 70px rgba(0,0,0,.19); }
.package-badge { position: absolute; top: 18px; right: 18px; padding: 6px 9px; border-radius: 999px; background: rgba(210,176,110,.15); border: 1px solid rgba(210,176,110,.28); color: #ddc489; font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.plan-order { color: #746f69; font-family: var(--font-display); font-size: 15px; }
.package-card h3 { margin: 35px 0 10px; font-family: var(--font-display); font-size: 30px; line-height: 1; font-weight: 600; }
.package-price { margin-bottom: 20px; color: var(--gold); font-family: var(--font-display); font-size: 26px; line-height: 1; }
.package-description { min-height: 88px; padding-bottom: 24px; margin-bottom: 22px; border-bottom: 1px solid var(--line-2); color: var(--text-mute); font-size: 12.5px; line-height: 1.7; }
.package-list { flex: 1; margin-bottom: 28px; display: grid; align-content: start; gap: 11px; }
.package-list li { position: relative; padding-left: 20px; color: #c0bab2; font-size: 12px; }
.package-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-size: 10px; }
.addons-panel { margin-top: 24px; padding: 28px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.015); }
.addons-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--line-2); }
.addons-heading span { font-family: var(--font-display); font-size: 27px; font-weight: 600; }
.addons-heading small { color: var(--gold); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.addons-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 34px; }
.addon-item { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--line-2); font-size: 12px; }
.addon-item span { color: #b8b2aa; }
.addon-item strong { color: var(--gold); font-family: var(--font-display); font-size: 16px; font-weight: 600; white-space: nowrap; }
.pricing-note { margin-top: 22px; max-width: 800px; color: #8f8982; font-size: 11px; line-height: 1.7; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border-top: 1px solid var(--line); }
.process-card { position: relative; padding: 30px 26px 6px 0; }
.process-card:not(:last-child) { border-right: 1px solid var(--line-2); margin-right: 26px; }
.process-card .num { display: block; margin-bottom: 62px; color: var(--gold); font-family: var(--font-display); font-size: 18px; }
.process-card h3 { margin-bottom: 10px; font-family: var(--font-display); font-size: 23px; line-height: 1.1; font-weight: 600; }
.process-card p { color: var(--text-mute); font-size: 12px; line-height: 1.7; }

/* About */
.about-grid { display: grid; grid-template-columns: minmax(390px,.85fr) minmax(0,1.15fr); gap: 86px; align-items: center; }
.about-photo-column { max-width: 490px; }
.about-photo-frame { padding: 10px; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,255,255,.02); box-shadow: var(--shadow); }
.about-photo-frame img { width: 100%; aspect-ratio: 4/3.75; object-fit: cover; object-position: center 40%; border-radius: 16px; filter: saturate(.86) contrast(1.02); }
.about-signature { display: flex; justify-content: space-between; gap: 20px; padding: 18px 8px 0; color: #aaa39a; font-size: 10px; }
.about-signature strong { color: var(--text-soft); font-weight: 500; }
.about-copy .section-title { max-width: 700px; }
.about-text { margin: 28px 0; display: grid; gap: 16px; max-width: 680px; }
.about-text p { color: var(--text-mute); font-size: 14px; line-height: 1.82; }
.about-text p:first-child { color: #c9c3bb; }
.about-points { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 20px 0 28px; border-top: 1px solid var(--line-2); }
.about-points span { display: inline-flex; align-items: center; gap: 8px; color: #b5afa7; font-size: 11px; }
.about-points i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* Structure */
.structure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 86px; align-items: center; }
.structure-copy .section-lead { margin-top: 22px; }
.structure-cards { display: grid; gap: 12px; }
.structure-card { padding: 28px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.015); }
.structure-card > span { display: block; margin-bottom: 26px; color: var(--gold); font-family: var(--font-display); }
.structure-card h3 { margin-bottom: 8px; font-family: var(--font-display); font-size: 25px; font-weight: 600; }
.structure-card p { color: var(--text-mute); font-size: 12px; line-height: 1.7; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 340px minmax(0,1fr); gap: 88px; align-items: start; }
.faq-intro { position: sticky; top: 120px; }
.faq-grid { display: grid; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-question > span { color: var(--text-soft); font-size: 13px; font-weight: 500; }
.faq-icon { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; transition: transform .3s ease; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer p { padding: 0 45px 25px 0; color: var(--text-mute); font-size: 12.5px; line-height: 1.78; }

/* Final CTA */
.final-cta-section { padding: 0 0 112px; }
.final-cta-card { position: relative; overflow: hidden; display: flex; align-items: end; justify-content: space-between; gap: 60px; padding: 58px; border: 1px solid rgba(210,176,110,.26); border-radius: var(--radius-lg); background: radial-gradient(circle at 85% 20%, rgba(210,176,110,.13), transparent 30%), linear-gradient(145deg, #151517, #0f0f11); }
.final-cta-card::before { content: 'MW'; position: absolute; right: 32px; top: -44px; color: rgba(255,255,255,.022); font-family: var(--font-display); font-size: 190px; font-weight: 700; line-height: 1; pointer-events: none; }
.final-cta-copy { position: relative; z-index: 1; max-width: 760px; }
.final-cta-copy p { margin-top: 20px; max-width: 650px; color: var(--text-mute); font-size: 13px; }
.final-cta-card .btn { position: relative; z-index: 2; flex: 0 0 auto; }

/* Shared detail/service pages */
.service-detail { padding: 132px 0 96px !important; }
.service-detail > .container > .section-title { max-width: 840px; }
.service-detail > .container > .section-lead { margin-top: 18px; }
.service-card { border: 1px solid var(--line-2); background: linear-gradient(145deg, rgba(255,255,255,.024), rgba(255,255,255,.01)); border-radius: var(--radius); padding: 30px; }
.service-card h2, .service-card h3 { font-family: var(--font-display); }
.service-card p { color: var(--text-mute); }
.service-icon { width: 42px; height: 42px; margin-bottom: 22px; color: var(--gold); }
.service-icon svg { width: 100%; height: 100%; }
.service-detail-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 44px; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.detail-card { border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.015); padding: 24px; }
.price-list li { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line-2); color: var(--text-mute); font-size: 12px; }
.price-list li span:last-child { color: var(--gold); font-family: var(--font-display); font-size: 16px; }
.price-note, .wa-hint { color: #8f8982; font-size: 11px; }

/* Forms */
.form-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label, .form-group > span { display: block; margin-bottom: 8px; color: #d4cec5; font-size: 12px; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select, .wa-field { width: 100%; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.025); color: var(--text); transition: border-color .2s ease, background .2s ease; }
.form-group input, .form-group textarea, .form-group select { padding: 13px 14px; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus, .wa-field:focus-within { outline: 0; border-color: rgba(210,176,110,.65); background: rgba(210,176,110,.035); }
.wa-field { display: flex; align-items: stretch; overflow: hidden; }
.wa-country { width: auto !important; min-width: 110px; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
.wa-divider { width: 1px; margin-block: 8px; background: var(--line); }
.wa-input { flex: 1; border: 0 !important; border-radius: 0 !important; background: transparent !important; }
.radio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.radio-label { display: flex !important; align-items: center; gap: 9px; min-height: 45px; margin: 0 !important; padding: 10px 12px; border: 1px solid var(--line-2); border-radius: 10px; background: rgba(255,255,255,.015); color: var(--text-mute) !important; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.radio-label:hover { border-color: rgba(210,176,110,.35); background: var(--gold-soft); }
.radio-label input { width: auto; accent-color: var(--gold); }
.honeypot { display: none !important; }

/* Generic legacy sections */
.manifesto, .cta-section { padding: 90px 0; text-align: center; border-top: 1px solid var(--line-2); }
.manifesto .quote { max-width: 900px; margin: 0 auto 18px; font-family: var(--font-display); font-size: 36px; line-height: 1.15; }
.manifesto .quote span { color: var(--gold); }
.signature { color: var(--text-mute); font-size: 12px; }
.stats-grid, .niche-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.stat, .niche, .step { border: 1px solid var(--line-2); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,.015); }
.stat .num, .step .num { color: var(--gold); font-family: var(--font-display); font-size: 30px; }
.stat .label, .niche p, .step p { color: var(--text-mute); font-size: 12px; }
.context-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 40px; }
.context-grid p { color: var(--text-mute); }
.niche-icon { width: 38px; height: 38px; margin-bottom: 16px; color: var(--gold); }
.niche h4, .step h3 { font-family: var(--font-display); font-size: 21px; }

/* Footer */
.site-footer { padding: 80px 0 28px; border-top: 1px solid var(--line-2); background: #09090a; }
.footer-topline { display: flex; align-items: end; justify-content: space-between; gap: 40px; padding-bottom: 58px; margin-bottom: 52px; border-bottom: 1px solid var(--line-2); }
.footer-statement { max-width: 720px; font-family: var(--font-display); font-size: clamp(32px,3.4vw,46px); line-height: 1.08; letter-spacing: -.03em; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3,1fr); gap: 44px; }
.footer-brand { margin-bottom: 18px; }
.footer-brand-block > p { max-width: 390px; color: var(--text-mute); font-size: 12px; line-height: 1.75; }
.footer-founders { margin-top: 16px; color: #c6bfae !important; font-size: 10px !important; letter-spacing: .07em; }
.footer-grid h5 { margin-bottom: 18px; color: #77716b; font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid > div > a:not(.brand) { display: block; width: fit-content; margin-bottom: 10px; color: #aba49c; font-size: 11.5px; transition: color .2s ease; }
.footer-grid > div > a:not(.brand):hover { color: var(--gold); }
.footer-langs { margin-top: 18px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 50px; padding-top: 22px; border-top: 1px solid var(--line-2); color: #6f6a65; font-size: 9.5px; letter-spacing: .04em; }

/* Floating WhatsApp */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; min-height: 50px; display: inline-flex; align-items: center; gap: 9px; padding: 0 16px 0 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: #f0ece4; color: #111; box-shadow: 0 16px 45px rgba(0,0,0,.28); font-size: 11px; font-weight: 600; transition: transform .2s ease, box-shadow .2s ease; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(0,0,0,.35); }
.whatsapp-float svg { width: 20px; height: 20px; fill: currentColor; }

/* Reveal */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.65,.25,1), transform .7s cubic-bezier(.2,.65,.25,1); }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal.visible:nth-child(2) { transition-delay: .06s; }
.js .reveal.visible:nth-child(3) { transition-delay: .12s; }
.js .reveal.visible:nth-child(4) { transition-delay: .18s; }

@media (max-width: 1080px) {
  .header-cta { display: none; }
  .main-nav { gap: 18px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(370px,.8fr); gap: 44px; }
  .split-head { grid-template-columns: 1fr; gap: 20px; }
  .split-head .section-lead { margin-left: 0; }
  .packages-grid { grid-template-columns: 1fr 1fr; }
  .package-card:last-child { grid-column: 1 / -1; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-card:nth-child(2) { border-right: 0; margin-right: 0; }
  .process-card:nth-child(n+3) { border-top: 1px solid var(--line-2); }
  .about-grid, .structure-grid { gap: 50px; }
  .faq-layout { grid-template-columns: 280px 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 1180px); }
  .section-pad { padding: 82px 0; }
  .main-nav, .header-actions > .lang-switcher { display: none; }
  .header-actions { margin-left: auto; }
  .menu-toggle { display: grid; }
  .header-inner { height: 72px; }
  .premium-hero { min-height: auto; padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-title { max-width: 690px; }
  .founder-hero-card { max-width: 560px; width: 100%; justify-self: center; transform: none; }
  .founder-photo-wrap { aspect-ratio: 4/3.4; }
  .hero-audience { margin-top: 48px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: auto; }
  .card-index { margin-bottom: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card:last-child { grid-column: auto; }
  .package-description { min-height: 0; }
  .addons-grid { grid-template-columns: 1fr; }
  .about-grid, .structure-grid { grid-template-columns: 1fr; }
  .about-photo-column { max-width: 620px; }
  .faq-layout { grid-template-columns: 1fr; gap: 38px; }
  .faq-intro { position: static; }
  .final-cta-card { align-items: flex-start; flex-direction: column; padding: 40px; }
  .service-detail-grid { grid-template-columns: 1fr !important; }
  .stats-grid, .niche-grid { grid-template-columns: repeat(2,1fr); }
  .footer-topline { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1180px); }
  .section-pad { padding: 68px 0; }
  .brand-copy { display: none; }
  .brand img { width: 39px; height: 39px; }
  .hero-title { font-size: clamp(44px, 14vw, 62px); }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .founder-hero-card { padding: 7px; border-radius: 22px; }
  .founder-photo-wrap { border-radius: 16px; aspect-ratio: 4/4.15; }
  .founder-caption { inset: auto 19px 18px; }
  .founder-caption strong { font-size: 21px; }
  .hero-audience { align-items: flex-start; }
  .hero-audience-line { margin-top: 9px; }
  .section-title { font-size: clamp(36px, 11vw, 48px); }
  .premium-service-card { min-height: 300px; padding: 26px; }
  .service-card-top { margin-bottom: 42px; }
  .package-card, .addons-panel { padding: 24px; }
  .addons-heading { align-items: flex-start; flex-direction: column; gap: 6px; }
  .addon-item { align-items: flex-start; flex-direction: column; gap: 5px; }
  .addon-item strong { white-space: normal; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card, .process-card:not(:last-child) { margin: 0; padding: 27px 0; border-right: 0; border-top: 1px solid var(--line-2); }
  .process-card .num { margin-bottom: 28px; }
  .about-signature { flex-direction: column; gap: 3px; }
  .final-cta-card { padding: 30px 24px; border-radius: 22px; }
  .final-cta-card .btn { width: 100%; }
  .form-row, .radio-grid { grid-template-columns: 1fr; }
  .stats-grid, .niche-grid, .context-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { right: 14px; bottom: 14px; width: 52px; height: 52px; min-height: 52px; padding: 0; justify-content: center; }
  .whatsapp-float span { display: none; }
}

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

.project-form-shell { display: grid; grid-template-columns: 300px minmax(0,1fr); gap: 28px; margin-top: 52px; align-items: start; }
.project-form-aside { position: sticky; top: 110px; padding: 28px; border: 1px solid rgba(210,176,110,.24); border-radius: var(--radius); background: radial-gradient(circle at 20% 0%, rgba(210,176,110,.11), transparent 45%), rgba(255,255,255,.016); }
.project-form-aside > span { display: block; margin-bottom: 80px; color: var(--gold); font-family: var(--font-display); font-size: 36px; font-weight: 700; }
.project-form-aside > p { color: #b8b1a8; font-family: var(--font-display); font-size: 24px; line-height: 1.16; }
.project-form-people { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line-2); }
.project-form-people img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; object-position: center 34%; }
.project-form-people div { display: grid; gap: 2px; }
.project-form-people strong { color: var(--text-soft); font-size: 11px; font-weight: 600; }
.project-form-people small { color: var(--text-mute); font-size: 9px; }
.project-form-card { padding: 30px; border: 1px solid var(--line-2); border-radius: var(--radius); background: rgba(255,255,255,.012); }
.form-errors { margin-bottom: 24px; padding: 16px 18px; border: 1px solid rgba(229,115,115,.38); border-radius: 12px; background: rgba(229,115,115,.06); color: #e7a7a7; font-size: 12px; }
.form-errors strong { display: block; margin-bottom: 6px; }
.form-errors ul { list-style: disc; padding-left: 18px; }
.project-form-card .wa-hint { margin-top: 7px; }
@media (max-width: 820px) { .project-form-shell { grid-template-columns: 1fr; } .project-form-aside { position: static; } .project-form-aside > span { margin-bottom: 34px; } }
@media (max-width: 560px) { .project-form-card, .project-form-aside { padding: 22px; } }
.section-title-alt { max-width: 820px; margin-inline: auto; }
.section-subtitle-alt { max-width: 660px; margin: 18px auto 0; color: var(--text-mute); font-size: 13px; line-height: 1.75; }

/* =========================================================
   MW Studio Media — Premium V3 refinements
   Supplied PNG identity + founders, responsive hero,
   warm ivory contrast section and premium WhatsApp button.
   ========================================================= */
:root {
  --bg: #090a0b;
  --bg-2: #0e1011;
  --surface: #141617;
  --surface-2: #1a1c1e;
  --text: #f5f1e9;
  --text-soft: #ddd6cb;
  --text-mute: #a9a298;
  --gold: #cfae69;
  --gold-2: #aa8647;
  --gold-soft: rgba(207,174,105,.12);
  --ivory: #f2eee7;
  --ivory-2: #e8e2d9;
  --ink: #171614;
  --shadow: 0 30px 90px rgba(0,0,0,.34);
}

body {
  background:
    radial-gradient(circle at 18% 0%, rgba(207,174,105,.07), transparent 31rem),
    radial-gradient(circle at 96% 30%, rgba(255,255,255,.025), transparent 25rem),
    var(--bg);
}

.section-surface {
  background:
    radial-gradient(circle at 90% 0%, rgba(207,174,105,.045), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.022), rgba(255,255,255,.008));
}

/* Supplied full PNG logo — no duplicate MW/text beside it */
.brand { gap: 0; }
.brand .brand-logo {
  width: 220px;
  height: auto;
  max-height: 62px;
  object-fit: contain;
  object-position: left center;
}
.footer-brand .footer-brand-logo {
  width: 250px;
  height: auto;
  max-height: none;
}
.header-inner { height: 86px; }
.site-header {
  background: rgba(9,10,11,.76);
  border-bottom-color: rgba(255,255,255,.035);
}
.site-header.scrolled { background: rgba(9,10,11,.94); }

/* Hero: intentionally smaller photo, with premium depth instead of a heavy rectangle */
.premium-hero { min-height: 690px; padding: 88px 0 18px; }
.hero-grid {
  grid-template-columns: minmax(0,1.12fr) minmax(360px,.78fr);
  gap: clamp(46px, 5vw, 76px);
}
.hero-title { max-width: 760px; }
.hero-audience { margin-top: 54px; padding-bottom: 28px; }

.founder-hero-card {
  width: 100%;
  max-width: 430px;
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
  transform: none;
}
.founder-photo-wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 1.22 / 1;
  border: 1px solid rgba(207,174,105,.25);
  border-radius: 30px;
  background:
    radial-gradient(circle at 60% 20%, rgba(207,174,105,.22), transparent 29%),
    radial-gradient(circle at 18% 90%, rgba(255,255,255,.07), transparent 28%),
    linear-gradient(145deg, #191b1d 0%, #0e1011 72%);
  box-shadow: 0 28px 75px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
}
.founder-photo-wrap::before {
  content: '';
  position: absolute;
  z-index: 0;
  width: 72%;
  aspect-ratio: 1;
  right: -17%;
  top: -42%;
  border: 1px solid rgba(207,174,105,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(207,174,105,.025), 0 0 0 58px rgba(207,174,105,.015);
}
.founder-photo-wrap::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 12%;
  right: 12%;
  bottom: -14px;
  height: 54px;
  border-radius: 50%;
  background: rgba(207,174,105,.13);
  filter: blur(22px);
}
.founder-photo {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -1px;
  width: 104%;
  height: 94%;
  max-width: none;
  transform: translateX(-50%);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 24px rgba(0,0,0,.29)) saturate(.98) contrast(1.015);
}
.founder-photo-shade {
  z-index: 2;
  background: linear-gradient(to top, rgba(7,8,9,.72) 0%, rgba(7,8,9,.12) 25%, transparent 46%);
}
.founder-caption {
  z-index: 3;
  inset: auto 16px 16px;
  width: fit-content;
  max-width: calc(100% - 32px);
  padding: 11px 14px 12px;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: rgba(12,13,14,.70);
  box-shadow: 0 12px 34px rgba(0,0,0,.23);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
}
.founder-kicker { margin-bottom: 3px; color: #ddc58e; }
.founder-caption strong { font-size: 21px; }
.founder-caption small { color: rgba(255,255,255,.68); }
.founder-card-detail {
  width: 64px;
  height: 64px;
  right: -10px;
  bottom: -10px;
  border-color: rgba(207,174,105,.48);
  border-radius: 0 0 28px 0;
}

/* Supplied transparent portrait in the About section */
.about-photo-frame {
  position: relative;
  overflow: hidden;
  padding: 0;
  border-color: rgba(207,174,105,.21);
  background:
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.23), transparent 24%),
    linear-gradient(145deg, #b9b0a4, #8e877f);
  box-shadow: 0 26px 74px rgba(0,0,0,.28);
}
.about-photo-frame::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 18px;
  pointer-events: none;
}
.about-photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.36 / 1;
  padding: 20px 10px 0;
  object-fit: contain;
  object-position: center bottom;
  border-radius: 22px;
  filter: drop-shadow(0 18px 20px rgba(0,0,0,.22)) saturate(.98) contrast(1.015);
}

/* Premium light break: improves rhythm without abandoning the black/gold identity */
.section-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 4%, rgba(207,174,105,.18), transparent 26rem),
    linear-gradient(180deg, #f4f1eb 0%, #eae5dd 100%);
  border-block: 1px solid rgba(23,22,20,.08);
}
.section-light .section-eyebrow { color: #96743c; }
.section-light .section-title { color: #191714; }
.section-light .section-title em { color: #9b773b; }
.section-light .section-lead,
.section-light .pricing-note { color: #625b53; }
.section-light .package-card {
  border-color: rgba(32,28,23,.09);
  background: rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(46,38,29,.06);
}
.section-light .package-card.featured {
  border-color: rgba(170,134,71,.40);
  background: linear-gradient(180deg, #fffdfa, #f7efe2);
  box-shadow: 0 26px 70px rgba(80,61,34,.11);
}
.section-light .package-badge {
  color: #775a2b;
  border-color: rgba(170,134,71,.28);
  background: rgba(207,174,105,.17);
}
.section-light .plan-order { color: #8d8377; }
.section-light .package-card h3 { color: #171513; }
.section-light .package-price { color: #9f7b3e; }
.section-light .package-description {
  color: #625b53;
  border-bottom-color: rgba(30,27,23,.08);
}
.section-light .package-list li { color: #565048; }
.section-light .package-list li::before { color: #a27d3f; }
.section-light .btn-ghost,
.section-light .btn-outline {
  color: #171513;
  border-color: rgba(30,27,23,.14);
  background: rgba(255,255,255,.72);
}
.section-light .btn-ghost:hover,
.section-light .btn-outline:hover {
  color: #171513;
  border-color: rgba(170,134,71,.42);
  background: rgba(207,174,105,.13);
}
.section-light .addons-panel {
  border-color: rgba(32,28,23,.08);
  background: rgba(255,255,255,.55);
  box-shadow: 0 18px 50px rgba(46,38,29,.045);
}
.section-light .addons-heading { border-bottom-color: rgba(32,28,23,.08); }
.section-light .addons-heading span { color: #191714; }
.section-light .addons-heading small { color: #9b773b; }
.section-light .addon-item { border-bottom-color: rgba(32,28,23,.08); }
.section-light .addon-item span { color: #575149; }
.section-light .addon-item strong { color: #9b773b; }

/* Premium floating WhatsApp — two-line pill on larger screens, clean circle on mobile */
.whatsapp-float {
  right: 24px;
  bottom: 24px;
  min-height: 66px;
  gap: 12px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(207,174,105,.27);
  border-radius: 999px;
  background: rgba(249,246,240,.97);
  color: #171513;
  box-shadow: 0 20px 58px rgba(0,0,0,.30), 0 1px 0 rgba(255,255,255,.85) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 68px rgba(0,0,0,.35), 0 0 0 5px rgba(207,174,105,.06);
}
.wa-icon-wrap {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #29d66f, #12a94e);
  box-shadow: 0 8px 20px rgba(18,169,78,.24), inset 0 1px 0 rgba(255,255,255,.25);
}
.wa-icon-wrap::after {
  content: '';
  position: absolute;
  right: 1px;
  top: 1px;
  width: 8px;
  height: 8px;
  border: 2px solid #f9f6f0;
  border-radius: 50%;
  background: #28c968;
}
.whatsapp-float svg { width: 22px; height: 22px; fill: currentColor; }
.wa-copy { display: grid; gap: 1px; line-height: 1.12; }
.wa-copy small {
  color: #81776d;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.wa-copy strong { font-size: 12.5px; font-weight: 700; white-space: nowrap; }

@media (max-width: 1180px) {
  .brand .brand-logo { width: 196px; }
  .hero-grid { grid-template-columns: minmax(0,1fr) minmax(350px,.76fr); gap: 48px; }
  .founder-hero-card { max-width: 405px; }
}

@media (max-width: 820px) {
  .header-inner { height: 74px; }
  .brand .brand-logo { width: 182px; max-height: 53px; }
  .premium-hero { padding-top: 58px; padding-bottom: 8px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .founder-hero-card { max-width: 470px; justify-self: center; }
  .founder-photo-wrap { aspect-ratio: 1.24 / 1; }
  .hero-audience { margin-top: 42px; }
  .about-photo-column { margin-inline: auto; width: min(100%, 570px); }
  .about-photo-frame img { aspect-ratio: 1.34 / 1; }
  .footer-brand .footer-brand-logo { width: 220px; }
}

@media (max-width: 560px) {
  .brand .brand-logo {
    width: 158px;
    height: auto;
    max-height: 48px;
  }
  .premium-hero { padding-top: 48px; }
  .hero-title { font-size: clamp(42px, 13.2vw, 58px); }
  .hero-grid { gap: 36px; }
  .founder-hero-card { width: min(100%, 390px); }
  .founder-photo-wrap { aspect-ratio: 1.16 / 1; border-radius: 24px; }
  .founder-photo { width: 112%; height: 94%; }
  .founder-caption {
    inset: auto 11px 11px;
    max-width: calc(100% - 22px);
    padding: 9px 11px 10px;
    border-radius: 12px;
  }
  .founder-kicker { font-size: 7.5px; letter-spacing: .16em; }
  .founder-caption strong { font-size: 17px; }
  .founder-caption small { font-size: 8.5px; }
  .hero-audience { margin-top: 34px; }
  .about-photo-frame img { aspect-ratio: 1.16 / 1; padding: 18px 4px 0; }
  .footer-brand .footer-brand-logo { width: 200px; }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 6px;
    justify-content: center;
  }
  .wa-icon-wrap { width: 46px; height: 46px; }
  .wa-copy { display: none; }
}

@media (max-width: 360px) {
  .brand .brand-logo { width: 142px; }
  .container { width: min(100% - 20px, 1180px); }
  .hero-title { font-size: clamp(38px, 12.8vw, 50px); }
}

/* Tiny founder preview inside the project form uses the responsive PNG cleanly. */
.project-form-people img {
  width: 74px;
  height: 48px;
  border-radius: 12px;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(145deg, #b9b0a4, #8e877f);
  border: 1px solid rgba(207,174,105,.2);
}

@media (max-width: 560px) {
  .whatsapp-float .wa-icon-wrap { display: grid; }
  .whatsapp-float .wa-copy { display: none; }
}


/* ===== V5 refinements ===== */
.brand .brand-logo { width: 188px; max-height: 44px; }
.footer-brand .footer-brand-logo { width: 226px; max-height: 56px; }
@media (max-width: 820px) { .brand .brand-logo { width: 170px; max-height: 40px; } .footer-brand .footer-brand-logo { width: 208px; } }
@media (max-width: 560px) { .brand .brand-logo { width: 154px; max-height: 36px; } .footer-brand .footer-brand-logo { width: 188px; } }

.founder-photo-wrap, .about-photo-frame { position: relative; }
.photo-film, .about-photo-frame::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,0) 24%, rgba(0,0,0,.05) 100%), linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,0) 32%), repeating-linear-gradient(90deg, rgba(255,255,255,.015) 0 1px, transparent 1px 4px); opacity: .16; mix-blend-mode: soft-light; z-index: 2; }
.founder-photo-shade { z-index: 3; }
.founder-caption { z-index: 4; }
.founder-photo { filter: drop-shadow(0 22px 24px rgba(0,0,0,.29)) saturate(.98) contrast(1.015) brightness(1.02); }
.about-photo-frame::before { z-index: 3; }
.about-photo-frame::after { z-index: 2; }
.about-photo-frame img { position: relative; z-index: 1; filter: drop-shadow(0 18px 20px rgba(0,0,0,.22)) saturate(.98) contrast(1.015) brightness(1.02); }

.package-badge { background: rgba(207,174,105,.13); color: #8b682f; border-color: rgba(170,134,71,.22); }
.section-light .package-card:nth-child(1) .package-badge { background: rgba(116,138,162,.10); border-color: rgba(116,138,162,.18); color: #5b6f82; }
.section-light .package-card:nth-child(2) .package-badge { background: rgba(207,174,105,.16); border-color: rgba(170,134,71,.28); color: #7a5b28; }
.section-light .package-card:nth-child(3) .package-badge { background: rgba(121,137,113,.12); border-color: rgba(121,137,113,.18); color: #617158; }

.wa-country { width: 124px; flex: 0 0 124px; border: 0 !important; border-radius: 12px 0 0 12px !important; background: transparent !important; color: var(--text-soft) !important; appearance: none; -webkit-appearance: none; padding-right: 30px !important; }
.wa-country option { background: #121315; color: #f4f0e8; }
.wa-field { display: grid; grid-template-columns: 124px 1px minmax(0,1fr); align-items: center; position: relative; overflow: hidden; }
.wa-field::after { content: '▾'; position: absolute; left: 98px; color: #c8b58c; font-size: 12px; pointer-events: none; }
.wa-divider { width: 1px; height: 54%; background: rgba(255,255,255,.12); }
.wa-input { border: 0 !important; border-radius: 0 12px 12px 0 !important; background: transparent !important; }

.wa-widget { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: grid; justify-items: end; gap: 10px; }
.wa-widget-toggle { width: 60px; height: 60px; border: 0; padding: 0; border-radius: 50%; background: transparent; cursor: pointer; }
.wa-widget-toggle .wa-icon-wrap { width: 60px; height: 60px; box-shadow: 0 18px 42px rgba(0,0,0,.32), 0 0 0 6px rgba(255,255,255,.06); }
.wa-widget-panel { min-width: 240px; max-width: min(92vw, 280px); padding: 14px; border: 1px solid rgba(207,174,105,.22); border-radius: 18px; background: rgba(12,13,14,.94); box-shadow: 0 22px 58px rgba(0,0,0,.34); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); display: grid; gap: 10px; opacity: 0; transform: translateY(8px) scale(.98); pointer-events: none; transition: .22s ease; }
.wa-widget.open .wa-widget-panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.wa-widget-kicker { color: #cdb57d; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.wa-option { display: grid; gap: 3px; padding: 10px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 14px; background: rgba(255,255,255,.03); color: #f4f0e8; }
.wa-option:hover { border-color: rgba(207,174,105,.28); background: rgba(207,174,105,.08); }
.wa-option strong { font-size: 14px; font-weight: 600; }
.wa-option small { color: #bcb3a6; font-size: 11px; }
@media (max-width: 560px) { .wa-widget { right: 14px; bottom: 14px; } .wa-widget-panel { min-width: 224px; } .wa-widget-toggle, .wa-widget-toggle .wa-icon-wrap { width: 56px; height: 56px; } }


/* ===== V6 proportional hero + MW WhatsApp ===== */
/* More proportional headline on desktop/laptop without losing the editorial look */
.hero-title {
  max-width: 720px;
  font-size: clamp(46px, 4.35vw, 64px);
  line-height: 1.01;
  letter-spacing: -.032em;
}
.hero-title em {
  display: inline;
  font-size: .94em;
}
@media (max-width: 1180px) {
  .hero-title { max-width: 690px; font-size: clamp(44px, 4.8vw, 60px); }
}
@media (max-width: 820px) {
  .hero-title { max-width: 650px; font-size: clamp(42px, 7.4vw, 56px); line-height: 1.02; }
}
@media (max-width: 560px) {
  .hero-title { max-width: 100%; font-size: clamp(38px, 10.6vw, 48px); line-height: 1.04; }
}
@media (max-width: 360px) {
  .hero-title { font-size: clamp(35px, 10.4vw, 44px); }
}

/* WhatsApp trigger now follows MW's dark + warm-gold identity */
.wa-widget-toggle .wa-icon-wrap,
.wa-icon-wrap {
  color: #d7b56f;
  background:
    radial-gradient(circle at 35% 25%, rgba(216,181,111,.12), transparent 38%),
    linear-gradient(145deg, #171819, #0e0f10);
  border: 1px solid rgba(216,181,111,.34);
  box-shadow:
    0 16px 38px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.055),
    0 0 0 1px rgba(216,181,111,.035);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, color .24s ease, background .24s ease;
}
.wa-icon-wrap::after {
  width: 7px;
  height: 7px;
  right: 3px;
  top: 3px;
  border: 2px solid #111213;
  background: #d7b56f;
  box-shadow: 0 0 9px rgba(216,181,111,.34);
}
.wa-widget-toggle:hover .wa-icon-wrap,
.wa-widget-toggle:focus-visible .wa-icon-wrap {
  color: #f4ddb0;
  border-color: rgba(232,198,130,.72);
  background:
    radial-gradient(circle at 38% 28%, rgba(232,198,130,.18), transparent 40%),
    linear-gradient(145deg, #1d1b17, #111213);
  transform: translateY(-2px) scale(1.025);
  box-shadow:
    0 18px 44px rgba(0,0,0,.40),
    0 0 24px rgba(216,181,111,.20),
    0 0 0 5px rgba(216,181,111,.055),
    inset 0 1px 0 rgba(255,255,255,.07);
}
.wa-widget-toggle:focus-visible {
  outline: none;
}
.wa-widget-panel {
  border-color: rgba(216,181,111,.24);
  background:
    radial-gradient(circle at 100% 0%, rgba(216,181,111,.08), transparent 45%),
    rgba(12,13,14,.96);
}
.wa-option:hover {
  border-color: rgba(216,181,111,.38);
  background: rgba(216,181,111,.075);
}

/* ===== V7: highly visible premium gold WhatsApp trigger ===== */
.wa-widget-toggle {
  position: relative;
  isolation: isolate;
}
.wa-widget-toggle::before {
  content: '';
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222,185,106,.20), rgba(222,185,106,0) 68%);
  opacity: .72;
  filter: blur(7px);
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}
.wa-widget-toggle .wa-icon-wrap {
  color: #ffe4a8;
  border: 1px solid rgba(255,232,178,.68);
  background:
    radial-gradient(circle at 31% 22%, rgba(255,242,207,.32), transparent 27%),
    linear-gradient(145deg, #d9b568 0%, #b4863e 48%, #8d642b 100%);
  box-shadow:
    0 14px 34px rgba(0,0,0,.34),
    0 7px 22px rgba(181,134,58,.20),
    inset 0 1px 1px rgba(255,247,225,.52),
    inset 0 -1px 1px rgba(82,54,18,.28),
    0 0 0 4px rgba(213,174,94,.07);
  text-shadow: 0 1px 1px rgba(73,46,10,.28);
}
.wa-widget-toggle .wa-icon-wrap svg {
  width: 25px;
  height: 25px;
  filter: drop-shadow(0 1px 1px rgba(84,53,12,.24));
}
.wa-widget-toggle .wa-icon-wrap::after {
  width: 7px;
  height: 7px;
  right: 4px;
  top: 4px;
  border: 2px solid #a57937;
  background: #fff0c8;
  box-shadow: 0 0 8px rgba(255,226,159,.58);
}
.wa-widget-toggle:hover::before,
.wa-widget-toggle:focus-visible::before {
  opacity: 1;
  transform: scale(1.18);
  filter: blur(9px);
}
.wa-widget-toggle:hover .wa-icon-wrap,
.wa-widget-toggle:focus-visible .wa-icon-wrap {
  color: #fff1c7;
  border-color: rgba(255,240,202,.92);
  background:
    radial-gradient(circle at 31% 22%, rgba(255,248,224,.46), transparent 30%),
    linear-gradient(145deg, #e6c57b 0%, #c99b4b 46%, #9a6e2d 100%);
  transform: translateY(-2px) scale(1.035);
  box-shadow:
    0 17px 40px rgba(0,0,0,.36),
    0 0 17px rgba(225,185,102,.38),
    0 0 34px rgba(225,185,102,.20),
    0 0 0 5px rgba(225,185,102,.10),
    inset 0 1px 1px rgba(255,250,234,.64),
    inset 0 -1px 1px rgba(86,56,17,.25);
}
.wa-widget.open .wa-widget-toggle .wa-icon-wrap {
  border-color: rgba(255,238,194,.84);
  box-shadow:
    0 16px 38px rgba(0,0,0,.35),
    0 0 22px rgba(225,185,102,.28),
    0 0 0 5px rgba(225,185,102,.09),
    inset 0 1px 1px rgba(255,248,226,.58);
}


/* ===== V8 footer/link reliability + privacy page ===== */
.site-footer {
  position: relative;
  z-index: 20;
  isolation: isolate;
}
.site-footer .container,
.footer-grid,
.footer-info-block,
.footer-langs {
  position: relative;
  z-index: 2;
}
.footer-info-block .footer-action-link {
  position: relative;
  z-index: 4;
  display: block;
  width: fit-content;
  min-height: 34px;
  padding: 5px 0;
  margin: 0 0 4px;
  color: #b9b2aa;
  font-size: 12px;
  line-height: 1.5;
  cursor: pointer;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: rgba(207,174,105,.16);
}
.footer-info-block .footer-action-link:hover,
.footer-info-block .footer-action-link:focus-visible {
  color: var(--gold);
  outline: none;
}
.footer-langs {
  z-index: 5;
  pointer-events: auto !important;
}
.footer-langs a {
  position: relative;
  z-index: 6;
  pointer-events: auto !important;
  cursor: pointer;
  touch-action: manipulation;
}

.privacy-page { padding: 142px 0 108px; }
.privacy-wrap { max-width: 860px; }
.privacy-intro { margin-top: 20px; color: var(--text-mute); font-size: 15px; line-height: 1.8; max-width: 760px; }
.privacy-updated { margin-top: 14px; color: #77716b; font-size: 11px; letter-spacing: .04em; }
.privacy-content { margin-top: 54px; display: grid; gap: 14px; }
.privacy-card { padding: 28px 30px; border: 1px solid var(--line-2); border-radius: 18px; background: rgba(255,255,255,.014); }
.privacy-card h2 { margin: 0 0 10px; color: var(--gold); font-family: var(--font-display); font-size: 28px; line-height: 1.1; font-weight: 600; }
.privacy-card p, .privacy-card li { color: var(--text-mute); font-size: 13.5px; line-height: 1.82; }
.privacy-card ul { margin: 12px 0 0; display: grid; gap: 7px; }
.privacy-card li { position: relative; padding-left: 18px; }
.privacy-card li::before { content: '•'; position: absolute; left: 2px; color: var(--gold); }
.privacy-card a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.privacy-note-card { background: linear-gradient(145deg, rgba(207,174,105,.07), rgba(255,255,255,.012)); border-color: rgba(207,174,105,.18); }
@media (max-width: 560px) {
  .privacy-page { padding: 98px 0 76px; }
  .privacy-content { margin-top: 38px; }
  .privacy-card { padding: 22px 20px; }
  .privacy-card h2 { font-size: 25px; }
}

/* V9 — International SEO page system */
.seo-hero{padding:120px 0 92px;position:relative;overflow:hidden;background:radial-gradient(circle at 78% 14%,rgba(210,176,110,.09),transparent 28rem)}
.seo-hero-grid{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(300px,.65fr);gap:74px;align-items:center}.seo-title{max-width:840px;font-family:var(--font-display);font-size:clamp(48px,5vw,72px);line-height:.99;letter-spacing:-.035em;font-weight:600}.seo-title em{color:var(--gold);font-style:italic;font-weight:500}.seo-lead{max-width:720px;margin:24px 0 30px;color:var(--text-mute);font-size:16px;line-height:1.8}.seo-side-card{padding:32px;border:1px solid rgba(210,176,110,.22);border-radius:24px;background:linear-gradient(145deg,rgba(255,255,255,.045),rgba(255,255,255,.012));box-shadow:var(--shadow)}.seo-side-card>span{color:var(--gold);font-size:10px;letter-spacing:.16em;text-transform:uppercase}.seo-side-card h2{margin:28px 0 12px;font-family:var(--font-display);font-size:30px;line-height:1.05}.seo-side-card p{color:var(--text-mute);font-size:13px;line-height:1.75}.seo-content-grid{display:grid;grid-template-columns:minmax(280px,.55fr) minmax(0,1.45fr);gap:70px}.seo-card-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}.seo-card{min-height:220px;padding:28px;border:1px solid var(--line-2);border-radius:18px;background:rgba(255,255,255,.015)}.seo-card>span{color:var(--gold);font-family:var(--font-display)}.seo-card h3{margin:44px 0 10px;font-family:var(--font-display);font-size:25px}.seo-card p{color:var(--text-mute);font-size:12.5px;line-height:1.75}.seo-faq{max-width:900px;margin-top:44px}.article-narrow{max-width:900px}.article-layout{display:grid;grid-template-columns:minmax(0,1fr) 300px;gap:74px;align-items:start}.article-body{display:grid;gap:44px}.article-section{padding-bottom:38px;border-bottom:1px solid var(--line-2)}.article-section h2{margin-bottom:14px;font-family:var(--font-display);font-size:34px;line-height:1.05}.article-section p{color:var(--text-mute);font-size:15px;line-height:1.85}.article-section ul{display:grid;gap:10px;margin-top:20px}.article-section li{position:relative;padding-left:20px;color:var(--text-soft);font-size:13px}.article-section li:before{content:'•';position:absolute;left:0;color:var(--gold)}.article-aside{position:sticky;top:110px;padding:28px;border:1px solid rgba(210,176,110,.22);border-radius:20px;background:rgba(255,255,255,.018)}.article-aside h3{margin:8px 0 12px;font-family:var(--font-display);font-size:26px}.article-aside p{margin-bottom:22px;color:var(--text-mute);font-size:12.5px;line-height:1.75}.seo-related-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:40px}.seo-related-card{display:grid;grid-template-columns:1fr auto;gap:12px;align-items:end;min-height:150px;padding:24px;border:1px solid rgba(24,21,18,.10);border-radius:18px;background:rgba(255,255,255,.65);color:#1c1916}.seo-related-card>span{grid-column:1/-1;color:#9b773b;font-size:9px;letter-spacing:.14em}.seo-related-card strong{font-family:var(--font-display);font-size:22px;line-height:1.08}.seo-related-card i{font-style:normal;color:#9b773b}.seo-service-list{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.seo-service-link{display:block;position:relative;color:inherit}.seo-service-link h2{margin:58px 0 12px;font-family:var(--font-display);font-size:31px}.seo-service-link p{max-width:480px;color:var(--text-mute);font-size:13px;line-height:1.75}.seo-service-link .service-arrow{position:absolute;top:28px;right:28px}.privacy-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:48px}.privacy-grid .detail-card h2{margin-bottom:10px;font-family:var(--font-display);font-size:26px}.about-long{max-width:780px;margin:0 auto}.about-long p{font-size:17px;line-height:1.9}
@media(max-width:900px){.seo-hero-grid,.seo-content-grid,.article-layout{grid-template-columns:1fr}.seo-side-card{max-width:600px}.article-aside{position:static}.seo-related-grid{grid-template-columns:1fr}.seo-service-list{grid-template-columns:1fr}.privacy-grid{grid-template-columns:1fr}}
@media(max-width:560px){.seo-hero{padding:78px 0 64px}.seo-title{font-size:clamp(40px,12vw,54px)}.seo-lead{font-size:14.5px}.seo-card-grid{grid-template-columns:1fr}.seo-card{min-height:auto}.article-section h2{font-size:30px}}


/* ===== V10 · Premium first-visit language experience ===== */
.language-gate { display: none; position: fixed; inset: 0; z-index: 9998; place-items: center; padding: clamp(18px, 4vw, 52px); }
.mw-language-gate-pending .language-gate { display: grid; }
.mw-language-gate-pending, .mw-language-gate-pending body { overflow: hidden; }
.language-gate-backdrop { position: absolute; inset: 0; background: radial-gradient(circle at 50% 26%, rgba(203,165,91,.09), transparent 32rem), rgba(5,6,7,.78); backdrop-filter: blur(16px) saturate(105%); -webkit-backdrop-filter: blur(16px) saturate(105%); }
.language-gate-card { position: relative; width: min(900px, 100%); max-height: min(88vh, 760px); overflow: auto; padding: clamp(30px, 5vw, 58px); border: 1px solid rgba(207,174,105,.28); border-radius: 32px; background: radial-gradient(circle at 84% 4%, rgba(207,174,105,.10), transparent 24rem), linear-gradient(145deg, rgba(21,22,24,.98), rgba(9,10,11,.985)); box-shadow: 0 42px 110px rgba(0,0,0,.56), inset 0 1px 0 rgba(255,255,255,.055); color: #f4f0e8; animation: mwGateIn .52s cubic-bezier(.2,.72,.24,1) both; scrollbar-width: thin; scrollbar-color: rgba(207,174,105,.3) transparent; }
.language-gate-card::before { content: ''; position: absolute; width: 320px; height: 320px; right: -180px; top: -190px; border: 1px solid rgba(207,174,105,.14); border-radius: 50%; box-shadow: 0 0 0 40px rgba(207,174,105,.018), 0 0 0 84px rgba(207,174,105,.01); pointer-events: none; }
.language-gate-close { position: absolute; z-index: 2; right: 18px; top: 18px; width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.10); border-radius: 50%; background: rgba(255,255,255,.035); color: #c9c1b4; font-size: 23px; line-height: 1; cursor: pointer; transition: border-color .2s ease, color .2s ease, background .2s ease, transform .2s ease; }
.language-gate-close:hover { border-color: rgba(207,174,105,.46); color: #e2c98f; background: rgba(207,174,105,.07); transform: rotate(4deg); }
.language-gate-brand { width: clamp(170px, 25vw, 235px); margin-bottom: 34px; }
.language-gate-brand img { width: 100%; height: auto; object-fit: contain; }
.language-gate-eyebrow { display: block; margin-bottom: 12px; color: #d1b373; font-size: 10px; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.language-gate-card h2 { max-width: 710px; margin: 0; font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 600; letter-spacing: -.035em; line-height: 1.02; text-wrap: balance; }
.language-gate-card > p { max-width: 650px; margin: 18px 0 30px; color: #aaa39a; font-size: 14px; line-height: 1.75; }
.language-gate-options { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.language-choice { position: relative; min-height: 176px; display: flex; flex-direction: column; align-items: flex-start; padding: 20px; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.014)); overflow: hidden; transition: transform .24s ease, border-color .24s ease, background .24s ease, box-shadow .24s ease; }
.language-choice::after { content: ''; position: absolute; width: 110px; height: 110px; right: -70px; bottom: -70px; border: 1px solid rgba(207,174,105,.12); border-radius: 50%; transition: transform .3s ease, border-color .3s ease; }
.language-choice:hover { transform: translateY(-4px); border-color: rgba(207,174,105,.42); background: linear-gradient(145deg, rgba(207,174,105,.075), rgba(255,255,255,.018)); box-shadow: 0 18px 42px rgba(0,0,0,.22), 0 0 28px rgba(207,174,105,.035); }
.language-choice:hover::after { transform: scale(1.12); border-color: rgba(207,174,105,.26); }
.language-choice.is-current { border-color: rgba(207,174,105,.25); }
.language-choice-code { min-width: 42px; height: 28px; display: inline-grid; place-items: center; margin-bottom: 26px; padding-inline: 8px; border: 1px solid rgba(207,174,105,.24); border-radius: 999px; color: #d9c185; background: rgba(207,174,105,.055); font-size: 9px; font-weight: 700; letter-spacing: .10em; }
.language-choice-copy { display: grid; gap: 1px; }
.language-choice-copy strong { font-family: var(--font-display); font-size: 24px; font-weight: 600; line-height: 1.05; }
.language-choice-copy small { color: #aaa39a; font-size: 11px; }
.language-choice-current { position: absolute; right: 13px; top: 13px; padding: 5px 8px; border-radius: 999px; color: #8f7644; background: #ede0c3; font-size: 7.5px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.language-choice-arrow { margin-top: auto; padding-top: 20px; color: #cbb77e; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.language-choice-arrow b { font-weight: 500; transition: transform .2s ease; display: inline-block; }
.language-choice:hover .language-choice-arrow b { transform: translateX(4px); }
.language-gate-continue { display: inline-flex; align-items: center; gap: 9px; margin-top: 24px; padding: 0; border: 0; background: transparent; color: #8f8982; font-size: 11px; cursor: pointer; transition: color .2s ease; }
.language-gate-continue:hover { color: #d5bd83; }
.language-gate-continue span { color: #c9aa67; }
.language-gate.is-closing { animation: mwGateOut .28s ease both; pointer-events: none; }
@keyframes mwGateIn { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes mwGateOut { from { opacity: 1; } to { opacity: 0; } }
@media (max-width: 720px) {
  .language-gate { align-items: end; padding: 12px; }
  .language-gate-card { width: 100%; max-height: 88vh; padding: 32px 20px 24px; border-radius: 28px; }
  .language-gate-brand { width: 170px; margin-bottom: 26px; }
  .language-gate-card h2 { font-size: clamp(34px, 10vw, 46px); }
  .language-gate-card > p { margin: 14px 0 22px; font-size: 12.5px; }
  .language-gate-options { grid-template-columns: 1fr; gap: 9px; }
  .language-choice { min-height: 96px; display: grid; grid-template-columns: 52px 1fr auto; align-items: center; gap: 10px; padding: 14px; }
  .language-choice-code { margin: 0; }
  .language-choice-copy strong { font-size: 21px; }
  .language-choice-arrow { margin: 0; padding: 0; align-self: center; }
  .language-choice-current { display: none; }
  .language-gate-continue { margin-top: 18px; }
}
@media (max-width: 380px) {
  .language-gate-card { padding-inline: 16px; }
  .language-choice { grid-template-columns: 48px 1fr; }
  .language-choice-arrow { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .language-gate-card, .language-gate.is-closing { animation: none !important; }
  .language-choice { transition: none; }
}
