:root {
  --navy-950: #0a1631;
  --navy-900: #0f1f45;
  --navy: #12254f;
  --navy-600: #25407e;
  --gold: #e8b21a;
  --gold-soft: #f6d879;
  --red: #c8202f;
  --ink: #0e1a33;
  --muted: #5a6479;
  --line: #e7e3da;
  --paper: #f6f4ef;
  --white: #fff;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 18px 40px -22px rgba(15, 31, 69, .35);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-600); }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.02em; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.narrow { width: min(820px, 100% - 32px); }
.skip { position: absolute; left: -999px; top: 8px; z-index: 100; background: var(--gold); color: var(--ink); padding: 8px 14px; border-radius: 8px; }
.skip:focus { left: 12px; }
.gold { color: var(--gold); }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon { width: 1.15em; height: 1.15em; flex-shrink: 0; vertical-align: -.2em; }

/* Glass surfaces (Liquid Glass-inspired: blur, saturation, inner highlight) */
.glass {
  background: linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.06));
  -webkit-backdrop-filter: blur(20px) saturate(170%);
  backdrop-filter: blur(20px) saturate(170%);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -1px 0 rgba(255,255,255,.08), 0 24px 48px -24px rgba(0,0,0,.55);
  color: var(--white);
}
.glass-light {
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(18,37,79,.08);
  box-shadow: inset 0 1px 0 #fff, var(--shadow);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 999px; border: 1px solid transparent;
  font: inherit; font-weight: 700; text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: .6em 1.15em; font-size: .92rem; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--navy-950); box-shadow: 0 10px 24px -10px rgba(232,178,26,.7); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-600); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-viber { background: #7360f2; color: var(--white); box-shadow: 0 10px 24px -12px rgba(115,96,242,.7); }
.btn-viber:hover { background: #8575f5; }
.btn-glass {
  color: var(--white); background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.5em 0 1em; }

/* Header */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header-h);
  color: var(--white); transition: background-color .3s, box-shadow .3s, color .3s;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 1px 0 rgba(18,37,79,.08), 0 10px 30px -20px rgba(15,31,69,.4);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.brand img { width: 44px; height: auto; }
.brand strong { display: block; font-size: 1.05rem; letter-spacing: -.01em; }
.brand small { display: block; font-size: .72rem; opacity: .75; }
.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a:not(.btn) {
  color: inherit; text-decoration: none; font-weight: 600; font-size: .92rem;
  padding: .5em .8em; border-radius: 999px; transition: background-color .2s; white-space: nowrap;
}
.site-nav a:not(.btn):hover { background: rgba(127,127,127,.14); }
.site-nav .btn { margin-left: 8px; }
.nav-toggle { display: none; }
.site-nav .lang-switch { border: 1px solid currentColor; opacity: .85; margin-left: 4px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .lang-switch { color: inherit; text-decoration: none; font-weight: 600; font-size: .92rem; padding: .45em .9em; border: 1px solid currentColor; border-radius: 999px; }

/* Burmese pages: Myanmar script needs its own font and taller lines */
html[lang="my"] body { font-family: "Plus Jakarta Sans", "Noto Sans Myanmar", "Myanmar Text", "Myanmar Sangam MN", sans-serif; line-height: 1.85; }
html[lang="my"] :is(h1, h2, h3, h4) { line-height: 1.5; letter-spacing: 0; }
html[lang="my"] .hero h1 { font-size: clamp(1.9rem, 4.2vw, 3.3rem); letter-spacing: 0; }
html[lang="my"] h2 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); }
html[lang="my"] .eyebrow { text-transform: none; letter-spacing: .02em; font-size: .85rem; }
html[lang="my"] .site-nav a:not(.btn) { padding: .5em .6em; font-size: .88rem; }

