﻿@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --bg: #f9fafb;
  --surface: #ffffff;
  --surface-soft: #fffdf3;
  --text: #15202b;
  --muted: #5f6f81;
  --stroke: #ebeff4;
  --accent: #ffd84f;
  --accent-strong: #ffc629;
  --accent-soft: #fff3c4;
  --gold-edge: #f5df9d;
  --gold-deep: #cf9f2b;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 16px 36px rgba(24, 34, 48, 0.08);
  --shadow-hover: 0 24px 42px rgba(24, 34, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 8% 4%, rgba(255, 216, 79, 0.23), transparent 28%), radial-gradient(circle at 94% 1%, rgba(255, 241, 181, 0.45), transparent 32%), var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

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

.page-shell::before,
.page-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  width: 420px;
  height: 420px;
  background: linear-gradient(140deg, rgba(255, 216, 79, 0.2), rgba(255, 255, 255, 0.04));
  top: 10%;
  right: -220px;
}

.page-shell::after {
  width: 360px;
  height: 360px;
  background: linear-gradient(150deg, rgba(255, 247, 210, 0.7), rgba(255, 255, 255, 0));
  left: -160px;
  bottom: 8%;
}

.arabesque {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20px 20px, rgba(207, 159, 43, 0.08) 2px, transparent 2.2px), radial-gradient(circle at 60px 60px, rgba(245, 223, 157, 0.16) 2.5px, transparent 2.7px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.16) 12%, rgba(0, 0, 0, 0.24) 50%, rgba(0, 0, 0, 0.16) 88%, transparent 100%);
  z-index: -2;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(230, 215, 172, 0.65);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-badge {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(140deg, #ffeeb0, #e2b247);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: #334155;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color 0.25s ease, color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(130deg, rgba(255, 239, 183, 0.66), rgba(247, 226, 169, 0.38));
  color: #111827;
}

.header-cta {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #efd48b;
  background: linear-gradient(140deg, #ffe9a8, #ebb752);
  color: #111827;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(207, 159, 43, 0.32);
}

.mobile-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: #111827;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 12px;
}

.lang-link {
  min-width: 42px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid #e6d8b0;
  padding: 7px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #6f5a34;
  background: #fff;
}

.lang-link.active {
  background: linear-gradient(130deg, rgba(255, 239, 183, 0.8), rgba(235, 183, 82, 0.34));
  border-color: #e2bc68;
  color: #3d311f;
}

.section {
  padding: 86px 0;
}

.section-tight {
  padding: 62px 0;
}

.section-title {
  margin: 0;
  font-family: 'Cormorant Garamond', 'Space Grotesk', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.04;
  font-size: clamp(1.9rem, 4.5vw, 3.25rem);
}

.section-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 720px;
}

.lux-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7f6740;
  font-weight: 700;
}

.lux-kicker::before,
.lux-kicker::after {
  content: '';
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c79d39, transparent);
}

.hero-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.99), rgba(255, 252, 239, 0.96));
  border: 1px solid rgba(239, 214, 146, 0.62);
  border-radius: var(--radius-xl);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius-xl) - 6px);
  border: 1px solid rgba(245, 223, 157, 0.5);
  pointer-events: none;
}

.hero-lead {
  margin-top: 20px;
  color: #334155;
  font-size: clamp(1.01rem, 2vw, 1.14rem);
  max-width: 650px;
}

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

.btn-main,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-main {
  background: linear-gradient(150deg, #fee7a2, #e3ae42);
  border: 1px solid #e3c26b;
  color: #111827;
}

.btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(207, 159, 43, 0.34);
}

.btn-main i,
.btn-ghost i {
  font-size: 0.95rem;
}

.btn-ghost {
  border: 1px solid var(--stroke);
  background: #fff;
  color: #111827;
}

.btn-ghost:hover {
  border-color: #c9d2dc;
  transform: translateY(-1px);
}

.metric-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric {
  border-radius: var(--radius-md);
  border: 1px solid var(--stroke);
  background: #fff;
  padding: 16px;
}

.metric strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1;
}

.metric span {
  margin-top: 7px;
  display: block;
  color: #607086;
  font-size: 0.92rem;
}

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

.info-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--stroke);
  padding: 22px;
  box-shadow: 0 8px 20px rgba(20, 34, 48, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.info-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #4b5563;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.info-card h3 {
  margin-top: 14px;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
}

.info-card p {
  color: var(--muted);
  margin: 0;
}

.surface-panel {
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid rgba(236, 222, 183, 0.8);
  box-shadow: var(--shadow-soft);
  padding: clamp(22px, 4vw, 40px);
  position: relative;
}

.surface-panel::after {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: calc(var(--radius-xl) - 7px);
  border: 1px solid rgba(240, 225, 180, 0.44);
  pointer-events: none;
}

.surface-panel > * {
  position: relative;
  z-index: 1;
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.list-clean li {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: #fff;
  color: #304155;
}

.timeline {
  position: relative;
  padding-left: 18px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, #ffe08d, #f6d14a);
}

.timeline-item {
  position: relative;
  margin-bottom: 18px;
  padding-left: 16px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2px;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffc629;
  box-shadow: 0 0 0 5px #fff6d6;
}

.timeline-item h4 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
}

.timeline-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #ecdcb0;
  color: #3f4f63;
  font-size: 0.88rem;
  font-weight: 600;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--stroke);
  color: #1f2b3a;
  font-weight: 700;
}

.contact-link:hover {
  border-color: #d1dae3;
}

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

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

.visual-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid #ecdcb0;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(24, 34, 48, 0.08);
}

.visual-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-bottom: 1px solid #f0e2bc;
}

.visual-card-body {
  padding: 12px 14px 14px;
}

.visual-card-title {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
}

.visual-card-text {
  margin: 6px 0 0;
  color: #627388;
  font-size: 0.92rem;
}

.showcase-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ecdcb0;
  box-shadow: 0 10px 24px rgba(24, 34, 48, 0.1);
  background: #fff;
}

.showcase-link {
  display: block;
  color: inherit;
}

.showcase-link .showcase-image {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase-link:hover .showcase-image {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(24, 34, 48, 0.14);
}

.showcase-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.showcase-image figcaption {
  font-size: 0.83rem;
  color: #6d5c3c;
  padding: 8px 10px 10px;
  border-top: 1px solid #f3e7c6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer {
  border-top: 1px solid var(--stroke);
  margin-top: 70px;
  padding: 24px 0 36px;
  color: #607086;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.06s;
}

.delay-2 {
  transition-delay: 0.13s;
}

.delay-3 {
  transition-delay: 0.2s;
}

@media (max-width: 991.98px) {
  .site-nav-wrap {
    display: none;
    width: 100%;
    margin-top: 14px;
  }

  .site-nav-wrap.open {
    display: block;
  }

  .site-nav {
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--stroke);
    border-radius: 16px;
    background: #fff;
  }

  .site-nav a,
  .header-cta {
    text-align: center;
    justify-content: center;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .lang-switch {
    margin-left: auto;
    margin-top: 10px;
  }

  .section {
    padding: 70px 0;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

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

  .visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-main,
  .btn-ghost {
    width: 100%;
  }
}
