:root {
  --ink: #151936;
  --muted: #62687d;
  --paper: #fbfbff;
  --cream: #eef2ff;
  --linen: #f5f6fc;
  --walnut: #404090;
  --walnut-dark: #171944;
  --moss: #404090;
  --sage: #e6ecfb;
  --clay: #d3483e;
  --blue: #404090;
  --blue-soft: #e4e9fb;
  --red: #d3483e;
  --red-soft: #fde9e6;
  --white: #ffffff;
  --line: rgba(21, 25, 54, 0.13);
  --shadow: 0 24px 60px rgba(21, 25, 54, 0.13);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--paper) 0%, #f1f4ff 42%, var(--white) 100%);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  min-width: max-content;
}

.brand-logo {
  display: block;
  width: auto;
  height: 58px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  transition: height 180ms ease, filter 180ms ease;
}

.brand-logo--dark {
  position: absolute;
  inset: 0 auto auto 0;
  opacity: 1;
}

.brand-logo--light {
  opacity: 0;
}

.site-header.is-scrolled .brand-logo,
.site-header.menu-visible .brand-logo {
  height: 52px;
  filter: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.1vw, 30px);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

@media (min-width: 981px) {
  .main-nav {
    position: absolute;
    right: clamp(170px, 16vw, 240px);
    left: clamp(150px, 14vw, 220px);
    justify-content: space-between;
    gap: clamp(18px, 2.4vw, 42px);
    text-align: center;
  }

  .main-nav a {
    justify-content: center;
    min-height: 58px;
    max-width: 118px;
    padding: 10px 0;
    line-height: 1.12;
    text-align: center;
  }

  .main-nav a::after {
    bottom: 5px;
  }
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: 2px;
  text-decoration: none;
  opacity: 0.88;
  transition: color 180ms ease, opacity 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

@media (min-width: 981px) {
  .main-nav a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .main-nav a::after {
    bottom: 5px;
  }
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--blue);
  opacity: 1;
  outline: 0;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.language-switch {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 96px;
  height: 38px;
  padding: 3px;
  border: 1px solid rgba(64, 64, 144, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 242, 255, 0.86));
  box-shadow: 0 12px 30px rgba(21, 25, 54, 0.11);
}

.language-switch__option {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-width: 0;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-switch__option.is-active {
  color: var(--white);
}

.language-switch__option:focus-visible {
  outline: 2px solid rgba(211, 72, 62, 0.48);
  outline-offset: 2px;
}

.language-switch__thumb {
  position: absolute;
  z-index: 1;
  top: 3px;
  left: 3px;
  width: calc(50% - 3px);
  height: 32px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--red), #b8322f 48%, var(--blue));
  box-shadow: 0 8px 18px rgba(211, 72, 62, 0.25);
  transition: transform 220ms ease;
}

.language-switch[data-active-lang="en"] .language-switch__thumb {
  transform: translateX(100%);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle {
  place-content: center;
  gap: 5px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(42px, 5vw, 64px)) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 84px);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 26%, rgba(211, 72, 62, 0.16), transparent 28%),
    radial-gradient(circle at 13% 75%, rgba(64, 64, 144, 0.18), transparent 31%),
    linear-gradient(135deg, #ffffff 0%, #f5f7ff 52%, #eef2ff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 0;
  left: clamp(18px, 5vw, 72px);
  height: 3px;
  background: linear-gradient(90deg, var(--red), rgba(64, 64, 144, 0.2), transparent);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(300px, 0.82fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: left;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(3.3rem, 6.6vw, 6.45rem);
  line-height: 0.9;
}

h2 {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
}

h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-content > p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(34px, 5vw, 54px) 0 0;
  padding: 0;
  border-top: 1px solid rgba(64, 64, 144, 0.2);
  border-bottom: 1px solid rgba(64, 64, 144, 0.2);
}

.hero-proof div {
  min-width: 0;
  padding: 18px 18px 20px;
  border-right: 1px solid rgba(64, 64, 144, 0.16);
}

.hero-proof div:first-child {
  padding-left: 0;
}

