:root {
  --ink: #1c2522;
  --ink-soft: #43514c;
  --forest: #0f4f43;
  --sage: #dfe9e1;
  --mint: #f2f8f4;
  --gold: #c69a43;
  --gold-soft: #ead6a3;
  --ivory: #fbf7ec;
  --paper: #fffdf7;
  --stone: #eee7d8;
  --silver: #dfe4e1;
  --ruby: #9c3447;
  --line: rgba(28, 37, 34, 0.11);
  --line-strong: rgba(198, 154, 67, 0.32);
  --shadow: 0 22px 60px rgba(35, 31, 20, 0.12);
  --shadow-soft: 0 12px 32px rgba(35, 31, 20, 0.08);
  --radius: 10px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes headerDrop {
  from {
    opacity: 0;
    translate: 0 -14px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    translate: 0 18px;
    filter: blur(6px);
  }

  to {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}

@keyframes softFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -6px;
  }
}

@keyframes buttonSheen {
  from {
    translate: -140% 0;
  }

  to {
    translate: 140% 0;
  }
}

@keyframes tabsFloatIn {
  from {
    opacity: 0;
    translate: 0 16px;
  }

  to {
    opacity: 1;
    translate: 0 0;
  }
}

@keyframes activeTabPop {
  0% {
    scale: 0.94;
  }

  62% {
    scale: 1.04;
  }

  100% {
    scale: 1;
  }
}

@keyframes tabSheen {
  0% {
    opacity: 0;
    translate: 0 0;
  }

  24% {
    opacity: 0.8;
  }

  100% {
    opacity: 0;
    translate: 360% 0;
  }
}

@keyframes productCardRise {
  from {
    opacity: 0;
    translate: 0 18px;
    scale: 0.99;
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes productFilterIn {
  from {
    opacity: 0;
    translate: 0 18px;
    scale: 0.98;
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes languageFadeOut {
  from {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }

  to {
    opacity: 0.58;
    translate: 0 -8px;
    filter: blur(7px);
  }
}

@keyframes languageFadeIn {
  from {
    opacity: 0;
    translate: 0 14px;
    filter: blur(8px);
  }

  to {
    opacity: 1;
    translate: 0 0;
    filter: blur(0);
  }
}

@keyframes languageSweep {
  0% {
    opacity: 0;
    transform: translateX(-120%) skewX(-16deg);
  }

  36% {
    opacity: 0.32;
  }

  100% {
    opacity: 0;
    transform: translateX(120%) skewX(-16deg);
  }
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #f8f1df 0%, var(--ivory) 34%, #f4f7f1 100%);
  color: var(--ink);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  line-height: 1.74;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(28, 37, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 37, 34, 0.028) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, transparent 0%, black 16%, black 72%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: -20% auto -20% 0;
  z-index: 120;
  width: 42%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(198, 154, 67, 0.16), rgba(15, 79, 67, 0.1), transparent);
  filter: blur(12px);
}

body.language-changing::after {
  animation: languageSweep 540ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.language-changing .site-header,
body.language-changing main,
body.language-changing .site-footer {
  animation: languageFadeOut 170ms ease both;
}

body.language-settling .site-header,
body.language-settling main,
body.language-settling .site-footer {
  animation: languageFadeIn 480ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.86);
  border-bottom: 1px solid rgba(28, 37, 34, 0.09);
  box-shadow: 0 12px 30px rgba(35, 31, 20, 0.07);
  backdrop-filter: blur(18px);
  animation: headerDrop 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 230px;
}

.brand-mark {
  position: relative;
  width: 58px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 9px 9px 11px 11px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.82) 0 8%, transparent 9%),
    linear-gradient(145deg, #fff1a8 0%, #e0b84f 34%, #b87924 72%, #7c4f18 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -8px 14px rgba(116, 72, 19, 0.34),
    0 14px 28px rgba(198, 154, 67, 0.24);
  transform: perspective(220px) rotateX(12deg) rotateZ(-6deg) skewX(-8deg);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px 9px auto;
  height: 12px;
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.02));
  clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%);
}

