/* ============================================
   JAO DA GROUP — Hub site
   Premium dark theme with eastern accents
============================================ */

:root {
  --bg: #0b0b0d;
  --bg-2: #131316;
  --bg-3: #1c1c20;
  --line: rgba(245, 239, 230, 0.08);
  --line-strong: rgba(245, 239, 230, 0.18);

  --text: #f5efe6;
  --text-dim: rgba(245, 239, 230, 0.7);
  --text-mute: rgba(245, 239, 230, 0.5);

  --gold: #c9a961;
  --gold-soft: #8a7340;
  --copper: #d4a574;

  --maxw: 1240px;
  --gap: clamp(16px, 2.5vw, 28px);

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 32px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--gold); color: #000; padding: 10px 14px;
  border-radius: var(--r-sm); z-index: 999;
}
.skip-link:focus { top: 12px; }

/* ============ TYPOGRAPHY ============ */
.kicker {
  font-family: 'Inter', sans-serif;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 64px);
}
.section-lead { color: var(--text-dim); font-size: clamp(15px, 1.4vw, 17px); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: #14110a;
}
.btn--primary:hover { background: #d8b870; transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--link {
  padding: 10px 0;
  color: var(--text);
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--line-strong);
}
.btn--link:hover { color: var(--gold); border-color: var(--gold); }

/* ============ HEADER ============ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 90;
  padding: 16px 0;
  background: rgba(11, 11, 13, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: padding .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.header.is-scrolled {
  padding: 10px 0;
  background: rgba(11, 11, 13, 0.85);
  border-bottom-color: var(--line);
}
.header__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text);
  margin-right: auto;
}
.logo__mark { color: var(--gold); display: inline-flex; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.logo__sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-top: 4px;
}

.nav {
  display: flex; gap: 28px;
}
.nav a {
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav a:hover { color: var(--text); }
.nav a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.burger {
  display: none;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 10px;
  width: 42px; height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 22px;
  z-index: 89;
  overflow-y: auto;
}
.mobile-menu a {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--text);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11,11,13,0.65) 0%, rgba(11,11,13,0.55) 35%, rgba(11,11,13,0.85) 100%),
    url('/images/hero/hero-bg.jpg') center/cover no-repeat,
    var(--bg);
}
.hero__pattern { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.25; }
.hero__noise {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.012) 1px, transparent 0);
  background-size: 3px 3px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.35;
  pointer-events: none;
  animation: float 18s ease-in-out infinite;
}
.hero__glow--1 {
  background: radial-gradient(circle, rgba(201, 169, 97, 0.5), transparent 70%);
  top: -200px; left: -150px;
}
.hero__glow--2 {
  background: radial-gradient(circle, rgba(163, 61, 61, 0.4), transparent 70%);
  bottom: -200px; right: -150px;
  animation-delay: -9s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero__content { position: relative; z-index: 2; max-width: 880px; margin: 0; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 28px;
}
.hero__eyebrow .dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
}
.hero__title em {
  font-style: italic;
  color: var(--copper);
  font-weight: 400;
}
.hero__title .accent {
  display: inline-block;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.hero__title .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.4;
}

.hero__lead {
  max-width: 580px;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--text-dim);
  margin: 0 0 36px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center;
  margin-bottom: clamp(50px, 8vw, 90px);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 4vw, 48px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 720px;
}
.hero__stats > div {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__stats b {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  color: var(--text);
  line-height: 1;
}
.hero__stats span {
  font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero__scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 24px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  display: block;
  width: 2px; height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}
@media (min-width: 900px) {
  .hero__scroll { display: flex; }
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: clamp(80px, 12vw, 140px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.manifesto__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.manifesto__label { padding-top: 8px; }
.manifesto__text p {
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 24px;
  font-weight: 300;
}
.manifesto__text p:last-child { margin-bottom: 0; }
.manifesto__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px) !important;
  line-height: 1.4 !important;
  color: var(--gold) !important;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
}
.manifesto__quote span {
  font-size: 1.5em;
  vertical-align: -0.15em;
  opacity: 0.5;
  margin: 0 4px;
}

/* ============ PROJECTS ============ */
.projects {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}

