@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700;800&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #050505;
  --ink-2: #0b0b0a;
  --ink-3: #15130f;
  --gold: #bc9853;
  --gold-light: #e0c47e;
  --bronze: #8f6c33;
  --cream: #090909;
  --white: #f8f5ed;
  --muted: #aaa39a;
  --text: #eee9df;
  --line: rgba(196, 160, 88, 0.30);
  --panel: rgba(255, 255, 255, 0.03);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
  --radius: 20px;
  --container: 1180px;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 95px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: #090706;
}

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

.section {
  position: relative;
  padding: 110px 0;
}

.section--compact {
  padding: 76px 0;
}

.section--soft {
  background:
    radial-gradient(circle at 8% 15%, rgba(188, 152, 83, 0.08), transparent 28%),
    linear-gradient(180deg, #080808, #11100d);
}

.section--light {
  background:
    radial-gradient(circle at 92% 12%, rgba(188, 152, 83, 0.07), transparent 30%),
    var(--cream);
  color: var(--text);
}

.section--light .eyebrow {
  color: var(--gold-light);
}

.section--light .section-heading,
.section--light h2,
.section--light h3 {
  color: var(--white);
}

.section--light .section-copy {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

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

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

.section-heading.center .eyebrow::after {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, currentColor, transparent);
  content: "";
}

h1,
h2,
h3,
h4 {
  font-family: "Cinzel", serif;
  line-height: 1.17;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.25rem;
}

.section-copy {
  max-width: 670px;
  margin-top: 18px;
  color: var(--muted);
}

.gold-text {
  color: var(--gold-light);
  background: linear-gradient(135deg, #fff2b4 0%, #dba845 44%, #a66121 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.3s ease;
}

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

.btn:hover svg {
  transform: translateX(3px);
}

.btn--gold {
  background: linear-gradient(135deg, #f5d77e, #c88c2e);
  box-shadow: 0 14px 34px rgba(197, 136, 37, 0.23);
  color: #151006;
}

.btn--gold:hover {
  box-shadow: 0 18px 42px rgba(197, 136, 37, 0.38);
}

.btn--outline {
  border-color: rgba(244, 207, 117, 0.55);
  background: rgba(10, 9, 8, 0.4);
  color: var(--gold-light);
  backdrop-filter: blur(10px);
}

.btn--outline:hover {
  border-color: var(--gold-light);
  background: rgba(212, 168, 71, 0.12);
}

.btn--dark {
  background: #15110c;
  color: #fff;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold-light);
  color: #080706;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72));
  backdrop-filter: blur(16px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(6, 6, 6, 0.98);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  position: relative;
  z-index: 3;
  display: flex;
  width: 126px;
  height: 100%;
  flex: 0 0 126px;
  align-items: center;
}

.brand img {
  position: absolute;
  width: 126px;
  max-width: none;
  height: 106px;
  object-fit: contain;
  left: 0;
  top: 50%;
  transform: translateY(-47%);
  filter: drop-shadow(0 9px 18px rgba(0, 0, 0, 0.45));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding: 12px 13px;
  color: #e6dfd2;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.035em;
  transition: color 0.25s ease;
}

.nav-link::after {
  position: absolute;
  right: 13px;
  bottom: 6px;
  left: 13px;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  padding: 11px 19px;
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span {
  margin: 5px 0;
}

.menu-toggle.is-open::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span {
  opacity: 0;
}

.menu-toggle.is-open::after {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  background: #070604;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.83) 37%, rgba(5, 5, 5, 0.38) 69%, rgba(5, 5, 5, 0.62) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.06), #070707 99%);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: radial-gradient(rgba(240, 198, 95, 0.28) 0.8px, transparent 0.8px);
  background-size: 8px 8px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 66%);
  opacity: 0.15;
}

.hero-video {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #070707;
}

.hero-video-toggle {
  position: absolute;
  z-index: 5;
  bottom: 38px;
  left: max(24px, calc((100vw - var(--container)) / 2));
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 7, 6, 0.72);
  color: #eee7da;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(12px);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.hero-video-toggle:hover {
  border-color: var(--gold-light);
  background: rgba(8, 7, 6, 0.9);
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 820px;
  padding: 154px 0 96px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
  content: "";
}

.hero h1 {
  max-width: 820px;
  text-wrap: balance;
  text-shadow: 0 6px 36px rgba(0, 0, 0, 0.66);
}

.hero p {
  max-width: 650px;
  margin-top: 25px;
  color: #d1cabd;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
}

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

.hero-badge {
  position: absolute;
  z-index: 4;
  right: max(28px, calc((100vw - var(--container)) / 2));
  bottom: 48px;
  display: flex;
  width: 210px;
  align-items: center;
  gap: 14px;
  padding: 15px 17px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 9, 7, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-badge__icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #f1ce78, #a9661f);
  color: #120d06;
}

.hero-badge strong {
  display: block;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 0.86rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.73rem;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 35px;
  left: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  transform: translateX(-50%);
}

.scroll-cue::before {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, var(--gold));
  content: "";
  animation: scrollPulse 1.7s ease-in-out infinite;
}

/* Inner hero */
.page-hero {
  position: relative;
  display: grid;
  min-height: 530px;
  align-items: end;
  overflow: hidden;
  background: #080706;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 6, 6, 0.95), rgba(6, 6, 6, 0.54)),
    linear-gradient(180deg, rgba(6, 6, 6, 0.05), #080706 100%),
    var(--page-image, none) center 40% / cover no-repeat;
  content: "";
  transform: scale(1.02);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 160px 0 80px;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5rem);
}

.page-hero p {
  max-width: 660px;
  margin-top: 18px;
  color: #cec6b8;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: #e8e0d3;
}

/* Grids and cards */
.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.feature-card,
.award-card,
.value-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.16);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.award-card:hover,
.value-card:hover {
  border-color: rgba(240, 202, 111, 0.62);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  transform: translateY(-8px);
}

.feature-card {
  padding: 30px 26px;
}

.card-icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 23px;
  place-items: center;
  border: 1px solid rgba(235, 195, 104, 0.25);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(231, 185, 78, 0.19), rgba(166, 91, 27, 0.07));
  color: var(--gold-light);
  font-size: 1.25rem;
}

