﻿:root {
  --bg: #06090d;
  --bg-soft: #0d1319;
  --card: rgba(15, 21, 27, 0.76);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f2ed;
  --muted: #b9b2a5;
  --gold: #c6a768;
  --gold-soft: #8d7242;
  --ember: #9a351f;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: radial-gradient(1200px 600px at 50% -10%, rgba(198, 167, 104, 0.14), transparent),
    radial-gradient(700px 400px at 10% 20%, rgba(154, 53, 31, 0.22), transparent),
    linear-gradient(140deg, #050709 0%, #0d1319 42%, #070a0f 100%);
  color: var(--text);
  font-family: "Outfit", "Segoe UI", sans-serif;
  min-height: 100%;
}

body {
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.025) 0%, rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
}

#smoke-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.85;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 9, 13, 0.78);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  line-height: 1;
  gap: 3px;
}

.brand-mark {
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--gold);
}

.brand-line {
  font-size: 0.65rem;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.menu-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.menu-btn:hover {
  border-color: rgba(198, 167, 104, 0.55);
  background: rgba(198, 167, 104, 0.1);
  transform: translateY(-1px);
}

.menu-btn[aria-expanded="true"] {
  border-color: rgba(198, 167, 104, 0.72);
  background: rgba(198, 167, 104, 0.15);
  color: #ffefcc;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.lang-btn {
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.03);
  color: #e9e2d4;
  border-radius: 999px;
  min-width: 42px;
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.lang-btn.active {
  border-color: rgba(198, 167, 104, 0.75);
  background: linear-gradient(140deg, rgba(198, 167, 104, 0.36), rgba(198, 167, 104, 0.14));
  color: #ffefcc;
  box-shadow: inset 0 1px 0 rgba(255, 244, 213, 0.25);
}

.site-nav {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 58px;
  background: rgba(8, 12, 16, 0.96);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 12px;
  display: none;
  gap: 4px;
  max-height: calc(100vh - 88px);
  overflow-y: auto;
}

.site-nav.open {
  display: grid;
}

.site-nav a {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

main {
  padding: 18px;
}

.section {
  margin: 14px auto;
  max-width: 1200px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero.section {
  overflow: hidden;
}

.hero {
  display: grid;
  gap: 20px;
  padding: 24px;
  position: relative;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(460px 280px at 80% 18%, rgba(198, 167, 104, 0.2), transparent),
    radial-gradient(380px 220px at 20% 70%, rgba(154, 53, 31, 0.18), transparent);
  z-index: -1;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 8vw, 4.5rem);
  line-height: 0.94;
  letter-spacing: 0.04em;
}

.hero-title span {
  color: var(--gold);
}

.hero-subtitle {
  margin: 14px 0 0;
  color: var(--muted);
  max-width: 54ch;
  font-size: 1rem;
}

.hero-tags {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.hero-tags span {
  border: 1px solid rgba(198, 167, 104, 0.35);
  background: rgba(198, 167, 104, 0.08);
  padding: 10px 12px;
  border-radius: 999px;
  width: fit-content;
  font-size: 0.8rem;
  color: #efe3c7;
}

.hero-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-links a {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.74rem;
  color: #ddd7cb;
  background: rgba(255, 255, 255, 0.03);
}

.hero-links a:hover {
  border-color: rgba(198, 167, 104, 0.55);
  color: #fff4d6;
}

.hero-cta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.lang-btn:focus-visible,
.menu-btn:focus-visible {
  outline: 2px solid rgba(198, 167, 104, 0.7);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(120deg, #b28d56, #d5bb86);
  color: #121212;
  box-shadow: 0 12px 30px rgba(198, 167, 104, 0.35);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f4eee5;
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  display: grid;
  gap: 14px;
  position: relative;
  padding-bottom: 10px;
  align-content: start;
  min-width: 0;
}

.hero-main-frame {
  margin: 0;
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 50% 18%, rgba(198, 167, 104, 0.15), rgba(8, 12, 18, 0.98));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: 8%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(198, 167, 104, 0.44) 0%, rgba(198, 167, 104, 0) 72%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  display: block;
}

.hero-main {
  border-radius: 22px;
  height: clamp(280px, 54vw, 500px);
  object-fit: cover;
  object-position: center 22%;
}

.fit-contain {
  object-fit: contain;
  object-position: center;
}

.hero-float {
  width: clamp(126px, 32vw, 210px);
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  position: absolute;
  right: max(8px, 1.2vw);
  bottom: max(8px, 1.2vw);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  background: #0f1419;
  display: block;
  object-fit: cover;
  object-position: center 12%;
  max-height: 44%;
}

.intro-video {
  padding: 24px;
}

.intro-video .section-head {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 6px;
}

.intro-video .eyebrow {
  margin: 0 auto;
}

.video-frame {
  position: relative;
  margin: 16px auto 0;
  width: min(560px, 100%);
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  overflow: hidden;
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #080d12;
  isolation: isolate;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: -14%;
  background-image: var(--video-bg);
  background-size: cover;
  background-position: center;
  filter: blur(26px) saturate(1.15);
  transform: scale(1.08);
  opacity: 0.95;
}

.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 9, 13, 0.88) 0%,
    rgba(6, 9, 13, 0.15) 28%,
    rgba(6, 9, 13, 0.15) 72%,
    rgba(6, 9, 13, 0.88) 100%
  );
  z-index: 1;
}