/* Hero */
.hero { position: relative; min-height: min(92vh, 860px); min-height: min(92svh, 860px); display: grid; align-items: center; overflow: hidden; color: var(--white); padding: calc(var(--header-h) + 40px) 0 64px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,22,49,.95) 0%, rgba(10,22,49,.8) 45%, rgba(18,37,79,.45) 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.35fr 1fr; gap: 48px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--red); margin-bottom: .9em; }
.hero .eyebrow, .section-navy .eyebrow { color: var(--gold); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 4.2rem); font-weight: 800; letter-spacing: -.035em; margin-bottom: .45em; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: rgba(255,255,255,.85); max-width: 36em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8em; }
.hero-card { border-radius: var(--radius); padding: 28px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; margin: 0; }
.stats dt { font-size: clamp(2rem, 3.4vw, 2.7rem); font-weight: 800; letter-spacing: -.03em; color: var(--gold); line-height: 1; }
.stats dd { margin: .4em 0 0; font-size: .9rem; color: rgba(255,255,255,.82); }

/* Clients marquee */
.clients { padding: 40px 0 34px; border-bottom: 1px solid var(--line); }
.section-kicker { text-align: center; font-weight: 700; color: var(--muted); font-size: .95rem; margin-bottom: 22px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; align-items: center; width: max-content; list-style: none; margin: 0; padding: 0; animation: marquee 90s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track li { padding-right: 56px; }
.marquee-track img { height: 52px; width: auto; max-width: 170px; object-fit: contain; filter: grayscale(1); opacity: .7; transition: filter .3s, opacity .3s; }
.marquee-track img:hover { filter: none; opacity: 1; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Sections */
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0 clamp(72px, 9vw, 120px); }
.section-paper { background: var(--paper); }
.section-navy {
  color: var(--white);
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(232,178,26,.22), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(200,32,47,.28), transparent 60%),
    linear-gradient(rgba(10,22,49,.45), rgba(10,22,49,.6)),
    url("assets/img/process-bg.webp") center / cover no-repeat,
    var(--navy-950);
}
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head p:last-child { color: var(--muted); font-size: 1.08rem; }
.section-head-light p:last-child { color: rgba(255,255,255,.75); }