.brand-mark::after {
  content: "999.9";
  position: absolute;
  inset-inline-end: 9px;
  bottom: 7px;
  color: rgba(54, 32, 8, 0.72);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  transform: skewX(8deg);
}

.gold-bar-stamp {
  position: absolute;
  inset-inline-start: 9px;
  bottom: 8px;
  width: 15px;
  height: 4px;
  border-radius: 999px;
  background: rgba(72, 43, 10, 0.38);
  box-shadow: 0 -6px 0 rgba(72, 43, 10, 0.18);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.35;
}

.brand small {
  color: var(--forest);
  font-size: 0.78rem;
  line-height: 1.35;
}

.nav-panel {
  justify-self: center;
  position: relative;
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px;
  border: 1px solid rgba(198, 154, 67, 0.18);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(244, 247, 241, 0.72)),
    radial-gradient(circle at 50% 0, rgba(198, 154, 67, 0.12), transparent 54%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 34px rgba(35, 31, 20, 0.08);
  isolation: isolate;
}

.nav-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(15, 79, 67, 0.12), transparent);
  opacity: 0.55;
}

.nav-panel a {
  position: relative;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(28, 37, 34, 0.72);
  font-size: 0.94rem;
  font-weight: 800;
  transition:
    background 200ms ease,
    color 200ms ease,
    box-shadow 200ms ease,
    transform 200ms ease;
}

.nav-panel a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(198, 154, 67, 0.46);
  box-shadow: 0 0 0 3px rgba(198, 154, 67, 0.08);
  transition:
    width 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.nav-panel a:hover,
.nav-panel a.is-active {
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), #1b6a5c);
  box-shadow: 0 12px 24px rgba(15, 79, 67, 0.16);
  transform: translateY(-1px);
}

.nav-panel a:hover::before,
.nav-panel a.is-active::before {
  width: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff1a8, var(--gold));
  box-shadow: 0 0 0 3px rgba(234, 214, 163, 0.18);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.language-switch {
  position: relative;
  min-height: 44px;
  display: inline-block;
  color: var(--forest);
  z-index: 75;
}