.intro-video-player {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  background: transparent;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.38);
}

.video-actions {
  margin-top: 14px;
  display: flex;
  justify-content: center;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 18px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.metric-number {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 6vw, 2.9rem);
  color: var(--gold);
}

.metric-label {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.story,
.craft,
.gallery,
.services,
.work,
.recognition,
.contact {
  padding: 24px;
}

.section-head h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.4rem, 5vw, 2.5rem);
  line-height: 1.1;
}

.timeline {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.timeline-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.year {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.timeline-item h3 {
  margin: 8px 0;
  font-size: 1.06rem;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.craft-grid,
.services-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.craft-card,
.service-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.craft-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  background: #0f1419;
}

.craft-card h3,
.service-card h3 {
  margin: 14px 14px 8px;
}

.craft-card p,
.service-card p {
  margin: 0 14px 14px;
  color: var(--muted);
}

.gallery-grid {
  margin-top: 18px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-tile {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  padding: 0;
  cursor: pointer;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile.wide {
  grid-column: span 2;
}

.service-card {
  padding-bottom: 10px;
}

.service-card--links {
  padding: 8px;
}

.service-card--links a {
  display: block;
  margin: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ddd5c6;
  font-size: 0.9rem;
}

.service-card--links a:hover {
  border-color: rgba(198, 167, 104, 0.5);
}

.profile-panels {
  margin-top: 14px;
  display: grid;
  gap: 14px;
}

.profile-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.profile-card h3 {
  margin: 0 0 10px;
}

.profile-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.profile-card ul {
  margin: 0;
  padding-left: 18px;
}

.profile-card li {
  margin: 6px 0;
}

.work-layout {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.work-image img {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: clamp(250px, 45vw, 470px);
  object-fit: cover;
}

.work-copy {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.work-copy p {
  margin-top: 0;
  color: var(--muted);
}

.work-copy ul {
  margin: 12px 0;
  padding-left: 18px;
}

.work-copy li {
  margin: 6px 0;
}

.mission-mini {
  margin-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
}

.mission-mini h3 {
  margin: 0 0 8px;
  font-size: 0.94rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.venue-columns {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}

.venue-list {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 10px 12px;
}

.venue-list summary {
  cursor: pointer;
  color: #efe0c2;
  font-weight: 600;
  margin-bottom: 8px;
}

.venue-list ul {
  margin: 8px 0;
  padding-left: 18px;
}

.venue-list li {
  margin: 5px 0;
  color: var(--muted);
}

.venue-list p {
  color: var(--muted);
  margin: 8px 0 4px;
}

.marquee {
  margin-top: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 9px 0;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  gap: 18px;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  color: #efe0c2;
  border: 1px solid rgba(198, 167, 104, 0.4);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.recognition-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
}

.recognition-card,
.certificate {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.recognition-card h3 {
  margin: 0;
}

.recognition-card p {
  color: var(--muted);
}

.note {
  font-size: 0.82rem;
}

.note code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

.certificate {
  margin: 0;
}

.certificate img {
  width: 100%;
  border-radius: 14px;
  height: clamp(230px, 40vw, 420px);
  object-fit: contain;
  background: rgba(9, 14, 18, 0.95);
}

.certificate figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-box {
  display: grid;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(130deg, rgba(198, 167, 104, 0.09), rgba(255, 255, 255, 0.02));
}

.avatar {
  width: 98px;
  height: 98px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.contact-box h2 {
  margin: 4px 0 8px;
  font-family: "Cinzel", serif;
  line-height: 1.15;
}

.contact-box p {
  margin: 0;
  color: var(--muted);
}

.contact-actions {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  padding: 26px 20px 100px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.quick-dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 10px;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(7, 12, 16, 0.88);
  backdrop-filter: blur(10px);
}

.quick-dock a {
  text-align: center;
  font-size: 0.76rem;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e6dece;
  background: rgba(255, 255, 255, 0.03);
}

.quick-dock a:hover {
  border-color: rgba(198, 167, 104, 0.45);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  background: rgba(2, 4, 7, 0.9);
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-image {
  max-width: min(980px, 95vw);
  max-height: 76vh;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.lightbox-caption {
  color: #d9d0bf;
  margin: 0;
  text-align: center;
}

.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 8px 14px;
  font-weight: 600;
}

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
}

html[dir="rtl"] .site-header {
  direction: rtl;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-head,
html[dir="rtl"] .timeline-item,
html[dir="rtl"] .service-card,
html[dir="rtl"] .profile-card,
html[dir="rtl"] .work-copy,
html[dir="rtl"] .recognition-card,
html[dir="rtl"] .contact-box,
html[dir="rtl"] .venue-list {
  text-align: right;
}

html[dir="rtl"] .profile-card ul,
html[dir="rtl"] .work-copy ul,
html[dir="rtl"] .venue-list ul {
  padding-right: 18px;
  padding-left: 0;
}

@media (min-width: 800px) {
  .menu-btn {
    display: none;
  }

  .lang-switch {
    margin-left: 0;
  }

  .site-nav {
    position: static;
    border: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    background: transparent;
    gap: 6px;
    width: auto;
    max-height: none;
    overflow: visible;
  }

  main {
    padding: 20px 24px;
  }

  .hero {
    grid-template-columns: 1.08fr 1fr;
    align-items: center;
    padding: 36px;
  }

  .hero-visual {
    padding-bottom: 8px;
  }

  .hero-float {
    right: 12px;
    bottom: 12px;
    width: clamp(150px, 20vw, 210px);
    max-height: 46%;
  }

  .video-frame {
    width: min(680px, 100%);
    aspect-ratio: 16 / 10;
  }

  .video-frame::after {
    background: linear-gradient(
      90deg,
      rgba(6, 9, 13, 0.9) 0%,
      rgba(6, 9, 13, 0.18) 25%,
      rgba(6, 9, 13, 0.18) 75%,
      rgba(6, 9, 13, 0.9) 100%
    );
  }

  .intro-video-player {
    max-width: 420px;
  }

  .metrics {
    grid-template-columns: repeat(4, 1fr);
    padding: 24px;
  }

  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .craft-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .profile-panels {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-tile.wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .work-layout {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

  .venue-columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .recognition-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-box {
    grid-template-columns: auto 1fr;
    padding: 24px;
  }

  .quick-dock {
    display: none;
  }

  .site-footer {
    padding-bottom: 36px;
  }
}