.card-icon svg {
  width: 23px;
  height: 23px;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p,
.award-card p,
.value-card p {
  color: var(--muted);
  font-size: 0.91rem;
}

.award-card {
  min-height: 235px;
  padding: 28px;
}

.award-card::after {
  position: absolute;
  right: -25px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(229, 182, 75, 0.16);
  border-radius: 50%;
  content: "";
}

.award-card__number {
  display: block;
  margin-bottom: 30px;
  color: rgba(240, 202, 111, 0.62);
  font-family: "Cinzel", serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.award-card h3 {
  max-width: 250px;
  margin-bottom: 10px;
}

.value-card {
  padding: 27px;
}

.value-card h3 {
  margin: 16px 0 9px;
}

/* Split layouts */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 90px);
}

.split--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.media-frame {
  position: relative;
  min-height: 520px;
}

.media-frame img {
  width: 100%;
  height: 520px;
  border-radius: 26px;
  object-fit: cover;
}

.media-frame::before {
  position: absolute;
  z-index: -1;
  inset: 28px -22px -22px 28px;
  border: 1px solid rgba(227, 182, 78, 0.38);
  border-radius: 26px;
  content: "";
}

.media-frame__badge {
  position: absolute;
  right: -22px;
  bottom: 30px;
  max-width: 230px;
  padding: 23px;
  border: 1px solid rgba(238, 195, 94, 0.34);
  border-radius: 16px;
  background: rgba(9, 8, 7, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.media-frame__badge strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
}

.media-frame__badge span {
  color: var(--muted);
  font-size: 0.82rem;
}

.media-frame--contain,
.media-frame--portrait {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 22%, rgba(224, 174, 63, 0.12), transparent 34%),
    #0b0907;
}