.language-native {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.language-trigger {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 11px;
  border: 1px solid rgba(198, 154, 67, 0.35);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.language-trigger:hover,
.language-switch.is-open .language-trigger {
  transform: translateY(-1px);
  border-color: rgba(15, 79, 67, 0.38);
  background: var(--paper);
  box-shadow: 0 18px 34px rgba(35, 31, 20, 0.12);
}

.language-trigger:focus-visible,
.language-option:focus-visible {
  outline: 3px solid rgba(198, 154, 67, 0.3);
  outline-offset: 3px;
}

.language-trigger svg {
  width: 18px;
  height: 18px;
}

.language-trigger svg:last-child {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.language-switch.is-open .language-trigger svg:last-child {
  transform: rotate(180deg);
}

.language-current {
  min-width: 58px;
  text-align: center;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  inset-inline-end: 0;
  min-width: 188px;
  display: grid;
  gap: 7px;
  padding: 8px;
  border: 1px solid rgba(198, 154, 67, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.96);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  translate: 0 -8px;
  scale: 0.98;
  transform-origin: top right;
  transition: opacity 160ms ease, translate 160ms ease, scale 160ms ease;
}

[dir="rtl"] .language-menu {
  transform-origin: top left;
}

.language-switch.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  translate: 0 0;
  scale: 1;
}

.language-option {
  min-height: 48px;
  width: 100%;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  background: transparent;
  text-align: start;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.language-option:hover,
.language-option.is-active {
  color: var(--ink);
  background: rgba(15, 79, 67, 0.08);
  border-color: rgba(15, 79, 67, 0.12);
}

.language-option span {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #2d210e;
  background: linear-gradient(135deg, #f2daa0, var(--gold));
  font-weight: 900;
}

.language-option strong {
  font-weight: 900;
}

.header-call,
.button,
.icon-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
}

.header-call {
  padding: 9px 14px;
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), #16463e);
  box-shadow: 0 16px 30px rgba(15, 79, 67, 0.18);
  font-weight: 900;
}

.icon-button {
  width: 44px;
  padding: 0;
  color: var(--forest);
  background: rgba(255, 253, 247, 0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.header-call svg,
.button svg,
.icon-button svg,
.promise-grid svg,
.icon-surface svg,
.service-list svg,
.notice-box svg,
.branch-card svg,
.phone-list svg,
.hours-box svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: calc(84svh - var(--header-height));
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: #16201d;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}

[dir="rtl"] .hero-media img {
  transform: scaleX(-1);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(17, 30, 27, 0.28), rgba(17, 30, 27, 0.7) 48%, rgba(17, 30, 27, 0.9)),
    linear-gradient(180deg, rgba(17, 30, 27, 0.18), rgba(17, 30, 27, 0.68));
}

[dir="ltr"] .hero::before {
  background:
    linear-gradient(90deg, rgba(17, 30, 27, 0.9), rgba(17, 30, 27, 0.7) 48%, rgba(17, 30, 27, 0.28)),
    linear-gradient(180deg, rgba(17, 30, 27, 0.18), rgba(17, 30, 27, 0.68));
}

.hero::after {
  z-index: -1;
  background: linear-gradient(180deg, transparent 70%, var(--ivory) 100%);
}

.hero-layout {
  min-height: calc(84svh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 46px;
  align-items: center;
  padding-block: 58px 74px;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy > * {
  animation: fadeSlideUp 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy > *:nth-child(2) {
  animation-delay: 80ms;
}

.hero-copy > *:nth-child(3) {
  animation-delay: 150ms;
}

.hero-copy > *:nth-child(4) {
  animation-delay: 220ms;
}

.hero-copy > *:nth-child(5) {
  animation-delay: 290ms;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 0.94rem;
  font-weight: 900;
}

.hero .eyebrow {
  color: var(--gold-soft);
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-size: 4.35rem;
  line-height: 1.08;
  font-weight: 900;
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.hero-tagline {
  margin: 14px 0 0;
  color: #f0d99d;
  font-size: 1.32rem;
  font-weight: 900;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  position: relative;
  min-width: 170px;
  overflow: hidden;
  padding: 11px 18px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
  transform: skewX(-18deg);
  translate: -140% 0;
  pointer-events: none;
}

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

.button:hover::before {
  animation: buttonSheen 720ms ease;
}

.button-primary {
  color: #2d210e;
  background: linear-gradient(135deg, #f3dfa9, var(--gold));
  box-shadow: 0 18px 34px rgba(198, 154, 67, 0.24);
}

.button-glass {
  color: var(--paper);
  background: rgba(255, 253, 247, 0.13);
  border: 1px solid rgba(255, 253, 247, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-orbit {
  position: relative;
  min-height: 460px;
  perspective: 1100px;
}

.orbit-card {
  position: absolute;
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.13);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.main-card,
.top-card,
.bottom-card {
  animation: softFloat 7.5s ease-in-out infinite;
}

.top-card {
  animation-delay: 700ms;
}

.bottom-card {
  animation-delay: 1.2s;
}

.main-card {
  inset: 60px 0 auto auto;
  width: min(100%, 420px);
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg);
}

.main-card img {
  width: 100%;
  height: 258px;
  object-fit: cover;
}

.main-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
}

.main-card span,
.small-card span {
  color: rgba(255, 253, 247, 0.72);
}

.main-card strong,
.small-card strong {
  color: var(--paper);
  font-size: 1.2rem;
}

.small-card {
  min-width: 164px;
  padding: 17px;
}

.small-card strong,
.small-card span {
  display: block;
}

.top-card {
  top: 12px;
  left: 18px;
  transform: rotateY(10deg) translateZ(24px);
}

.bottom-card {
  right: 28px;
  bottom: 22px;
  transform: rotateY(-10deg) translateZ(20px);
}

.image-strip {
  position: relative;
  z-index: 2;
  margin-top: -52px;
}

.strip-track {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 253, 247, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.strip-track img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  border-radius: 7px;
  transition: transform 320ms ease, filter 320ms ease;
}

.strip-track img:hover {
  transform: scale(1.025);
  filter: saturate(1.06) contrast(1.02);
}

.section {
  padding-block: 88px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.revealable {
  opacity: 0;
  translate: 0 22px;
  scale: 0.99;
  filter: blur(6px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    translate 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    scale 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.revealable.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading.wide {
  max-width: 920px;
}

.section-heading h2,
.section-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.34rem;
  line-height: 1.26;
}

.section-heading p:not(.eyebrow),
.section-copy p,
.product-card p,
.promise-grid p,
.quality-cards span,
.process-timeline p,
.notice-box p,
.branch-card p,
.hours-box p {
  color: var(--ink-soft);
}

.section-heading .eyebrow,
.section-copy .eyebrow {
  color: var(--forest);
}

.intro-grid,
.experience-grid,
.quality-layout,
.clients-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.intro-section,
.quality-section,
.clients-section {
  background: linear-gradient(180deg, rgba(255, 253, 247, 0.42), rgba(223, 233, 225, 0.34));
}

.section-copy p {
  font-size: 1.03rem;
}

.lux-panel,
.product-card,
.promise-grid article,
.quality-cards article,
.notice-box,
.branch-card,
.hours-box,
.contact-form,
.image-window {
  border: 1px solid rgba(28, 37, 34, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow-soft);
}

.lux-panel {
  overflow: hidden;
  transform: perspective(1000px) rotateY(-3deg);
  transform-origin: center;
}

.lux-panel img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.lux-panel:hover img,
.image-window:hover img {
  transform: scale(1.025);
  filter: saturate(1.06);
}

.panel-content {
  padding: 22px 24px;
}

.panel-content h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.3rem;
}

.panel-content p {
  margin: 0;
  color: var(--ink-soft);
}

.promise-section {
  background: var(--paper);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.promise-grid article {
  min-height: 218px;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.promise-grid article:hover,
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 154, 67, 0.32);
  box-shadow: var(--shadow);
}

.promise-grid svg {
  color: var(--forest);
  margin-bottom: 16px;
}

.promise-grid h3,
.product-card h3,
.process-timeline h3,
.branch-card h3,
.hours-box h3,
.contact-form h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.45;
}

.promise-grid p,
.product-card p,
.process-timeline p,
.branch-card p,
.hours-box p {
  margin: 0;
}

.products-section {
  background: linear-gradient(180deg, #f7f2e6, #f3f7f1 56%, #fbf7ec);
}

.product-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 auto 26px;
  padding: 7px;
  border: 1px solid rgba(28, 37, 34, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.78);
  box-shadow: var(--shadow-soft);
  animation: tabsFloatIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.tab-button {
  position: relative;
  isolation: isolate;
  min-height: 40px;
  min-width: 94px;
  padding: 8px 15px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(28, 37, 34, 0.66);
  font-weight: 900;
  overflow: hidden;
  transition:
    color 260ms ease,
    background 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.tab-button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(198, 154, 67, 0.18), rgba(25, 94, 79, 0.14));
  opacity: 0;
  scale: 0.72;
  transition: opacity 260ms ease, scale 260ms ease;
}

.tab-button::after {
  content: "";
  position: absolute;
  inset-block: 7px;
  inset-inline-start: -42%;
  width: 38%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.58), transparent);
  opacity: 0;
  transform: skewX(-18deg);
}

.tab-button:hover {
  color: var(--forest);
  transform: translateY(-1px);
}

.tab-button:hover::before {
  opacity: 1;
  scale: 1;
}

.tab-button.is-active {
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), #1b6a5c);
  box-shadow: 0 14px 28px rgba(25, 94, 79, 0.22);
  animation: activeTabPop 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.tab-button.is-active::before {
  opacity: 0;
}

.tab-button.is-active::after {
  animation: tabSheen 1200ms ease both;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 24px;
  transform-origin: center;
  animation: productCardRise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--product-delay, 0ms);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.product-card.is-ready {
  animation: none;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 28%),
    linear-gradient(315deg, rgba(198, 154, 67, 0.18), transparent 42%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.36), transparent 26%),
    linear-gradient(115deg, transparent 28%, rgba(255, 253, 247, 0.34), transparent 45%);
  opacity: 0;
  transform: translateX(-22%);
  transition: opacity 320ms ease, transform 520ms ease;
}

.product-card.is-hidden {
  display: none;
}

.product-card.is-filtering-out {
  opacity: 0;
  translate: 0 14px;
  scale: 0.985;
  will-change: opacity, translate, scale;
}

.product-card.is-filtering-in {
  animation: productFilterIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--product-delay, 0ms);
  will-change: opacity, translate, scale;
}

.image-card {
  grid-column: span 2;
  min-height: 500px;
  display: grid;
  grid-template-rows: 268px 1fr;
  padding: 0;
}

.image-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform 360ms ease;
}

.image-card:hover > img {
  transform: scale(1.025) translateY(-1px);
}

.product-card:hover::after {
  opacity: 1;
  transform: translateX(22%);
}

.product-card:hover::before {
  opacity: 1;
}

.product-showcase .product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 154, 67, 0.42);
  box-shadow: 0 22px 54px rgba(35, 31, 20, 0.14);
}