.hero-proof div:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof dt {
  margin: 0 0 5px;
  color: var(--blue);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1;
}

.hero-proof dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(390px, 44vw, 560px);
  margin: 0;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 470px);
  aspect-ratio: 910 / 942;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(64, 64, 144, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(64, 64, 144, 0.18);
}

.hero-visual figcaption {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--white);
  color: var(--blue);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(64, 64, 144, 0.22);
  backdrop-filter: blur(10px);
}

[id] {
  scroll-margin-top: var(--header-height);
}

.intro-band,
.services-band,
.frames-section,
.lens-section,
.installation-section,
.contact-lenses-section,
.vision-section,
.contact-section {
  padding: clamp(70px, 9vw, 132px) clamp(18px, 5vw, 72px);
}

.intro-band {
  background:
    radial-gradient(circle at 16% 18%, rgba(211, 72, 62, 0.16), transparent 30%),
    radial-gradient(circle at 82% 70%, rgba(64, 64, 144, 0.16), transparent 34%),
    linear-gradient(180deg, #f4f6ff 0%, var(--blue-soft) 48%, var(--white) 100%);
}

.intro-grid,
.feature-service,
.frames-section,
.lens-section,
.installation-section,
.contact-lenses-section,
.vision-section,
.contact-section {
  max-width: 1180px;
  margin: 0 auto;
}

.intro-grid {
  max-width: 900px;
  text-align: center;
}

.intro-copy {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  justify-content: space-between;
  column-gap: clamp(24px, 4vw, 58px);
  row-gap: 28px;
  max-width: 1120px;
  margin: 52px auto 0;
}

.intro-icons a {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-height: 116px;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.intro-icons a:hover,
.intro-icons a:focus-visible {
  color: var(--blue);
  transform: translateY(-2px);
}

.intro-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.intro-icon i {
  display: block;
  font-size: 3.1rem;
  line-height: 1;
}

.intro-icons strong {
  max-width: 142px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.services-band {
  padding-top: 0;
  border-bottom: 1px solid rgba(64, 64, 144, 0.22);
  background:
    radial-gradient(circle at 10% 14%, rgba(211, 72, 62, 0.1), transparent 26%),
    linear-gradient(180deg, var(--white), #edf1ff 52%, var(--white));
}

.feature-service {
  max-width: 1080px;
  text-align: center;
}

.repair-tabs-section {
  margin-top: 0;
  padding-top: clamp(70px, 9vw, 132px);
  border-top: 3px solid rgba(211, 72, 62, 0.42);
}

.repair-tabs-heading {
  max-width: 900px;
  margin: 0 auto 44px;
  text-align: center;
}

.repair-tabs-heading h3 {
  max-width: 860px;
  margin-right: auto;
  margin-bottom: 24px;
  margin-left: auto;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  line-height: 0.96;
}

.repair-tabs-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.repair-tabs {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.repair-tab-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
  border-top: 1px solid rgba(21, 25, 54, 0.15);
  border-bottom: 1px solid rgba(21, 25, 54, 0.15);
}

.repair-tab {
  flex: 1 1 0;
  min-height: 58px;
  padding: 17px 12px 16px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
  transition: color 180ms ease, box-shadow 180ms ease;
}

.repair-tab:hover,
.repair-tab:focus-visible {
  color: var(--blue);
  outline: 0;
  box-shadow: inset 0 -2px 0 rgba(64, 64, 144, 0.34);
}

.repair-tab.is-active {
  color: var(--blue);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--blue);
}

.repair-tab-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  min-height: 500px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 15%, rgba(211, 72, 62, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(228, 233, 251, 0.96), rgba(255, 255, 255, 0.78)),
    var(--white);
}

.repair-tab-panel[hidden] {
  display: none;
}

.repair-tab-panel img {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(64, 64, 144, 0.18);
}

.repair-tab-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.repair-tab-panel h3 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 4.1rem);
}

.repair-tab-panel p {
  color: var(--muted);
  font-size: 1.03rem;
}