.media-frame--contain img,
.media-frame--portrait img {
  padding: 14px;
  object-fit: contain;
}

.media-frame--portrait,
.media-frame--portrait img {
  min-height: 680px;
  height: 680px;
}

.media-frame--contain::before,
.media-frame--portrait::before {
  display: none;
}

.check-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d8d0c2;
}

.check-list__icon {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(218, 170, 61, 0.16);
  color: var(--gold-light);
  font-size: 0.72rem;
}

.section--light .check-list li {
  color: var(--muted);
}

/* Upcoming event */
.event-spotlight {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98), rgba(7, 7, 7, 0.75) 53%, rgba(7, 7, 7, 0.2)),
    var(--event-image) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.event-spotlight__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: clamp(40px, 7vw, 78px);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 13px;
  border: 1px solid rgba(242, 203, 111, 0.34);
  border-radius: 999px;
  background: rgba(212, 168, 71, 0.1);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 0 6px rgba(241, 206, 120, 0.1);
  content: "";
}

.event-spotlight h2 {
  max-width: 640px;
}

.event-spotlight p {
  max-width: 600px;
  margin-top: 18px;
  color: #c9c1b3;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 25px;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #eee7da;
  font-size: 0.86rem;
}

.event-meta i {
  color: var(--gold-light);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid rgba(211, 164, 61, 0.18);
  border-radius: 18px;
}

.gallery-item:first-child,
.gallery-item:nth-child(5) {
  grid-column: span 8;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease, filter 0.45s ease;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 7, 7, 0.83));
  content: "";
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 16px;
  left: 20px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 0.92rem;
}

.gallery-item:hover img {
  filter: saturate(1.08);
  transform: scale(1.075);
}

/* UAE supplied awards showcase */
.uae-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.uae-showcase-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018));
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.showcase-card:hover {
  border-color: rgba(240, 202, 111, 0.58);
  transform: translateY(-7px);
}

.showcase-card__image {
  display: grid;
  aspect-ratio: 3 / 4;
  padding: 10px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 12%, rgba(229, 181, 72, 0.12), transparent 34%),
    #090806;
}

.showcase-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-card__image img {
  transform: scale(1.025);
}

.showcase-card--logo .showcase-card__image {
  background: #fff;
}

.showcase-card__body {
  padding: 20px 20px 22px;
}

.showcase-card__body small {
  display: block;
  margin-bottom: 7px;
  color: var(--gold-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-card__body h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.showcase-card__body p {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat {
  position: relative;
  padding: 42px 20px;
  text-align: center;
}

.stat:not(:last-child)::after {
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--line);
  content: "";
}

.stat strong {
  display: block;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Testimonials */
.testimonial-shell {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

.testimonial-track {
  position: relative;
  min-height: 330px;
}

.testimonial {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: clamp(34px, 6vw, 66px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02));
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonial.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.quote-mark {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.65;
}

.testimonial blockquote {
  margin-top: 20px;
  color: #f0eadd;
  font-family: "Cinzel", serif;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.testimonial footer {
  margin-top: 22px;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: #5c5140;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dot.active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

/* Timeline */
.timeline {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 900px;
  margin-inline: auto;
}

.timeline::before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 29px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(212, 168, 71, 0.08));
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding-bottom: 34px;
}

.timeline-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(237, 196, 100, 0.42);
  border-radius: 50%;
  background: #0e0c09;
  color: var(--gold-light);
  font-family: "Cinzel", serif;
}

.timeline-content {
  padding: 5px 0 0;
}

.timeline-content h3 {
  margin-bottom: 7px;
}

.timeline-content p {
  color: var(--muted);
}

/* Forms */
.form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
}

.contact-panel,
.form-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.018));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.contact-panel {
  padding: clamp(28px, 4vw, 40px);
}