.product-card:hover .metal-chip {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(35, 31, 20, 0.12);
}

.product-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.metal-chip {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.metal-chip.gold {
  color: #2d210e;
  background: linear-gradient(135deg, #f2daa0, var(--gold));
}

.metal-chip.silver {
  color: #26302d;
  background: linear-gradient(135deg, #ffffff, var(--silver));
}

.metal-chip.emerald {
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), #1b6a5c);
}

.weights {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}

.weights span,
.client-grid span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border: 1px solid rgba(28, 37, 34, 0.1);
  border-radius: 8px;
  background: rgba(15, 79, 67, 0.055);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
}

.weights span {
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.product-card:hover .weights span {
  background: rgba(255, 253, 247, 0.9);
  border-color: rgba(198, 154, 67, 0.2);
}

.product-card:hover .weights span:hover {
  transform: translateY(-2px);
}

.icon-surface {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(198, 154, 67, 0.28);
  border-radius: 50%;
  color: var(--forest);
  background: radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.9), rgba(198, 154, 67, 0.12));
}

.experience-section {
  overflow: hidden;
  background: linear-gradient(180deg, #eef5ee, #fbf7ec);
}

.experience-grid {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
}

.gallery-stack {
  position: relative;
  min-height: 540px;
  perspective: 1200px;
}

.gallery-stack img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255, 253, 247, 0.78);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: filter 320ms ease, scale 320ms ease;
}