.repair-tab-panel ul {
  display: grid;
  justify-content: start;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.repair-tab-panel li {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.94rem;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.repair-tab-panel li::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 14px;
  margin-top: 0.25em;
  background: url("assets/logo/express-opticar-frame-mark.png") center / contain no-repeat;
}

.frames-section {
  display: block;
  background:
    linear-gradient(180deg, var(--white), #f2f5ff 45%, var(--white));
}

.frames-copy {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.frames-copy h2 {
  margin-bottom: 24px;
}

.frames-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.frames-copy p:last-child {
  margin-bottom: 0;
}

.frame-catalog {
  display: grid;
  gap: clamp(42px, 6vw, 76px);
  margin-top: clamp(48px, 7vw, 88px);
  text-align: left;
}

.frame-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.frame-showcase--optical {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.frame-showcase--optical .frame-products {
  grid-column: 2;
  grid-row: 1;
}

.frame-showcase--optical .frame-story {
  grid-column: 1;
  grid-row: 1;
}

.frame-products {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.frame-products--sun,
.frame-products--optical {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  padding-bottom: 8px;
}

.frame-product {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(360px, 42vw, 520px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 25, 54, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(64, 64, 144, 0.095) 1px, transparent 1px),
    linear-gradient(0deg, rgba(64, 64, 144, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(211, 72, 62, 0.12), transparent 32%),
    var(--white);
  background-size: 46px 46px;
  box-shadow: 0 30px 80px rgba(64, 64, 144, 0.14);
}

.frame-showcase--sun .frame-product {
  min-height: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.frame-products--optical .frame-product,
.frame-showcase--optical .frame-product {
  min-height: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.frame-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: clamp(22px, 4vw, 44px) clamp(22px, 4vw, 44px) clamp(48px, 6vw, 74px);
}

.frame-showcase--sun .frame-product img {
  padding-inline: 12px;
  max-height: 238px;
  padding-bottom: 46px;
  transform: none;
}

.frame-products--optical .frame-product img {
  padding-inline: 12px;
  max-height: 238px;
  padding-bottom: 46px;
  transform: none;
}

.frame-product figcaption {
  position: absolute;
  right: clamp(22px, 4vw, 44px);
  bottom: clamp(18px, 3vw, 30px);
  left: clamp(22px, 4vw, 44px);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.frame-products--sun .frame-product figcaption,
.frame-products--optical .frame-product figcaption {
  right: 0;
  bottom: 0;
  left: 0;
  gap: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
}

.frame-product figcaption::before {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: rgba(211, 72, 62, 0.42);
}

.frame-story span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.frame-story h3 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.2vw, 4.3rem);
  line-height: 0.96;
}

.frame-story p {
  max-width: 560px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.frame-story p:last-child {
  margin-bottom: 0;
}

.frame-brands {
  min-width: 0;
  padding: clamp(30px, 4vw, 44px) 0;
  border-top: 1px solid rgba(64, 64, 144, 0.2);
  border-bottom: 1px solid rgba(64, 64, 144, 0.2);
  text-align: center;
}

.frame-catalog .frame-brands:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.frame-brands h3 {
  margin-bottom: clamp(22px, 3vw, 30px);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  font-weight: 600;
  line-height: 1;
}

.frame-brand-logos {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.frame-brand-logos img {
  flex: 0 1 148px;
  width: min(148px, 100%);
  min-height: 86px;
  max-height: 92px;
  padding: 18px;
  border: 1px solid rgba(64, 64, 144, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  object-fit: contain;
}

.frame-brand-carousel {
  overflow: hidden;
  min-width: 0;
  margin-inline: auto;
  width: 100%;
  max-width: 980px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.frame-brand-track {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.6vw, 26px);
  width: max-content;
  animation: frame-brand-scroll 36s linear infinite;
  will-change: transform;
}

.frame-brand-track img {
  flex: 0 0 clamp(154px, 18vw, 190px);
  width: clamp(154px, 18vw, 190px);
  height: clamp(76px, 8vw, 92px);
  padding: clamp(14px, 2vw, 18px);
  border: 1px solid rgba(64, 64, 144, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  object-fit: contain;
}

.frame-brand-track img[src$="rayban.svg"] {
  padding: 12px;
}

@keyframes frame-brand-scroll {
  to {
    transform: translateX(calc(-50% - clamp(7px, 1.3vw, 13px)));
  }
}

.lens-section {
  display: block;
  padding-bottom: 0;
  text-align: center;
  border-top: 1px solid rgba(64, 64, 144, 0.22);
  background:
    radial-gradient(circle at 86% 18%, rgba(211, 72, 62, 0.12), transparent 30%),
    linear-gradient(180deg, #f3f6ff, var(--white) 62%);
}

.lens-content p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.06rem;
}

.lens-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  margin-top: 52px;
  text-align: left;
}

.lens-lead {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  align-self: start;
  margin: 0;
}

.lens-lead img,
.lens-list img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.lens-lead img {
  aspect-ratio: 4 / 4.85;
  box-shadow: 0 30px 80px rgba(64, 64, 144, 0.18);
}

.lens-lead figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 380px;
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(23, 25, 68, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
}

.lens-list {
  display: grid;
}

.lens-list article {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid rgba(64, 64, 144, 0.18);
}

.lens-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.lens-list img {
  aspect-ratio: 5 / 4;
  min-height: 134px;
}

.lens-list span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.lens-list article:nth-child(even) span {
  color: var(--red);
}

.lens-list h3 {
  margin-bottom: 10px;
}

.lens-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.lens-brands {
  margin-top: clamp(54px, 7vw, 84px);
  margin-bottom: 0;
  padding: clamp(34px, 5vw, 48px) 0;
  border-top: 1px solid rgba(64, 64, 144, 0.2);
  border-bottom: 1px solid rgba(64, 64, 144, 0.2);
  text-align: center;
}

.lens-brands h3 {
  margin: 0 0 clamp(26px, 4vw, 36px);
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 600;
  line-height: 1;
}

.lens-brand-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: clamp(22px, 4vw, 56px);
}

.lens-brand-logos img {
  justify-self: center;
  width: auto;
  max-width: min(168px, 100%);
  max-height: 54px;
  object-fit: contain;
}

.lens-brand-logos img[alt="ZEISS"] {
  max-height: 62px;
}

.installation-section {
  display: block;
  padding-top: clamp(70px, 9vw, 132px);
  background: var(--white);
}

.installation-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.installation-visual {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(18px, 3vw, 28px);
  background: transparent;
}

.installation-figure {
  display: grid;
  justify-items: center;
  width: min(100%, 560px);
  margin: 0;
  background: transparent;
}

.installation-figure--machine {
  transform: translateY(-18px);
}

.installation-figure img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}

.installation-figure figcaption {
  margin-top: 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.installation-mobile-figure {
  display: none;
}

.installation-copy {
  text-align: left;
}

.installation-copy > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.installation-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.4vw, 4.45rem);
  line-height: 0.98;
}

.installation-copy p {
  color: var(--muted);
  font-size: 1.04rem;
}

.installation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.installation-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.45;
}

.installation-list li::before {
  content: "";
  flex: 0 0 24px;
  width: 24px;
  height: 14px;
  margin-top: 0.25em;
  background: url("assets/logo/express-opticar-frame-mark.png") center / contain no-repeat;
}

.installation-block {
  padding-top: 26px;
  border-top: 1px solid rgba(64, 64, 144, 0.18);
}

.installation-block + .installation-block {
  margin-top: 26px;
}

.installation-block h3 {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.installation-block p {
  max-width: 680px;
  margin-bottom: 12px;
}

.installation-block p:last-child {
  margin-bottom: 0;
}

.installation-block strong {
  color: var(--ink);
  font-weight: 900;
}

.contact-lenses-section {
  display: block;
  border-top: 1px solid rgba(64, 64, 144, 0.22);
  background:
    linear-gradient(180deg, var(--white), #f7f9ff 52%, var(--white));
}

.contact-lenses-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.contact-lenses-copy {
  text-align: left;
}

.contact-lenses-copy > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-lenses-copy h2 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 4.3vw, 4.25rem);
  line-height: 0.98;
}

.contact-lenses-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-lenses-block {
  padding-top: 26px;
  border-top: 1px solid rgba(64, 64, 144, 0.18);
}

.contact-lenses-block + .contact-lenses-block {
  margin-top: 26px;
}

.contact-lenses-block h3 {
  max-width: 640px;
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.05;
}

.contact-lenses-block p {
  margin-bottom: 0;
}

.contact-lenses-products {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3vw, 38px);
  padding-block: clamp(14px, 2vw, 24px);
  background: transparent;
}

.contact-lenses-products img {
  width: min(100%, 560px);
  height: auto;
  object-fit: contain;
  background: transparent;
}

.vision-section {
  display: block;
  border-top: 1px solid rgba(64, 64, 144, 0.22);
  background:
    linear-gradient(180deg, var(--white), var(--blue-soft));
  text-align: center;
}

.vision-heading {
  max-width: 900px;
  margin: 0 auto;
}

.vision-heading h2 {
  margin-bottom: 24px;
}

.vision-heading p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.65;
}

.vision-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  margin-top: clamp(46px, 7vw, 76px);
  text-align: left;
}

.vision-visual {
  margin: 0;
}

.vision-visual img {
  width: 100%;
  aspect-ratio: 4 / 3.15;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(64, 64, 144, 0.17);
}

.vision-copy span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vision-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.2vw, 4.3rem);
  line-height: 0.96;
}

