:root {
  --ink: #20242c;
  --muted: #626978;
  --line: #e7e8eb;
  --soft: #fff8f3;
  --orange: #f97316;
  --orange-dark: #c2410c;
  --navy: #16202e;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(31, 41, 55, .12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
}
.skip-link:focus { top: 16px; }

.page-shell, .nav-shell { width: var(--shell); margin-inline: auto; }
.section-pad { padding: 105px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(231, 232, 235, .82);
  backdrop-filter: blur(18px);
}
.nav-shell {
  height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 49px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; justify-content: center; gap: 32px; }
.site-nav a {
  text-decoration: none;
  color: #4b5563;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--orange-dark); }
.nav-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, #fb923c, #ea580c);
  box-shadow: 0 12px 30px rgba(234, 88, 12, .22);
  color: #fff;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(234, 88, 12, .28); }
.button-small { min-height: 42px; padding-inline: 20px; }
.button-ghost {
  background: rgba(255,255,255,.72);
  border-color: #e8d9cd;
  box-shadow: none;
  color: #4b5563;
}
.button-ghost:hover { background: #fff; box-shadow: 0 10px 24px rgba(31,41,55,.08); }

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  background: #fffaf6 url("hero-gradient-bg.png") center/cover no-repeat;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 62px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px rgba(249,115,22,.12); }
.hero h1, .section-heading h2, .contact-copy h2, .policy-card h1 {
  margin: 20px 0 0;
  font-family: "Arial Rounded MT Bold", "Trebuchet MS", ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -.045em;
  line-height: 1.06;
}
.hero h1 { font-size: clamp(46px, 5.2vw, 76px); max-width: 720px; }
.hero h1 span { color: var(--orange-dark); }
.hero-copy > p { max-width: 650px; margin: 24px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.trust-row { display: flex; gap: 34px; margin-top: 42px; }
.trust-row div { display: flex; flex-direction: column; }
.trust-row strong { font-size: 15px; }
.trust-row span { color: var(--muted); font-size: 12px; margin-top: 2px; }

.hero-visual { position: relative; min-height: 520px; display: grid; place-items: center; }
.visual-glow { position: absolute; width: 470px; height: 470px; border-radius: 50%; background: radial-gradient(circle, rgba(249,115,22,.22), rgba(249,115,22,0) 68%); filter: blur(8px); }
.visual-card {
  position: relative;
  width: min(100%, 540px);
  min-height: 410px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(255,247,237,.78));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-card::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -170px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 50px solid rgba(249,115,22,.07);
}
.card-topline { display: flex; justify-content: space-between; color: #9a3412; font-size: 11px; font-weight: 850; letter-spacing: .2em; }
.glasses-art { position: relative; z-index: 2; width: 100%; margin-top: 26px; filter: drop-shadow(0 22px 20px rgba(31,41,55,.15)); }
.visual-caption { position: relative; z-index: 2; display: flex; flex-direction: column; margin-top: 7px; }
.visual-caption span { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.visual-caption small { color: var(--muted); margin-top: 5px; }
.floating-note {
  position: absolute;
  z-index: 3;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.94);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 34px rgba(31,41,55,.12);
  backdrop-filter: blur(14px);
  color: #7c2d12;
  font-size: 12px;
  font-weight: 800;
}
.note-one { left: -2px; top: 84px; }
.note-two { right: -6px; bottom: 88px; }

.intro-strip { border-block: 1px solid var(--line); background: #fff; }
.strip-grid { min-height: 82px; display: flex; align-items: center; justify-content: center; gap: 34px; }
.strip-grid p { margin: 0; font-size: 13px; font-weight: 750; color: #4b5563; }
.strip-grid span { width: 5px; height: 5px; border-radius: 50%; background: #fdba74; }

.two-column { display: grid; grid-template-columns: .92fr 1.08fr; gap: 90px; align-items: start; }
.section-heading h2 { font-size: clamp(38px, 4.1vw, 60px); max-width: 650px; }
.section-heading.centered { max-width: 760px; margin: 0 auto 52px; text-align: center; }
.section-heading.centered h2 { margin-inline: auto; }
.section-heading.centered > p { color: var(--muted); max-width: 630px; margin: 20px auto 0; font-size: 17px; }
.body-copy { padding-top: 38px; }
.body-copy > p { margin: 0 0 20px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.info-badge { margin-top: 34px; display: flex; align-items: flex-start; gap: 14px; padding: 20px; border: 1px solid #fed7aa; border-radius: 18px; background: #fffaf6; }
.icon-check { display: grid; place-items: center; flex: 0 0 30px; height: 30px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 900; }
.info-badge div { display: flex; flex-direction: column; }
.info-badge small { color: var(--muted); margin-top: 4px; }

.soft-section { background: #fafafa; border-block: 1px solid #f0f0f1; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: #fdba74; box-shadow: 0 20px 46px rgba(31,41,55,.08); }
.card-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, #fb923c, #ea580c); color: #fff; }
.card-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 26px 0 10px; font-size: 20px; letter-spacing: -.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: 26px; overflow: hidden; }
.experience-panel { min-height: 290px; padding: 40px; background: #fff; }
.experience-panel + .experience-panel { border-left: 1px solid var(--line); }
.panel-number { color: var(--orange); font-size: 13px; font-weight: 850; letter-spacing: .15em; }
.experience-panel h3 { margin: 50px 0 13px; font-size: 24px; letter-spacing: -.03em; }
.experience-panel p { margin: 0; color: var(--muted); font-size: 15px; }

.contact-section { padding-top: 35px; }
.contact-card {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 55px;
  padding: 64px;
  border-radius: 32px;
  background: radial-gradient(circle at 10% 10%, #374151 0, #172033 48%, #111827 100%);
  color: #fff;
  box-shadow: 0 30px 80px rgba(17,24,39,.22);
}
.eyebrow.light { color: #fdba74; }
.contact-copy h2 { font-size: clamp(38px, 4.2vw, 60px); max-width: 720px; }
.contact-copy > p { color: #cbd5e1; max-width: 630px; font-size: 17px; margin: 22px 0 0; }
.contact-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 25px; margin-top: 34px; }
.button-light { background: #fff; color: #111827; box-shadow: none; }
.text-link { color: #fff; text-decoration: none; font-weight: 750; }
.text-link span { color: #fdba74; margin-left: 5px; }
.address-box { margin: 0; padding: 30px; border: 1px solid rgba(255,255,255,.16); border-radius: 22px; background: rgba(255,255,255,.07); font-style: normal; }
.address-label { color: #fdba74; text-transform: uppercase; letter-spacing: .15em; font-size: 11px; font-weight: 850; margin-bottom: 20px; }
.address-box strong { font-size: 20px; }
.address-box p { color: #d8dee9; line-height: 1.75; }
.address-box a { display: block; color: #fff; text-decoration: none; font-weight: 750; margin-top: 10px; }

.site-footer { margin-top: 110px; padding: 70px 0 26px; background: #fff7ed; border-top: 1px solid #fed7aa; }
.footer-grid { display: grid; grid-template-columns: .9fr .7fr 1.2fr; gap: 60px; align-items: start; }
.footer-brand img { width: auto; height: 54px; object-fit: contain; object-position: left center; }
.footer-brand p, .footer-nap span { color: var(--muted); font-size: 14px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a, .footer-nap a { text-decoration: none; color: #4b5563; font-weight: 650; font-size: 14px; }
.footer-links a:hover, .footer-nap a:hover { color: var(--orange-dark); }
.footer-nap { display: flex; flex-direction: column; gap: 8px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 52px; padding-top: 22px; border-top: 1px solid #fed7aa; color: #777f8d; font-size: 12px; }

.reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

.policy-page { background: #fafafa; }
.policy-header { position: relative; }
.policy-main { width: min(900px, calc(100% - 32px)); margin: 70px auto; }
.policy-card { padding: clamp(28px, 6vw, 70px); background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 24px 70px rgba(31,41,55,.07); }
.policy-card h1 { font-size: clamp(42px, 6vw, 64px); }
.policy-date { color: var(--muted); margin-top: 12px; }
.policy-card > p { color: #505765; font-size: 16px; line-height: 1.8; }
.policy-card h2 { margin: 38px 0 10px; font-size: 22px; letter-spacing: -.02em; }
.policy-card address { margin-top: 14px; padding: 22px; border-radius: 16px; background: var(--soft); border: 1px solid #fed7aa; font-style: normal; color: #505765; }
.policy-card address a { color: var(--orange-dark); font-weight: 750; text-decoration: none; }
.policy-actions { margin-top: 45px; }
.policy-footer { padding: 28px; text-align: center; color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 30px, 760px); }
  .section-pad { padding: 82px 0; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .site-nav {
    position: fixed;
    inset: 78px 15px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 20px 60px rgba(31,41,55,.16);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 12px; border-radius: 10px; }
  .site-nav a:hover { background: #fff7ed; }
  .nav-toggle { display: grid; width: 42px; height: 42px; place-content: center; gap: 4px; border: 1px solid var(--line); border-radius: 50%; background: #fff; }
  .nav-toggle span { width: 18px; height: 2px; background: #374151; border-radius: 3px; }
  .nav-call { display: none; }
  .hero-grid, .two-column, .contact-card { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-grid { gap: 48px; }
  .hero-visual { min-height: 470px; }
  .two-column { gap: 25px; }
  .body-copy { padding-top: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { padding: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-nap { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .section-pad { padding: 66px 0; }
  .nav-shell { height: 70px; }
  .brand img { height: 42px; max-width: 210px; }
  .site-nav { top: 70px; }
  .hero { min-height: calc(100vh - 70px); padding-top: 58px; }
  .hero h1 { font-size: 43px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { gap: 15px; justify-content: space-between; }
  .trust-row strong { font-size: 13px; }
  .trust-row span { font-size: 10px; }
  .hero-visual { min-height: 390px; }
  .visual-card { min-height: 330px; padding: 22px; }
  .glasses-art { margin-top: 18px; }
  .visual-caption span { font-size: 18px; }
  .floating-note { font-size: 10px; padding: 9px 12px; }
  .note-one { left: -3px; top: 38px; }
  .note-two { right: -3px; bottom: 45px; }
  .strip-grid { min-height: 104px; flex-wrap: wrap; gap: 10px 18px; padding-block: 18px; }
  .strip-grid p { font-size: 11px; }
  .section-heading h2 { font-size: 40px; }
  .cards-grid, .experience-grid, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .experience-grid { border: 0; gap: 14px; overflow: visible; }
  .experience-panel { min-height: auto; border: 1px solid var(--line); border-radius: 20px; padding: 30px; }
  .experience-panel + .experience-panel { border-left: 1px solid var(--line); }
  .experience-panel h3 { margin-top: 32px; }
  .contact-card { padding: 34px 25px; gap: 34px; border-radius: 24px; }
  .contact-copy h2 { font-size: 39px; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .site-footer { margin-top: 70px; }
  .footer-grid { gap: 35px; }
  .footer-nap { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .policy-main { margin: 35px auto; }
  .policy-card { border-radius: 20px; }
  .policy-card h1 { font-size: 42px; }
}

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