.gallery-stack img:hover {
  scale: 1.018;
  filter: saturate(1.06) contrast(1.02);
}

.gallery-large {
  inset: 28px 0 auto auto;
  width: 82%;
  height: 380px;
  transform: rotateY(6deg) rotateX(1deg);
}

.gallery-small {
  width: 44%;
  height: 205px;
}

.gallery-small.one {
  left: 0;
  top: 0;
  transform: rotateY(-8deg) translateZ(44px);
}

.gallery-small.two {
  right: 6%;
  bottom: 10px;
  transform: rotateY(8deg) translateZ(36px);
}

.service-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.service-list article {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(28, 37, 34, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.75);
  color: var(--ink);
  font-weight: 900;
}

.service-list svg {
  flex: 0 0 auto;
  color: var(--forest);
}

.quality-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1fr);
}

.quality-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quality-cards article {
  min-height: 156px;
  padding: 22px;
}

.quality-cards strong,
.quality-cards span {
  display: block;
}

.quality-cards strong {
  color: var(--forest);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.process-section {
  background: var(--paper);
}

.process-timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
}

.process-timeline li {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(28, 37, 34, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: var(--shadow-soft);
}

.process-timeline span {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), #1b6a5c);
  font-weight: 900;
}

.notice-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 24px;
  padding: 22px;
  border-color: rgba(198, 154, 67, 0.3);
  background: rgba(255, 249, 232, 0.8);
  box-shadow: none;
}