/* Services bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -26px rgba(15,31,69,.45); }
.span-2 { grid-column: span 2; }
.card-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .6s var(--ease); }
.card-photo:hover img { transform: scale(1.05); }
.span-2.card-photo img { aspect-ratio: 16 / 8.2; }
.card-body { padding: 20px 22px 24px; }
.card-body p { color: var(--muted); font-size: .95rem; margin: 0; }

/* Products */
.wide-media { margin-bottom: 36px; }
.wide-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.industries { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: 0 0 36px; }
.industries li { padding: .55em 1.1em; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; }
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 16px; list-style: none; padding: 0; margin: 0; }
.products li { position: relative; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--line); padding: 14px 14px 16px; text-align: center; transition: transform .6s var(--ease), box-shadow .6s var(--ease); }
@media (hover: hover) {
  .products li:hover { transform: scale(1.06); z-index: 2; box-shadow: 0 26px 50px -24px rgba(15,31,69,.45); }
}
.products .thumb { display: block; overflow: hidden; border-radius: 10px; background: #f1f0ec; margin-bottom: 10px; }
.products img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.products span { font-weight: 700; font-size: .95rem; }
.products .products-more { display: flex; flex-direction: column; justify-content: center; gap: 10px; text-align: left; background: var(--navy); color: var(--white); border: 0; }
.products-more span { font-weight: 500; font-size: .92rem; color: rgba(255,255,255,.85); }
.products-more a { color: var(--gold); font-weight: 700; text-decoration: none; }

/* Split layouts */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.split-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.ticks { list-style: none; padding: 0; margin: 1.4em 0 1.8em; display: grid; gap: .7em; }
.ticks li { position: relative; padding-left: 1.9em; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .35em; width: 1.1em; height: 1.1em; border-radius: 50%; background: var(--gold) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%230a1631' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round' d='m5 12.5 4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 70% no-repeat; }

/* Clients grid */
/* Clients: 3-row horizontal scroller (swipe on touch, arrow buttons on desktop) */
.logo-grid {
  --cols: 7; display: grid; grid-auto-flow: column; grid-template-rows: repeat(3, auto);
  grid-auto-columns: calc((100% - (var(--cols) - 1) * 14px) / var(--cols)); gap: 14px;
  list-style: none; padding: 4px 2px 10px; margin: 0;
  overflow-x: auto; scroll-snap-type: x mandatory; overscroll-behavior-x: contain; scrollbar-width: none;
}
.logo-grid::-webkit-scrollbar { display: none; }
.logo-grid li { scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 130px; padding: 18px 12px; text-align: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.logo-grid li:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.logo-grid img { height: 56px; width: auto; max-width: 100%; object-fit: contain; }
.logo-grid span { font-size: .78rem; font-weight: 600; color: var(--muted); line-height: 1.3; }
.scroller-nav { display: flex; justify-content: flex-end; gap: 8px; margin: -28px 0 14px; }
.scroll-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  color: var(--navy); font: inherit; font-size: 1.1rem; font-weight: 700; cursor: pointer; box-shadow: var(--shadow);
  transition: opacity .2s, transform .2s var(--ease);
}
.scroll-btn:hover:not(:disabled) { transform: translateY(-2px); }
.scroll-btn:disabled { opacity: .35; cursor: default; box-shadow: none; }

/* Facebook highlights */
.highlights { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlights li { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: var(--radius-sm); }
.highlights .icon { width: 1.5em; height: 1.5em; color: var(--red); margin-top: 2px; }
.highlights b { display: block; font-size: .95rem; }
.highlights span { display: block; color: var(--muted); font-size: .86rem; line-height: 1.45; margin-top: 2px; }

/* Process */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.steps li { border-radius: var(--radius); padding: 26px; }
.steps b { display: inline-block; font-size: .85rem; color: var(--navy-950); background: var(--gold); border-radius: 999px; padding: .2em .75em; margin-bottom: 1em; }
.steps p { color: rgba(255,255,255,.78); margin: 0; font-size: .95rem; }

/* Partner band */
.band { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: clamp(28px, 4vw, 48px); border-radius: var(--radius); background: linear-gradient(120deg, var(--navy) 0%, var(--navy-600) 100%); color: var(--white); box-shadow: var(--shadow); }
.band h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
.band p { color: rgba(255,255,255,.8); margin: 0; max-width: 46em; }
.band .eyebrow { color: var(--gold); }
.band .btn { flex-shrink: 0; }

/* Facebook */
.split-fb { align-items: start; }
.fb-frame { justify-self: center; width: 100%; max-width: 500px; border-radius: var(--radius); overflow: hidden; background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--line); }
.fb-frame iframe { display: block; width: 100%; height: 640px; border: 0; }

/* About facts */
.facts { margin: 1.6em 0 0; display: grid; gap: 14px; }
.facts div { display: grid; grid-template-columns: 130px 1fr; gap: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
.facts dt { font-weight: 700; }
.facts dd { margin: 0; color: var(--muted); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq-intro > p:not(.eyebrow) { color: var(--muted); font-size: 1.05rem; }
.faq { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 22px; transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 32px 18px 0; font-weight: 700; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 50%; translate: 0 -50%; font-size: 1.5rem; font-weight: 500; color: var(--red); transition: rotate .3s var(--ease); }
.faq details[open] summary::after { rotate: 45deg; }
.faq details p { color: var(--muted); padding-bottom: 18px; margin: 0; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.2em 0; display: grid; gap: 10px; }
.contact-list li { display: flex; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-list span { color: var(--muted); display: inline-flex; align-items: center; gap: .55em; }
.contact-list .icon { color: var(--navy-600); }
.contact-list a { font-weight: 700; text-decoration: none; color: var(--navy); }
.contact-list li { align-items: flex-start; }
.contact-list .nums { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; color: var(--navy); }
.contact-list .num { display: inline-flex; align-items: center; gap: 8px; }
.contact-list .num a:first-child { white-space: nowrap; }
.contact-list a.viber-mini { display: inline-flex; color: #7360f2; }
.places { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 1.4em 0; }
.place { border-radius: var(--radius-sm); padding: 18px; color: var(--white); background: radial-gradient(260px 140px at 100% 0%, rgba(232,178,26,.2), transparent 70%), linear-gradient(140deg, var(--navy) 0%, var(--navy-600) 100%); box-shadow: var(--shadow); }
.place p { color: rgba(255,255,255,.78); font-size: .92rem; margin-bottom: .6em; }
.place a { color: var(--gold); font-weight: 700; font-size: .92rem; text-decoration: none; display: inline-flex; align-items: center; gap: .45em; }
.hours { color: var(--muted); font-size: .95rem; }
.hours b { color: var(--ink); display: flex; align-items: center; gap: .45em; margin-bottom: .2em; }

.quote { border-radius: var(--radius); padding: clamp(22px, 3vw, 34px); display: grid; gap: 14px; }
.quote h3 { font-size: 1.4rem; margin: 0; }
.form-note { color: var(--muted); font-size: .9rem; margin: 0; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote label { display: grid; gap: 6px; font-weight: 600; font-size: .9rem; }
.quote input, .quote select, .quote textarea {
  font: inherit; font-size: 16px; font-weight: 500; color: var(--ink); width: 100%;
  padding: .75em .9em; border-radius: 12px; border: 1px solid #d9d4c8; background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.quote input:focus, .quote select:focus, .quote textarea:focus { outline: none; border-color: var(--navy-600); box-shadow: 0 0 0 4px rgba(37,64,126,.15); }
.quote .invalid { border-color: var(--red); }
.form-error { color: var(--red); font-weight: 600; margin: 0; }

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h4 { color: var(--white); font-size: .95rem; margin-bottom: 1em; }
.site-footer a { display: flex; align-items: center; gap: .6em; color: rgba(255,255,255,.75); text-decoration: none; padding: .25em 0; }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand-light { color: var(--white); margin-bottom: 1em; }
.footer-base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 22px; font-size: .88rem; }
.footer-base p { margin: 0; }

.chat-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 40; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: var(--white);
  background: linear-gradient(135deg, #0a7cff, #a033ff 60%, #ff5c87);
  box-shadow: 0 14px 30px -10px rgba(10,124,255,.6); transition: transform .25s var(--ease);
}
.chat-fab:hover { transform: scale(1.08); }
.to-top {
  position: fixed; right: 26px; bottom: 158px; z-index: 40; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center; border: 1px solid rgba(18,37,79,.12); cursor: pointer; color: var(--navy);
  background: rgba(255,255,255,.85); -webkit-backdrop-filter: blur(14px) saturate(170%); backdrop-filter: blur(14px) saturate(170%);
  box-shadow: 0 10px 24px -12px rgba(15,31,69,.5);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, transform .3s var(--ease), visibility .3s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { color: var(--red); }
.to-top .icon { width: 20px; height: 20px; }
.chat-fab-viber { bottom: 88px; background: #7360f2; box-shadow: 0 14px 30px -10px rgba(115,96,242,.6); }

/* Logo intro: only shown when motion-gate.js adds .intro-on (first visit per session) */
.intro { display: none; }
.intro-on .intro {
  position: fixed; inset: 0; z-index: 100; display: grid; place-content: center; justify-items: center; gap: 6px;
  background: radial-gradient(700px 400px at 50% 40%, rgba(232,178,26,.16), transparent 70%), var(--navy-950); color: var(--white);
}
.intro-on body { overflow: hidden; }
.intro-mark { position: relative; width: 150px; height: 150px; display: grid; place-items: center; margin-bottom: 14px; }
.intro-mark img { width: 118px; height: auto; opacity: 0; }
.intro-ring { position: absolute; inset: 0; width: 100%; height: 100%; rotate: -90deg; }
.intro-ring circle { fill: none; stroke: var(--gold); stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 352; stroke-dashoffset: 352; }
.intro-name { margin: 0; font-size: clamp(1.5rem, 4vw, 2.1rem); font-weight: 800; letter-spacing: -.02em; opacity: 0; }
.intro-tag { margin: 0; color: var(--gold-soft); font-size: .95rem; opacity: 0; }

/* Animation start states: only when JS + motion are allowed (see <head>) */
.anim .hero-item, .anim .reveal { opacity: 0; }

/* Legal page */
.legal { padding: calc(var(--header-h) + 48px) 0 80px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.legal h2 { font-size: 1.35rem; margin-top: 1.8em; }
.legal p { color: var(--muted); }
.legal .legal-next { margin-top: 1.6em; }
.legal .legal-foot { margin-top: 2.4em; }
.legal .site-header { color: var(--ink); }

@media (min-width: 901px) {
  .split-fb .split-copy, .faq-intro { position: sticky; top: calc(var(--header-h) + 24px); }
}

/* Responsive */
@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .logo-grid { --cols: 4.5; }
}
@media (max-width: 1200px) {
  .nav-toggle {
    display: grid; place-content: center; gap: 6px; width: 44px; height: 44px;
    border: 0; border-radius: 12px; background: rgba(127,127,127,.16); color: inherit; cursor: pointer;
  }
  .nav-toggle span { display: block; width: 20px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s var(--ease); }
  .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: absolute; top: calc(var(--header-h) - 6px); right: 16px; width: min(420px, calc(100% - 32px));
    max-height: calc(100dvh - var(--header-h) - 12px); overflow-y: auto; overscroll-behavior: contain;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 12px;
    border-radius: var(--radius); color: var(--ink);
    background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(20px) saturate(180%); backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 24px 60px -20px rgba(15,31,69,.45);
    visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s var(--ease), visibility .25s;
  }
  .site-nav.open { visibility: visible; opacity: 1; transform: none; }
  .site-nav a:not(.btn) { padding: .8em 1em; }
  .site-nav .btn { margin: 8px 0 0; }
}
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .split-reverse .split-media { order: 0; }
  .band { flex-direction: column; align-items: flex-start; }
  /* Products: one swipeable row instead of a tall grid */
  .products {
    display: flex; gap: 12px; margin-inline: -16px; padding: 4px 16px 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 16px; scrollbar-width: none;
  }
  .products::-webkit-scrollbar { display: none; }
  .products li { flex: 0 0 30%; scroll-snap-align: start; }
}
@media (max-width: 600px) {
  .bento, .steps { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .span-2.card-photo img { aspect-ratio: 16 / 10; }
  .field-row, .places, .highlights { grid-template-columns: 1fr; }
  .logo-grid { --cols: 2.4; }
  .scroller-nav { margin-top: -20px; }
  .products li { flex-basis: 44%; }
  /* Services: swipeable cards on phones */
  .bento {
    display: flex; gap: 12px; margin-inline: -16px; padding: 4px 16px 14px;
    overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: 16px; scrollbar-width: none;
  }
  .bento::-webkit-scrollbar { display: none; }
  .bento > .card { flex: 0 0 82%; scroll-snap-align: start; }
  .contact-list li { flex-direction: column; gap: 6px; }
  .contact-list .nums { align-items: flex-start; padding-left: 1.7em; }
  .footer-grid { grid-template-columns: 1fr; }
  .facts div { grid-template-columns: 1fr; gap: 2px; }
  .brand small { display: none; }
  .stats { gap: 18px; }
  .fb-frame iframe { height: 560px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation: none !important; }
  .marquee { -webkit-mask-image: none; mask-image: none; }
  .marquee-track { flex-wrap: wrap; justify-content: center; width: auto; gap: 28px 40px; padding: 0 16px; }
  .marquee-track li { padding-right: 0; }
}