.projects__tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: clamp(32px, 5vw, 56px);
}
.chip {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text-dim);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
}
.chip:hover { color: var(--text); border-color: var(--gold-soft); }
.chip.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: #14110a;
  font-weight: 500;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}
.card {
  --accent: var(--gold);
  --accent-soft: #2a2a2e;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s var(--ease), opacity .3s var(--ease);
  isolation: isolate;
}

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

.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--text);
}
.card__media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.card__art {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.card:hover .card__art { transform: scale(1.05); }
.card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,11,13,0.7) 100%);
}

.badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(11, 11, 13, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 2;
}

.card__body {
  padding: clamp(20px, 2vw, 28px);
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}
.card__title i {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}
.card__sub {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0;
  opacity: 0.85;
}
.card__desc {
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.card__cta {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.card__cta em {
  transition: transform .3s var(--ease);
  font-style: normal;
  color: var(--accent);
}
.card:hover .card__cta em { transform: translateX(6px); }

/* ============ GEO ============ */
.geo {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.geo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
}

.geo-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  isolation: isolate;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.geo-card:hover { transform: translateY(-4px); border-color: var(--gold-soft); }

.geo-card__media {
  position: absolute; inset: 0;
  z-index: -1;
}
.geo-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.geo-card:hover .geo-card__media img { transform: scale(1.05); }
.geo-card__media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.2) 0%, rgba(11,11,13,0.55) 45%, rgba(11,11,13,0.92) 100%);
}

.geo-card__body {
  position: relative;
  padding: clamp(22px, 2.4vw, 32px);
  color: var(--text);
}

.geo-card__num {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.geo-card__num b {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(52px, 5.6vw, 76px);
  line-height: 0.85;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.geo-card__num span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}

.geo-card__title {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(26px, 2.4vw, 34px);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}

.geo-card__time {
  font-size: 13px;
  color: var(--copper);
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

.geo-card__list {
  list-style: none;
  padding: 16px 0 0;
  margin: 0;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  display: flex; flex-direction: column; gap: 6px;
}
.geo-card__list li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============ LOYALTY ============ */
.loyalty {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.loyalty::before {
  content: '';
  position: absolute;
  top: 20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15), transparent 70%);
  pointer-events: none;
}
.loyalty__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.loyalty__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex; align-items: center; justify-content: center;
}
.loy-card {
  position: absolute;
  border-radius: 22px;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform .6s var(--ease);
}
.loy-card--1 {
  width: 70%; aspect-ratio: 1.586/1;
  background: linear-gradient(135deg, #1a1a1e, #2a2520);
  border: 1px solid rgba(201, 169, 97, 0.3);
  transform: rotate(-6deg) translate(-15%, -10%);
  z-index: 2;
}
.loy-card--2 {
  width: 60%; aspect-ratio: 1.586/1;
  background: linear-gradient(135deg, var(--gold), var(--copper));
  color: #1a1410;
  transform: rotate(8deg) translate(20%, 20%);
  z-index: 1;
}
.loyalty:hover .loy-card--1 { transform: rotate(-8deg) translate(-18%, -12%); }
.loyalty:hover .loy-card--2 { transform: rotate(10deg) translate(22%, 22%); }

.loy-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.loy-card__brand {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.loy-card__chip {
  display: block;
  width: 36px; height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  border-radius: 5px;
  position: relative;
}
.loy-card__chip::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}
.loy-card__num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(15px, 1.8vw, 22px);
  letter-spacing: 0.1em;
}
.loy-card__bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.loy-card__bottom b {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.loyalty__lead {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--text-dim);
  margin: 0 0 24px;
}
.loyalty__lead a {
  color: var(--gold);
  border-bottom: 1px solid currentColor;
}
.loyalty__bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.loyalty__bullets li {
  display: flex; gap: 14px;
  color: var(--text-dim);
  align-items: baseline;
}
.loyalty__bullets li span {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* ============ EVENTS ============ */
.events {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.events__list {
  display: flex; flex-direction: column;
}
.event {
  display: grid;
  grid-template-columns: 180px 1fr 220px auto;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: center;
  transition: padding .3s var(--ease);
  position: relative;
}
.event:last-child { border-bottom: 1px solid var(--line); }
.event:hover { padding-left: 16px; }
.event:hover::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 4px; height: 60%;
  background: var(--gold);
  transform: translateY(-50%);
}

.event__date { display: flex; flex-direction: column; gap: 2px; }
.event__date b {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
}
.event__date span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.event__body h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 26px);
  margin: 0 0 6px;
}
.event__body p { margin: 0; color: var(--text-dim); font-size: 14px; }