.notice-box svg {
  color: var(--gold);
  margin-top: 4px;
}

.clients-layout {
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr);
}

.image-window {
  overflow: hidden;
  transform: perspective(1100px) rotateY(4deg);
}

.image-window img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.client-grid span {
  min-height: 58px;
  color: var(--ink);
}

.contact-section {
  background: linear-gradient(180deg, #f8f1df, #eef5ee);
}

.contact-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.branch-card {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 22px;
}

.branch-card svg {
  color: var(--forest);
  margin-top: 4px;
}

.branch-card h3,
.branch-card p {
  grid-column: 2;
}

.phone-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.phone-list a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  color: var(--paper);
  background: linear-gradient(135deg, var(--forest), #1b6a5c);
  box-shadow: var(--shadow-soft);
  font-weight: 900;
  direction: ltr;
}

.hours-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 22px;
}

.hours-box svg {
  color: var(--gold);
  margin-top: 4px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
}

.contact-form h3,
.full-field,
.full-button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form .hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  opacity: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(28, 37, 34, 0.13);
  border-radius: var(--radius);
  outline: 0;
  color: var(--ink);
  background: rgba(255, 253, 247, 0.92);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  min-height: 124px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(15, 79, 67, 0.54);
  box-shadow: 0 0 0 3px rgba(15, 79, 67, 0.12);
}

.contact-form .is-invalid {
  border-color: var(--ruby);
}

.full-button {
  width: 100%;
}

.full-button:disabled,
.contact-form.is-sending .full-button {
  cursor: progress;
  opacity: 0.72;
}

.form-status {
  min-height: 28px;
  margin: 0;
  color: var(--forest);
  font-weight: 900;
}

.form-status.error {
  color: var(--ruby);
}

.site-footer {
  color: rgba(255, 253, 247, 0.78);
  background: #16201d;
  border-top: 1px solid rgba(255, 253, 247, 0.12);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--gold-soft);
  font-weight: 900;
}