.vision-copy p {
  max-width: 580px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.04rem;
}

.vision-copy p:last-child {
  margin-bottom: 0;
}

.contact-section {
  display: block;
  width: 100vw;
  max-width: none;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  background:
    radial-gradient(circle at 14% 18%, rgba(211, 72, 62, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(96, 136, 208, 0.22), transparent 48%),
    var(--walnut-dark);
  color: var(--white);
}

.contact-copy {
  max-width: 1080px;
  margin: 0 auto;
}

.contact-copy h2 {
  margin-bottom: 10px;
  color: var(--white);
  text-align: center;
}

.contact-copy > p {
  max-width: 650px;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.74);
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.contact-cards article {
  min-height: 226px;
  padding: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.contact-card--address {
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.contact-card--wide {
  grid-column: 1 / -1;
  min-height: 132px;
  text-align: center;
}

.contact-card--wide .contact-phone-list,
.contact-card--wide .contact-email,
.contact-card--wide .contact-instagram {
  justify-items: center;
}

.contact-phone-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.contact-email {
  margin-top: 22px;
}

.contact-instagram {
  margin-top: 22px;
}

.contact-hours {
  margin-top: auto;
  padding-top: 22px;
}

.contact-cards span {
  display: block;
  margin-bottom: 12px;
  color: #ffb5ae;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-cards strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  font-weight: 700;
  line-height: 1.06;
}

.contact-cards a,
.contact-cards p {
  display: inline-block;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  text-decoration: none;
}

.contact-cards a:hover,
.contact-cards a:focus-visible {
  color: #ffb5ae;
}

.contact-phone-list a {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
  white-space: nowrap;
}

.contact-email span {
  margin-bottom: 2px;
}

.contact-email a {
  margin-top: 0;
}

.contact-instagram span {
  margin-bottom: 8px;
}

.contact-instagram a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.contact-instagram i {
  font-size: 1.7rem;
  line-height: 1;
}

.contact-instagram strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.contact-hours span {
  margin-bottom: 8px;
}

.contact-hours p {
  display: block;
  margin-top: 0;
  margin-bottom: 4px;
}

.contact-map {
  min-height: 250px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  border: 0;
  filter: grayscale(0.25) contrast(1.03) sepia(0.06);
}

.contact-visual {
  position: relative;
  min-height: 620px;
}

.map-card {
  position: absolute;
  inset: 64px 0 0 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.35) contrast(1.04) sepia(0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--paper);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p span {
  display: inline;
}

.site-footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.back-to-top {
  align-self: center;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(64, 64, 144, 0.28);
  border-radius: 50%;
  color: var(--ink);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.back-to-top span {
  position: relative;
  display: block;
  width: 1px;
  height: 18px;
  background: currentColor;
}

.back-to-top span::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  content: "";
  transform: translate(-50%, 1px) rotate(45deg);
  transform-origin: center;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--red);
  border-color: rgba(211, 72, 62, 0.55);
  background: rgba(211, 72, 62, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .header-actions {
    margin-left: auto;
  }

  .language-switch {
    width: 88px;
    height: 36px;
  }

  .language-switch__option {
    height: 30px;
    font-size: 0.72rem;
  }

  .language-switch__thumb {
    height: 30px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: calc(100svh - var(--header-height));
    padding: 12px 18px max(24px, env(safe-area-inset-bottom));
    overflow-y: auto;
    border-top: 1px solid rgba(64, 64, 144, 0.12);
    background: rgba(255, 255, 255, 0.995);
    color: var(--ink);
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a {
    min-height: 0;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    line-height: 1.22;
  }

  .main-nav a::after {
    display: none;
  }

  .intro-grid,
  .feature-service,
  .frames-section,
  .lens-section,
  .installation-section,
  .contact-lenses-section,
  .vision-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 48px);
  }

  .hero-content {
    max-width: 820px;
    text-align: center;
  }

  .hero-kicker {
    justify-content: center;
  }

  .hero-content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-proof div:first-child {
    padding-left: 18px;
  }

  .hero-proof div:last-child {
    padding-right: 18px;
  }

  .hero-visual {
    min-height: clamp(260px, 48vw, 360px);
  }

  .hero-visual img {
    width: min(82%, 390px);
  }

  .hero-visual figcaption {
    display: block;
    position: relative;
    z-index: 2;
    margin-top: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(64, 64, 144, 0.12);
    border-radius: 999px;
    color: var(--blue);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
  }

  .intro-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .frame-showcase,
  .frame-showcase--optical {
    grid-template-columns: 1fr;
  }

  .frame-showcase--optical .frame-products,
  .frame-showcase--optical .frame-story {
    grid-column: auto;
    grid-row: auto;
  }

  .frame-showcase--optical .frame-products {
    order: -1;
  }

  .frame-product {
    min-height: 420px;
  }

  .frame-products--sun .frame-product,
  .frame-products--optical .frame-product {
    min-height: 0;
  }

  .frame-story {
    text-align: center;
  }

  .frame-story p {
    margin-right: auto;
    margin-left: auto;
  }

  .frame-brand-logos {
    gap: clamp(16px, 2vw, 24px);
  }

  .lens-editorial {
    grid-template-columns: 1fr;
  }

  .vision-editorial {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .installation-editorial {
    grid-template-columns: 1fr;
  }

  .installation-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

  .installation-mobile-figure {
    display: none;
  }

  .contact-lenses-editorial {
    grid-template-columns: 1fr;
  }

  .installation-copy {
    text-align: center;
  }

  .contact-lenses-copy {
    text-align: center;
  }

  .installation-copy p,
  .installation-block h3,
  .installation-block p {
    margin-right: auto;
    margin-left: auto;
  }

  .contact-lenses-copy p,
  .contact-lenses-block h3,
  .contact-lenses-block p {
    margin-right: auto;
    margin-left: auto;
  }

  .vision-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .lens-lead {
    display: none;
  }

  .lens-lead img {
    aspect-ratio: 16 / 10;
  }

  .repair-tabs {
    grid-template-columns: 1fr;
  }

  .repair-tab-list {
    justify-content: flex-start;
  }

  .repair-tab-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .repair-tab-panel img {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: none;
  }

  .contact-visual {
    min-height: 520px;
  }

  .map-card {
    inset: 54px 0 0 54px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .frame-products--sun,
  .frame-products--optical {
    gap: 24px 28px;
  }

  .frame-showcase--sun .frame-product img,
  .frame-products--optical .frame-product img {
    width: 82%;
    max-height: 190px;
    margin-inline: auto;
    padding-inline: 0;
    padding-bottom: 40px;
  }

  .installation-visual {
    display: none;
  }

  .installation-mobile-figure {
    display: grid;
    justify-items: center;
    width: min(100%, 540px);
    margin: 32px auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .installation-mobile-figure img {
    width: min(100%, 430px);
    max-height: 220px;
    object-fit: contain;
  }

  .installation-mobile-figure:not(.installation-mobile-figure--machine) img {
    width: 100%;
    max-height: 250px;
    object-fit: cover;
  }

  .installation-mobile-figure figcaption {
    margin-top: 14px;
    color: var(--blue);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
  }

  .installation-mobile-figure + .installation-block {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 14px;
  }

  .brand-logo {
    height: 50px;
  }

  .language-switch {
    width: 78px;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 24px) 18px 48px;
  }

  .hero-content {
    padding-bottom: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 3.7rem);
    line-height: 0.94;
  }

  .hero-kicker {
    display: grid;
    justify-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.72rem;
  }

  .hero-kicker::before {
    width: 42px;
  }

  .hero-content > p {
    font-size: 1rem;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .hero-proof div,
  .hero-proof div:first-child,
  .hero-proof div:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(64, 64, 144, 0.16);
  }

  .hero-proof div:last-child {
    border-bottom: 0;
  }

  .hero-proof dt {
    font-size: 1.75rem;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    width: min(100%, 330px);
    box-shadow: 0 22px 58px rgba(64, 64, 144, 0.14);
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .repair-tabs-heading h3 {
    font-size: clamp(2.15rem, 12vw, 3.2rem);
  }

  .lens-list,
  .contact-cards,
  .intro-icons {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .intro-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
    margin-top: 30px;
  }

  .intro-icons a {
    align-content: center;
    gap: 8px;
    min-height: 92px;
    justify-items: center;
    justify-content: center;
    padding: 10px 6px;
    text-align: center;
  }

  .intro-icon {
    width: 46px;
    height: 46px;
  }

  .intro-icon i {
    font-size: 2rem;
  }

  .intro-icons strong {
    max-width: 120px;
    font-size: 0.8rem;
    line-height: 1.2;
    text-align: center;
  }

  .vision-editorial {
    margin-top: 42px;
  }

  .installation-editorial {
    gap: 28px;
  }

  .installation-visual {
    display: none;
  }

  .installation-mobile-figure {
    display: grid;
    justify-items: center;
    margin: 28px 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .installation-mobile-figure img {
    width: min(100%, 310px);
    max-height: 220px;
    object-fit: contain;
  }

  .installation-mobile-figure:not(.installation-mobile-figure--machine) img {
    width: calc(100% + 24px);
    max-width: none;
    max-height: 260px;
    margin-inline: -12px;
    object-fit: cover;
  }

  .installation-mobile-figure figcaption {
    margin-top: 12px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
    text-transform: uppercase;
  }

  .installation-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .contact-lenses-copy h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .installation-figure--machine {
    transform: none;
  }

  .installation-figure img {
    max-height: 188px;
  }

  .installation-figure:not(.installation-figure--machine) img {
    max-height: 164px;
  }

  .installation-figure figcaption {
    min-height: 3.4em;
    margin-top: 8px;
    font-size: 0.64rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .installation-list {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 24px 0 30px;
    text-align: left;
  }

  .installation-block {
    padding-top: 22px;
  }

  .installation-mobile-figure + .installation-block {
    padding-top: 0;
    border-top: 0;
  }

  .contact-lenses-block {
    padding-top: 22px;
  }

  .installation-block h3 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
  }

  .contact-lenses-block h3 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
  }

  .contact-lenses-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    justify-items: center;
    gap: 34px 18px;
    min-height: 0;
    padding-block: 28px 28px;
    overflow: visible;
  }

  .contact-lenses-products img {
    width: min(100%, 170px);
    max-height: 190px;
    transform: scale(1.08);
    transform-origin: center;
  }

  .contact-lenses-products img:nth-child(3) {
    grid-column: 1 / -1;
  }

  .vision-visual img {
    aspect-ratio: 16 / 11;
  }

  .vision-copy h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .frame-catalog {
    gap: 38px;
    margin-top: 42px;
  }

  .frame-product {
    min-height: 300px;
  }

  .frame-products--sun,
  .frame-products--optical {
    gap: 14px;
  }

  .frame-products--sun .frame-product,
  .frame-products--optical .frame-product {
    align-content: stretch;
    min-height: 132px;
    padding: 12px 8px 10px;
    overflow: hidden;
    border: 1px solid rgba(64, 64, 144, 0.12);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(238, 242, 255, 0.5)),
      var(--white);
  }

  .frame-product img {
    max-height: 260px;
    padding: 18px 18px 54px;
  }

  .frame-showcase--sun .frame-product img {
    align-self: center;
    width: 100%;
    height: 72px;
    max-height: none;
    padding: 0;
    object-fit: contain;
    transform: none;
  }

  .frame-products--optical .frame-product img {
    align-self: center;
    width: 100%;
    height: 72px;
    max-height: none;
    padding: 0;
    object-fit: contain;
    transform: none;
  }

  .frame-product figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    font-size: 0.82rem;
  }

  .frame-products--sun .frame-product figcaption,
  .frame-products--optical .frame-product figcaption {
    position: static;
    display: block;
    align-self: end;
    margin-top: 9px;
    color: var(--ink);
    font-size: 0.62rem;
    letter-spacing: 0.05em;
    line-height: 1.22;
    text-align: center;
  }

  .frame-products--sun .frame-product figcaption::before,
  .frame-products--optical .frame-product figcaption::before {
    display: none;
  }

  .frame-story h3 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .frame-brands {
    padding: 28px 0;
  }

  .frame-brand-logos {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .frame-brand-logos img {
    width: 100%;
    min-height: 76px;
    max-height: 80px;
    padding: 14px;
  }

  .frame-brand-carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  }

  .frame-brand-track {
    gap: 12px;
    animation-duration: 34s;
  }

  .frame-brand-track img {
    flex-basis: 148px;
    width: 148px;
    height: 78px;
    padding: 12px;
  }

  .repair-tabs {
    gap: 28px;
  }

  .repair-tab-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .repair-tab {
    flex: 1 1 auto;
    min-height: 54px;
    padding: 13px 10px 12px;
    font-size: 0.82rem;
  }

  .intro-icons a {
    min-height: 92px;
  }

  .lens-editorial {
    margin-top: 42px;
  }

  .lens-lead {
    display: none;
  }

  .lens-list article {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 20px 0;
  }

  .lens-list h3 {
    margin-bottom: 8px;
    font-size: clamp(1.28rem, 6vw, 1.72rem);
  }

  .lens-list p {
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .lens-brands {
    margin-top: 46px;
    margin-bottom: 0;
    padding: 32px 0;
  }

  .lens-brands h3 {
    margin-bottom: 26px;
    font-size: clamp(1.65rem, 9vw, 2.2rem);
  }

  .lens-brand-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 34px;
  }

  .lens-brand-logos img {
    max-width: min(150px, 100%);
    max-height: 48px;
  }

  .lens-list img {
    aspect-ratio: 1 / 1;
    min-height: 0;
    height: 108px;
    max-height: none;
  }

  .contact-cards article {
    min-height: 210px;
  }

  .contact-card--wide {
    min-height: 118px;
  }

  .contact-phone-list {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    min-height: 470px;
  }

  .map-card {
    inset: 46px 0 0 32px;
  }

  .site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    gap: 14px;
  }

  .site-footer p {
    max-width: 100%;
    line-height: 1.45;
  }

  .site-footer p span {
    display: block;
  }

  .back-to-top {
    justify-self: end;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .frame-brand-carousel {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .frame-brand-track {
    animation: none !important;
  }
}
