:root {
  --bg: #081426;
  --bg-deep: #040b16;
  --panel: rgba(10, 24, 48, 0.78);
  --panel-strong: rgba(8, 18, 36, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f7fb;
  --muted: #a9b7cc;
  --gold: #d1b178;
  --gold-soft: #eddab7;
  --cyan: #67bdd2;
  --cyan-soft: #a9d9e4;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  position: relative;
  isolation: isolate;
  font-family: "Manrope", "Noto Sans SC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(103, 189, 210, 0.18), transparent 32%),
    radial-gradient(circle at 85% 8%, rgba(209, 177, 120, 0.18), transparent 24%),
    linear-gradient(180deg, #0a1630 0%, var(--bg) 42%, var(--bg-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 92%);
  -webkit-mask-image: linear-gradient(180deg, rgba(255, 255, 255, 0.65), transparent 92%);
}

body::after {
  background:
    radial-gradient(circle at center, transparent 0 58%, rgba(255, 255, 255, 0.08) 58.4%, transparent 59.2%),
    radial-gradient(circle at center, transparent 0 72%, rgba(255, 255, 255, 0.05) 72.4%, transparent 73.2%);
  background-size: 900px 900px;
  background-position: top right;
  opacity: 0.3;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  position: relative;
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background:
    linear-gradient(180deg, rgba(4, 11, 22, 0.94), rgba(4, 11, 22, 0.58)),
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 32%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(8, 18, 36, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.brand img {
  width: 96px;
  height: auto;
  padding: 6px 8px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 242, 248, 0.96));
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.brand-copy {
  display: grid;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.42em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand-copy small {
  display: block;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.lang-button {
  min-width: 58px;
  height: 40px;
  padding: 0 15px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.lang-button:hover,
.lang-button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.lang-button.is-active {
  color: #081426;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 10px 24px rgba(209, 177, 120, 0.24);
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

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

.hero {
  padding: 72px 0 56px;
}

.hero-grid,
.about-grid,
.market-grid,
.footer-row,
.contact-shell {
  display: grid;
  gap: 32px;
}

.contact-card {
  display: grid;
  gap: 24px;
  align-content: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}

h3,
p {
  margin: 0;
}

.lead,
.section-copy p,
.market-copy p,
.contact-card p,
.service-card p,
.market-card p,
.process-card p,
.panel-grid p,
.mini-metrics span,
.highlight-stack span {
  color: var(--muted);
  line-height: 1.8;
}

.hero-copy .lead {
  max-width: 62ch;
  margin-top: 22px;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  color: #081426;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 36px rgba(209, 177, 120, 0.28);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.mini-metrics,
.card-grid,
.panel-grid,
.process-grid,
.market-cards,
.highlight-stack,
.contact-meta {
  display: grid;
  gap: 18px;
}

.mini-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.mini-metrics article,
.service-card,
.market-card,
.process-card,
.contact-meta article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.mini-metrics strong,
.service-card span,
.process-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
}

.hero-panel,
.about-highlight,
.contact-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 32px;
  isolation: isolate;
}

.hero-panel::before,
.about-highlight::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(103, 189, 210, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(209, 177, 120, 0.22), transparent 28%);
  opacity: 0.9;
  z-index: -1;
}

.panel-topline,
.panel-brand,
.section-heading,
.footer-row,
.contact-card {
  align-items: start;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.logo-salon {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 28px;
}

.signature-card,
.brand-logo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.signature-card {
  padding: 16px 16px 18px;
  background:
    radial-gradient(circle at top left, rgba(255, 196, 120, 0.28), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #edf2f8 100%);
}

.signature-card figcaption,
.brand-logo-card figcaption {
  margin-bottom: 12px;
  color: #5d6673;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.signature-card img,
.brand-logo-card img {
  width: 100%;
  height: auto;
}

.signature-card-company img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.signature-card-product img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.panel-brand {
  display: grid;
  grid-template-columns: minmax(124px, auto) 1fr;
  gap: 18px;
  margin: 0 0 26px;
}

.brand-badge {
  display: grid;
  place-items: center;
  width: 142px;
  min-height: 94px;
  padding: 10px 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 242, 248, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.brand-badge img {
  width: 100%;
  height: auto;
}

.panel-label {
  margin-bottom: 8px;
  color: var(--cyan-soft);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.panel-brand h2 {
  font-size: clamp(2rem, 3vw, 2.85rem);
}

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

.panel-grid article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(3, 10, 19, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
}

.panel-grid h3,
.service-card h3,
.market-card h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.section {
  padding: 56px 0;
}

.about-grid,
.market-grid,
.contact-shell {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.88fr);
}

.section-copy h2,
.market-copy h2 {
  margin-bottom: 22px;
}

.section-copy p + p {
  margin-top: 16px;
}

.about-highlight {
  padding: 28px;
}

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
}

.highlight-stack {
  margin-top: 30px;
}

.highlight-stack article {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-intro {
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.8;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 100%;
}

.service-card span {
  font-size: 0.82rem;
}

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

.product-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(209, 177, 120, 0.28);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.product-card-copy {
  display: grid;
  gap: 10px;
}

.product-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 48px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.product-card p {
  color: var(--muted);
  line-height: 1.8;
}

.product-main-image,
.product-thumb {
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 208, 152, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(235, 240, 246, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.product-main-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  padding: 12px;
}

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

.product-thumbs-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 8px;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 32px;
  align-items: center;
}

.brand-stage {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.brand-stage-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-logo-duo {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin: 26px 0;
}

.brand-logo-card {
  padding: 18px;
}

.brand-logo-card-original {
  background:
    radial-gradient(circle at top left, rgba(255, 200, 126, 0.24), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #eef3f8 100%);
}

.brand-logo-card-premium {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(14, 24, 39, 0.92), rgba(8, 13, 21, 0.98));
}

.brand-logo-card-large {
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 200, 126, 0.24), transparent 30%),
    linear-gradient(180deg, #fffdfa 0%, #eef3f8 100%);
}

.brand-logo-card-large img {
  aspect-ratio: 21 / 9;
  object-fit: contain;
}

.brand-logo-card-original img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.brand-logo-card-premium img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

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

.brand-pillars article {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.brand-pillars strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
}

.brand-pillars span {
  color: var(--muted);
  line-height: 1.7;
}

.market-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.market-card {
  min-height: 100%;
}

.global-section {
  position: relative;
}

.global-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.84fr);
  gap: 32px;
  align-items: stretch;
}

.global-map-card,
.market-focus-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.global-map-card {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.global-map-card::before,
.market-focus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at top left, rgba(103, 189, 210, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(209, 177, 120, 0.18), transparent 28%);
  z-index: 0;
  pointer-events: none;
}

.global-map-card > *,
.market-focus-card > * {
  position: relative;
  z-index: 1;
}

.global-map-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.global-map-stage {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 420px;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(103, 189, 210, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(5, 11, 20, 0.68);
}

.global-map-stage img {
  width: 100%;
  height: auto;
  filter: saturate(1.06) drop-shadow(0 16px 34px rgba(0, 0, 0, 0.32));
}

.map-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(7, 16, 28, 0.84);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(14px);
}

.map-badge-turkey {
  left: 43%;
  top: 44%;
}

.map-badge-china {
  right: 14%;
  top: 30%;
}

.global-map-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.global-map-stats article {
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.global-map-stats strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.global-map-stats p {
  color: var(--muted);
  line-height: 1.75;
}

.market-focus-grid {
  display: grid;
  gap: 20px;
}

.market-focus-card {
  display: grid;
  gap: 24px;
  padding: 26px;
}

.market-focus-card-turkey {
  background:
    radial-gradient(circle at top left, rgba(241, 116, 88, 0.24), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(24, 14, 19, 0.96), rgba(14, 10, 16, 0.94));
}

.market-focus-card-china {
  background:
    radial-gradient(circle at top right, rgba(231, 104, 86, 0.26), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(30, 13, 12, 0.96), rgba(16, 10, 12, 0.94));
}

.market-focus-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.market-focus-emblem {
  position: relative;
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 40px rgba(0, 0, 0, 0.24);
}

.market-focus-emblem-turkey {
  background:
    radial-gradient(circle at 34% 34%, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(135deg, rgba(195, 40, 40, 0.98), rgba(94, 13, 20, 0.95));
}

.market-focus-emblem-china {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 221, 159, 0.26), transparent 18%),
    linear-gradient(135deg, rgba(176, 24, 24, 0.98), rgba(92, 12, 12, 0.95));
}

.crescent-outer,
.crescent-inner,
.emblem-star {
  position: absolute;
  display: block;
}

.crescent-outer {
  top: 29px;
  left: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff4d7;
}

.crescent-inner {
  top: 29px;
  left: 39px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #b31926;
}

.emblem-star {
  width: 20px;
  aspect-ratio: 1;
  background: #fff4d7;
  clip-path: polygon(50% 0%, 61% 36%, 98% 36%, 68% 58%, 79% 95%, 50% 72%, 21% 95%, 32% 58%, 2% 36%, 39% 36%);
}

.market-focus-emblem-turkey .star-main {
  top: 39px;
  left: 66px;
}

.market-focus-emblem-china .star-main {
  top: 24px;
  left: 24px;
  width: 22px;
}

.star-small {
  width: 11px;
  background: #f8dfa2;
}

.star-small-1 {
  top: 20px;
  left: 56px;
}

.star-small-2 {
  top: 34px;
  left: 70px;
}

.star-small-3 {
  top: 54px;
  left: 68px;
}

.star-small-4 {
  top: 70px;
  left: 52px;
}

.market-focus-code {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--gold-soft);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.market-focus-copy {
  display: grid;
  gap: 12px;
}

.market-focus-kicker {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.market-focus-copy h3 {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.2;
}

.market-focus-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.market-focus-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.market-focus-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-card strong {
  font-size: 1.4rem;
}

.contact-section {
  padding-bottom: 80px;
}

.contact-shell {
  align-items: stretch;
}

.contact-card {
  padding: 34px;
}

.contact-card-info,
.contact-card-form {
  min-height: 100%;
}

.contact-form-heading {
  display: grid;
  gap: 12px;
}

.contact-form-heading h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
}

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

.contact-meta article span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.contact-meta article strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.contact-meta article a {
  color: var(--text);
  transition: color 180ms ease;
}

.contact-meta article a:hover,
.contact-meta article a:focus-visible {
  color: var(--gold-soft);
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(220px, 0.92fr);
  gap: 18px;
  margin-top: auto;
}

.whatsapp-direct,
.wechat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-direct {
  display: grid;
  gap: 10px;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(114, 232, 164, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(15, 37, 24, 0.96), rgba(9, 21, 16, 0.96));
  box-shadow: 0 26px 56px rgba(5, 18, 10, 0.28);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.whatsapp-direct:hover,
.whatsapp-direct:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(99, 221, 151, 0.34);
  box-shadow: 0 30px 62px rgba(5, 18, 10, 0.36);
}

.whatsapp-direct-kicker {
  color: #74db9d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.whatsapp-direct strong {
  color: #fff;
  font-size: 1.18rem;
}

.wechat-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background:
    radial-gradient(circle at top left, rgba(120, 226, 149, 0.15), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    var(--panel-strong);
  box-shadow: 0 24px 54px rgba(3, 8, 14, 0.22);
}

.wechat-card-copy {
  display: grid;
  gap: 8px;
}

.wechat-card-copy strong {
  color: var(--text);
  font-size: 1.02rem;
}

.wechat-card-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.wechat-qr-frame {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(126, 220, 122, 0.18), transparent 28%),
    linear-gradient(180deg, #fbfffb 0%, #edf7ef 100%);
  border: 1px solid rgba(120, 226, 149, 0.2);
}

.wechat-qr-frame img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 18px;
}

.contact-form {
  display: grid;
  gap: 22px;
}

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

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-label {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  min-height: 54px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(7, 14, 24, 0.64);
  color: var(--text);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.form-input::placeholder {
  color: rgba(230, 236, 244, 0.42);
}

.form-input:focus-visible {
  outline: none;
  border-color: rgba(209, 177, 120, 0.55);
  box-shadow: 0 0 0 4px rgba(209, 177, 120, 0.12);
}

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

.form-status {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.form-status.is-success {
  border-color: rgba(71, 214, 129, 0.28);
  background: rgba(24, 109, 64, 0.18);
  color: #ebfff2;
}

.form-status.is-error {
  border-color: rgba(255, 121, 121, 0.28);
  background: rgba(118, 38, 38, 0.18);
  color: #ffe9e9;
}

.contact-submit {
  width: fit-content;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  border: 1px solid rgba(91, 216, 140, 0.26);
  background:
    linear-gradient(135deg, rgba(15, 37, 24, 0.96), rgba(9, 21, 16, 0.98));
  color: #f7fff9;
  box-shadow: 0 28px 58px rgba(4, 17, 10, 0.38);
  backdrop-filter: blur(18px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(121, 235, 169, 0.36);
  box-shadow: 0 34px 64px rgba(4, 17, 10, 0.46);
}

.whatsapp-float-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #61db91, #1da85a);
  color: #052014;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.whatsapp-float-copy {
  display: grid;
  gap: 2px;
}

.whatsapp-float-copy strong {
  color: #fff;
  font-size: 0.95rem;
}

.whatsapp-float-copy small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer {
  padding: 0 0 28px;
}

.utility-section {
  padding-top: 0;
}

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

.live-stat-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(103, 189, 210, 0.14), transparent 34%),
    radial-gradient(circle at bottom left, rgba(209, 177, 120, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.live-stat-label {
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-stat-value {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.live-time-stack {
  display: grid;
  gap: 14px;
}

.live-time-row {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.live-time-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.live-time-city {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-time-value {
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text);
}

.live-stats-note {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.exchange-panel {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(103, 189, 210, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(209, 177, 120, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  box-shadow: var(--shadow);
}

.exchange-panel-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.exchange-panel-heading h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: "Cormorant Garamond", "Noto Serif SC", serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.exchange-panel-heading p {
  color: var(--muted);
  line-height: 1.8;
}

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

.exchange-card {
  display: grid;
  gap: 18px;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 28%),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.exchange-card-top {
  display: grid;
  gap: 8px;
}

.exchange-code {
  color: var(--gold-soft);
  font-size: 1.65rem;
  letter-spacing: 0.12em;
}

.exchange-card-top span {
  color: var(--muted);
  line-height: 1.6;
}

.exchange-values {
  display: grid;
  gap: 14px;
}

.exchange-values div {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.exchange-values span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.exchange-values strong {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.exchange-status {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-row {
  grid-template-columns: 1fr auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.footer-row a {
  color: var(--gold-soft);
}

html[lang="en"] h1 {
  max-width: 13ch;
  font-size: clamp(3.4rem, 6.4vw, 6.1rem);
}

html[lang="en"] .brand-copy small {
  max-width: 32ch;
}

html[lang|="zh"] body {
  font-family: "Noto Sans SC", "Manrope", sans-serif;
}

html[lang|="zh"] h1,
html[lang|="zh"] h2,
html[lang|="zh"] .quote {
  font-family: "Noto Serif SC", "Cormorant Garamond", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

html[lang|="zh"] h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

html[lang|="zh"] .eyebrow,
html[lang|="zh"] .panel-topline,
html[lang|="zh"] .panel-label,
html[lang|="zh"] .brand-stage-topline,
html[lang|="zh"] .brand-copy small,
html[lang|="zh"] .lang-button {
  letter-spacing: 0.06em;
  text-transform: none;
}

html[lang|="zh"] .brand-copy small {
  max-width: 22ch;
  line-height: 1.55;
}

html[lang|="zh"] .brand-copy strong {
  letter-spacing: 0.28em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .site-nav a::after,
  .lang-button,
  .product-card {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .market-grid,
  .contact-shell,
  .global-layout,
  .services-grid,
  .product-grid,
  .brand-showcase,
  .process-grid,
  .market-cards {
    grid-template-columns: 1fr;
  }

  .panel-grid,
  .mini-metrics,
  .brand-pillars,
  .logo-salon,
  .brand-logo-duo,
  .global-map-stats,
  .contact-meta,
  .contact-quick-actions,
  .live-stats-grid,
  .exchange-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-row,
  .footer-row {
    grid-template-columns: 1fr;
  }

  .header-row {
    display: grid;
    justify-content: stretch;
  }

  .header-actions {
    display: grid;
    justify-content: stretch;
    gap: 16px;
    margin-left: 0;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .lang-switcher {
    justify-self: start;
  }

  h1 {
    max-width: none;
  }

  .panel-grid,
  .mini-metrics,
  .brand-pillars,
  .logo-salon,
  .brand-logo-duo,
  .global-map-stats,
  .contact-meta,
  .contact-quick-actions,
  .form-grid,
  .live-stats-grid,
  .exchange-grid {
    grid-template-columns: 1fr;
  }

  .product-thumbs,
  .product-thumbs-wide {
    grid-template-columns: 1fr;
  }

  .hero,
  .section {
    padding: 44px 0;
  }

  .hero-panel,
  .global-map-card,
  .market-focus-card,
  .brand-stage,
  .about-highlight,
  .contact-card,
  .live-stat-card,
  .exchange-panel,
  .exchange-card {
    padding: 24px;
  }

  .panel-brand {
    grid-template-columns: 1fr;
  }

  .brand-badge {
    width: 100%;
    max-width: 180px;
  }

  .global-map-stage {
    min-height: 320px;
    padding: 18px;
  }

  .map-badge {
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
  }

  .map-badge-turkey {
    left: 38%;
    top: 45%;
  }

  .map-badge-china {
    right: 10%;
    top: 28%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding-right: 14px;
  }

  .brand-copy strong {
    letter-spacing: 0.28em;
  }
}

@media (max-width: 540px) {
  .brand {
    align-items: flex-start;
  }

  .brand-copy small {
    letter-spacing: 0.08em;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .contact-submit {
    width: 100%;
  }

  .market-focus-visual {
    align-items: flex-start;
  }

  .market-focus-emblem {
    width: 98px;
    height: 98px;
    flex-basis: 98px;
  }

  .market-focus-code {
    min-height: 38px;
    padding: 0 14px;
  }

  .map-badge {
    display: none;
  }

  .whatsapp-float {
    padding: 10px;
  }

  .whatsapp-float-copy {
    display: none;
  }
}