.back-to-top {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(234, 214, 163, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.06);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.back-to-top svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.back-to-top:hover {
  color: var(--paper);
  background: rgba(234, 214, 163, 0.12);
  border-color: rgba(234, 214, 163, 0.46);
  transform: translateY(-2px);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 50%;
    right: auto;
    width: min(calc(100vw - 32px), 360px);
    display: grid;
    gap: 7px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(244, 247, 241, 0.96)),
      radial-gradient(circle at 50% 0, rgba(198, 154, 67, 0.16), transparent 48%);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateX(-50%);
    transition: max-height 180ms ease, opacity 180ms ease, padding 180ms ease;
  }

  .nav-panel::before {
    inset: 8px;
    background: linear-gradient(180deg, rgba(198, 154, 67, 0.14), transparent 32%);
  }

  body.nav-open .nav-panel {
    max-height: 440px;
    padding: 12px;
    border: 1px solid rgba(198, 154, 67, 0.2);
    opacity: 1;
  }

  .nav-panel a {
    justify-content: flex-start;
    min-height: 48px;
    padding-inline: 14px;
    background: rgba(255, 253, 247, 0.72);
    box-shadow: inset 0 0 0 1px rgba(28, 37, 34, 0.06);
  }

  .hero-layout,
  .intro-grid,
  .experience-grid,
  .quality-layout,
  .clients-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    min-height: 376px;
  }

  .main-card {
    inset: 20px auto auto 0;
    width: min(78%, 460px);
  }

  .top-card {
    right: 0;
    left: auto;
  }

  .promise-grid,
  .product-showcase,
  .quality-cards,
  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
  }

  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 48px;
    height: 34px;
  }

  .brand-mark::after {
    font-size: 0.48rem;
    inset-inline-end: 7px;
    bottom: 6px;
  }

  .gold-bar-stamp {
    inset-inline-start: 7px;
    bottom: 7px;
    width: 12px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 10px;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
  }

  .language-switch {
    width: 44px;
  }

  .language-trigger {
    width: 44px;
    padding: 0;
  }

  .language-current,
  .language-trigger svg:last-child {
    display: none;
  }

  .language-menu {
    min-width: 168px;
  }

  .header-call {
    width: 44px;
    min-width: 44px;
    padding: 0;
  }

  .header-call span {
    display: none;
  }

  .hero,
  .hero-layout {
    min-height: auto;
  }

  .hero-layout {
    gap: 16px;
    padding-block: 28px 18px;
  }

  .hero-media img {
    object-position: 42% center;
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 30, 27, 0.22), rgba(17, 30, 27, 0.72) 42%, rgba(17, 30, 27, 0.92)),
      linear-gradient(180deg, rgba(17, 30, 27, 0.12), rgba(17, 30, 27, 0.64));
  }

  [dir="ltr"] .hero::before {
    background:
      linear-gradient(90deg, rgba(17, 30, 27, 0.92), rgba(17, 30, 27, 0.72) 58%, rgba(17, 30, 27, 0.22)),
      linear-gradient(180deg, rgba(17, 30, 27, 0.12), rgba(17, 30, 27, 0.64));
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-tagline {
    font-size: 1.08rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-orbit {
    min-height: 210px;
  }

  .main-card {
    inset: 0 auto auto 0;
    width: 68%;
    transform: rotateY(-4deg);
  }

  .main-card img {
    height: 126px;
  }

  .main-card div {
    display: none;
  }

  .main-card strong {
    font-size: 1rem;
  }

  .small-card {
    min-width: 122px;
    padding: 11px;
  }

  .top-card {
    top: 8px;
    right: 0;
  }

  .bottom-card {
    right: auto;
    left: 6px;
    bottom: 0;
  }

  .image-strip {
    margin-top: 0;
  }

  .strip-track,
  .promise-grid,
  .product-showcase,
  .quality-cards,
  .process-timeline,
  .client-grid,
  .phone-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .strip-track {
    width: min(100% - 28px, 1180px);
  }

  .strip-track img {
    height: 166px;
  }

  .section {
    padding-block: 58px;
  }

  .section-heading {
    margin-bottom: 26px;
    text-align: right;
  }

  [dir="ltr"] .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .section-copy h2 {
    font-size: 1.84rem;
  }

  .lux-panel,
  .image-window {
    transform: none;
  }

  .lux-panel img,
  .image-window img {
    height: 252px;
  }

  .image-card {
    grid-column: auto;
    min-height: auto;
    grid-template-rows: 216px 1fr;
  }

  .tab-button {
    flex: 1 1 42%;
  }

  .gallery-stack {
    min-height: 372px;
  }

  .gallery-large {
    width: 90%;
    height: 252px;
    transform: none;
  }

  .gallery-small {
    width: 48%;
    height: 142px;
  }

  .gallery-small.one {
    top: 22px;
  }

  .gallery-small.two {
    bottom: 0;
  }

  .process-timeline li {
    min-height: auto;
  }

  .contact-form h3,
  .full-field,
  .full-button,
  .form-status {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-block: 18px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.12rem;
  }

  .button {
    width: 100%;
  }

  .product-card,
  .promise-grid article,
  .quality-cards article,
  .notice-box,
  .branch-card,
  .hours-box,
  .contact-form,
  .panel-content {
    padding: 20px;
  }

  .main-card {
    width: 72%;
  }

  .small-card {
    min-width: 118px;
  }
}

@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;
  }

  .revealable {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    filter: none;
  }
}