.event__where {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-align: right;
}

.event__link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text);
  transition: all .3s var(--ease);
}
.event__link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #14110a;
  transform: rotate(-45deg);
}

.event--accent { background: linear-gradient(90deg, rgba(212, 165, 116, 0.06), transparent); }
.event--accent .event__date b { color: var(--copper); }

/* ============ CONTACTS ============ */
.contacts {
  padding: clamp(80px, 12vw, 140px) 0;
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contacts__copy p { color: var(--text-dim); margin: 0 0 32px; max-width: 460px; }
.contacts__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.contacts__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.contacts__list span {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.contacts__list a {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  transition: color .2s var(--ease);
}
.contacts__list a:hover { color: var(--gold); }

/* Form */
.form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
}
.form__row { margin-bottom: 16px; }
.form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--text);
  font-size: 15px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 169, 97, 0.04);
}
.field textarea { resize: vertical; min-height: 90px; font-family: inherit; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a961' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form__row--submit {
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  margin-top: 24px; margin-bottom: 0;
}
.form__legal {
  margin: 0;
  font-size: 12px;
  color: var(--text-mute);
  flex: 1;
  min-width: 220px;
}
.form__legal a { border-bottom: 1px solid var(--line-strong); }
.form__legal a:hover { color: var(--gold); border-color: var(--gold); }
.form__status {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
  color: var(--gold);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 48px;
}
.footer__col p { color: var(--text-mute); font-size: 14px; line-height: 1.6; margin: 12px 0 0; }
.footer__col b {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  color: var(--text-dim);
  font-size: 14px;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--gold); }

.logo--footer { margin-bottom: 4px; }
.logo--footer .logo__title { font-size: 28px; }

.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer__bottom small { color: var(--text-mute); font-size: 12px; }

/* ============ ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .card,
  .card--feature {
    grid-column: span 1;
  }
  .geo__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .geo-card { min-height: 380px; }
  .loyalty__inner,
  .contacts__grid,
  .manifesto__grid {
    grid-template-columns: 1fr;
  }
  .manifesto__label { padding-top: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .event {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .event__date { grid-row: 1; grid-column: 1; }
  .event__link { grid-row: 1 / span 3; grid-column: 2; align-self: center; }
  .event__body { grid-row: 2; grid-column: 1; }
  .event__where { grid-row: 3; grid-column: 1; text-align: left; }
}

@media (max-width: 768px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .hero { padding-top: 120px; }
  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .projects__grid { grid-template-columns: 1fr; }
  .form__row--2 { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .loyalty::before { display: none; }
  .loyalty__media {
    max-width: 360px;
    margin: 0 auto;
    aspect-ratio: 4/3;
    overflow: visible;
  }
  .loy-card--1 { transform: rotate(-4deg) translate(-10%, -8%); width: 78%; }
  .loy-card--2 { transform: rotate(5deg) translate(14%, 14%); width: 64%; }
  .loyalty__inner { gap: 28px; }
  .event {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .event__date { grid-row: auto; grid-column: 1; flex-direction: row; align-items: baseline; gap: 12px; }
  .event__body { grid-row: auto; grid-column: 1; }
  .event__where { grid-row: auto; grid-column: 1; text-align: left; }
  .event__link {
    position: absolute;
    top: 24px; right: 0;
    width: 38px; height: 38px;
  }
  .event:hover::before { display: none; }
  .contacts__list li {
    grid-template-columns: 80px 1fr;
    gap: 8px;
  }
  .form { padding: 22px; }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .hero__title { font-size: 44px; }
  .section-title { font-size: 32px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* selection */
::selection { background: var(--gold); color: #14110a; }