.contact-panel h3 {
  margin-bottom: 10px;
}

.contact-panel > p {
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-item__icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border-radius: 12px;
  background: rgba(214, 166, 54, 0.12);
  color: var(--gold-light);
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item address {
  color: #fff;
  font-size: 0.9rem;
  font-style: normal;
}

.form-card {
  padding: clamp(28px, 5vw, 48px);
}

.form-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.form-card > p {
  margin-bottom: 28px;
  color: var(--muted);
}

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

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

.field label {
  display: block;
  margin-bottom: 7px;
  color: #e9e0d1;
  font-size: 0.77rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(230, 187, 89, 0.18);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.045);
  color: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input,
.field select {
  min-height: 50px;
  padding: 0 15px;
}

.field textarea {
  min-height: 130px;
  padding: 13px 15px;
  resize: vertical;
}

.field select option {
  background: #12100d;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 168, 71, 0.09);
}

.field-error {
  min-height: 18px;
  margin-top: 5px;
  color: #ff9e8b;
  font-size: 0.72rem;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  color: var(--gold-light);
  font-size: 0.83rem;
}

.map {
  height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  filter: grayscale(0.25) sepia(0.14);
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin-inline: auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 21px;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-family: "Cinzel", serif;
  text-align: left;
}

.faq-question span:last-child {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-light);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 21px 21px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-question span:last-child {
  transform: rotate(45deg);
}

/* People */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.person-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.035);
}

.person-avatar {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 21px;
  place-items: center;
  border: 1px solid rgba(238, 194, 91, 0.32);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(238, 194, 91, 0.16), rgba(157, 84, 24, 0.08));
  color: var(--gold-light);
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
}

.person-card h3 {
  margin-bottom: 5px;
}

.person-card small {
  color: var(--gold-light);
}

.person-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

/* CTA */
.cta {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 20%, rgba(240, 199, 100, 0.18), transparent 27%),
    linear-gradient(135deg, #17120c, #0b0a08);
  box-shadow: var(--shadow);
  text-align: center;
}

.cta::before,
.cta::after {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(225, 177, 69, 0.13);
  border-radius: 50%;
  content: "";
}

.cta::before {
  top: -130px;
  left: -80px;
}

.cta::after {
  right: -80px;
  bottom: -150px;
}

.cta__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-inline: auto;
  padding: clamp(48px, 8vw, 84px) 24px;
}

.cta p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
}

.cta .btn-row {
  justify-content: center;
}

/* Footer */
.site-footer {
  position: relative;
  padding: 75px 0 24px;
  border-top: 1px solid var(--line);
  background: #060606;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.75fr 1.1fr;
  gap: 48px;
}

.footer-brand img {
  width: 190px;
  margin: -38px 0 -8px;
}

.footer-brand p {
  max-width: 360px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 20px;
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 0.94rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.footer-contact li {
  color: var(--muted);
  font-size: 0.84rem;
  transition: color 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold-light);
}

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

.footer-contact li {
  display: flex;
  gap: 10px;
}

.footer-contact i {
  width: 18px;
  color: var(--gold-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #827a6e;
  font-size: 0.74rem;
}

/* Floating actions */
.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(12, 85, 39, 0.33);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float i {
  font-size: 1.3rem;
}

.whatsapp-float:hover {
  box-shadow: 0 16px 38px rgba(12, 85, 39, 0.44);
  transform: translateY(-4px);
}

.back-to-top {
  position: fixed;
  z-index: 890;
  right: 28px;
  bottom: 86px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(10, 9, 8, 0.92);
  color: var(--gold-light);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.no-results-note {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

/* Utility */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mt-24 {
  margin-top: 24px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-56 {
  margin-top: 56px;
}

.max-700 {
  max-width: 700px;
}

.mx-auto {
  margin-inline: auto;
}

.justify-center {
  justify-content: center;
}
