﻿/* ===========================================================
   MIDAENT - Simple, traditional CSS
   Works on any shared host (incl. Hostinger) and all devices.
   =========================================================== */

/* -------- Reset -------- */
 { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #0a0a0c;
  color: #f5f1e6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
iframe { border: 0; }
::selection { background: #e8c468; color: #1a160a; }

/* ============================================================
   SPLASH SCREEN - shows first with logo + loadbar
   ============================================================ */
#intro {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #000;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 0.8s ease;
}
#splash {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: #000;
  z-index: 2;
  display: table;
  text-align: center;
  transition: opacity 0.7s ease;
}



#splash .splash-cell {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 20px;
}
#splash .splash-logo {
  width: 320px;
  max-width: 80%;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  animation: splashFade 1s ease;
}
#splash .splash-loader {
  width: 280px;
  max-width: 80%;
  height: 5px;
  background: #333;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}
#splash .splash-loader-fill {
  width: 0;
  height: 100%;
  background: #d4af37;
  animation: splashLoad 2s linear forwards;
}
@keyframes splashLoad {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes splashFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
#splash.is-hidden { display: none; }

/* ============================================================
   INTRO VIDEO - full-screen video after splash
   ============================================================ */
#showreel {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
  z-index: 1;
}

@media (max-width: 768px) {
  #showreel {
    object-fit: contain;
    background: #000;
  }
}

#playGate {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  z-index: 3;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.45);
}
#playGate.is-shown { display: flex; }
#playBtn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 30px;
  background: #e8c468;
  color: #1a160a;
  border: 0;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
  transition: transform 0.2s, background 0.2s;
}
#playBtn:hover { background: #f3d27a; transform: translateY(-2px); }
.playBtn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a160a;
  color: #e8c468;
}
.playBtn__text { font-size: 16px; }
.playBtn__sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #1a160a;
  opacity: 0.7;
  text-transform: none;
}
.skipLink {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  background: rgba(10, 10, 12, 0.7);
  color: #f5f1e6;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: none;
}
.skipLink.is-shown { display: inline-block; }
.skipLink:hover { background: #e8c468; color: #1a160a; }


/* When intro is showing, freeze the page underneath */
.intro-active { overflow: hidden; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #0a0a0c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.nav__brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b9b3a6;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.is-active { color: #e8c468; }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: #e8c468;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }

/* Hamburger toggle - hidden on desktop */
.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #f5f1e6;
  transition: transform 0.3s, opacity 0.3s;
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  padding: 80px 0;
}
.section--alt { background: #111116; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: #e8c468;
  margin-bottom: 14px;
}
.title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 14px;
  color: #f5f1e6;
}
.title em {
  font-style: italic;
  color: #e8c468;
}
.sub {
  color: #b9b3a6;
  max-width: 640px;
  margin: 0 0 28px;
  font-size: 16px;
}
.head--center { text-align: center; }
.head--center .sub { margin-left: auto; margin-right: auto; }
.head--center .btn { margin-top: 8px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 13px 24px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.btn--primary {
  background: #e8c468;
  color: #1a160a;
}
.btn--primary:hover {
  background: #f3d27a;
  transform: translateY(-2px);
}
.btn--ghost {
  background: transparent;
  color: #f5f1e6;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover {
  background: #f5f1e6;
  color: #0a0a0c;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0c;
}
.hero__media {
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero__media::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(10,10,12,0.55) 0%, rgba(10,10,12,0.15) 35%, rgba(10,10,12,0.94) 100%),
              linear-gradient(90deg, rgba(10,10,12,0.7) 0%, rgba(10,10,12,0.05) 70%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 20px 110px;
}
.hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e8c468;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8c468;
  display: inline-block;
}
.hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  margin: 0 0 22px;
  color: #f5f1e6;
}
.hero__title em {
  font-style: italic;
  color: #e8c468;
}
.hero__sub {
  max-width: 580px;
  color: #b9b3a6;
  font-size: 17px;
  margin: 0;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 0;
  background: #050507;
}
.stats__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  text-align: center;
}
.stat {
  flex: 1 1 200px;
  text-align: center;
}
.stat__big {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  line-height: 1;
  color: #e8c468;
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: #b9b3a6;
  text-transform: uppercase;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid {
  display: grid;
  gap: 16px;
}
.grid--two   { grid-template-columns: repeat(2, 1fr); }
.grid--three { grid-template-columns: repeat(3, 1fr); }
.grid--four  { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 196, 104, 0.4);
}
.card__num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: #e8c468;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}
.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 8px;
  color: #f5f1e6;
}
.card p {
  color: #b9b3a6;
  font-size: 14px;
  margin: 0 0 14px;
}
.card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}
.card__tags li {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a7466;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ============================================================
   TABS
   ============================================================ */
.tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 4px;
  justify-content: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
  overflow-x: auto;
}
.tab {
  background: transparent;
  border: none;
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #7a7466;
  padding: 12px 18px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.tab::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #e8c468;
  transition: width 0.3s;
  margin-left: -30%;
}
.tab.is-active { color: #e8c468; }
.tab.is-active::after { width: 60%; margin-left: -30%; }
.panel { display: none; }
.panel.is-active { display: block; }

/* ============================================================
   PHOTO CARD (Media / Photography page)
   ============================================================ */
.photo-card {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
}
.photo-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.78) 100%);
}
.photo-card figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #f5f1e6;
}
.photo-card figcaption span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #e8c468;
  text-transform: uppercase;
}
.photo-card figcaption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
}

/* ============================================================
   BTS TILES
   ============================================================ */
.bts-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 14px;
}
.bts-tile {
  position: relative;
  margin: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
}
.bts-tile::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.82) 100%);
}
.bts-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  color: #f5f1e6;
}
.bts-tile figcaption span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #e8c468;
  text-transform: uppercase;
}
.bts-tile figcaption strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 22px;
}
.bts-tile--lg { grid-column: span 2; }

.bts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
}
.bts-card {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  transition: transform 0.3s;
}
.bts-card:hover { transform: scale(1.02); }
.bts-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,0.78) 100%);
}
.bts-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #e8c468;
  text-transform: uppercase;
}

/* ============================================================
   TRAVEL CARDS
   ============================================================ */
.travel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.travel-card {
  position: relative;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 14px;
  overflow: hidden;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #f5f1e6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s;
}
.travel-card:hover { transform: translateY(-3px); }
.travel-card::after {
  content: "";
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.85));
}
.travel-card > * {
  position: relative;
  z-index: 2;
}
.travel-card span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #e8c468;
  text-transform: uppercase;
}
.travel-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  margin-top: 4px;
}
.travel-card em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b9b3a6;
  margin-top: 6px;
  display: block;
}

/* ============================================================
   AWARDS
   ============================================================ */
.award-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.award {
  position: relative;
  padding: 26px 24px;
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: transform 0.3s, border-color 0.3s;
}
.award::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #e8c468, transparent);
}
.award:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 196, 104, 0.4);
}
.award__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #e8c468;
  padding: 4px 10px;
  border: 1px solid rgba(232, 196, 104, 0.3);
  border-radius: 999px;
  margin-bottom: 12px;
}
.award h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 6px;
  color: #f5f1e6;
}
.award p {
  color: #b9b3a6;
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about__media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  height: 0;
  padding-bottom: 125%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.about__body p {
  color: #b9b3a6;
  margin: 0 0 14px;
}
.about__body p.lead {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.4;
  color: #f5f1e6;
}
.about__signature {
  margin-top: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: #e8c468;
}
.about__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: #7a7466;
  text-transform: uppercase;
}
.about__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
.contact-card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 30px 28px;
}
.contact-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 22px;
  margin: 0 0 14px;
  color: #f5f1e6;
}
.contact-list { margin: 0; padding: 0; }
.contact-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: #f5f1e6;
}
.contact-list li:first-child { border-top: 0; padding-top: 0; }
.contact-list li span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: #e8c468;
  text-transform: uppercase;
  align-self: center;
}
.contact-list li a:hover { color: #e8c468; }

.socials {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}
.socials a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: #111116;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}
.socials a:hover {
  border-color: #e8c468;
  transform: translateY(-2px);
}
.socials a i {
  font-style: normal;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8c468;
  color: #1a160a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.socials a strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #f5f1e6;
}
.socials a em {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #b9b3a6;
}

/* ============================================================
   ARTICLES / JOURNAL
   ============================================================ */
.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.art-card {
  background: #16161d;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, border-color 0.3s;
}
.art-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 196, 104, 0.4);
}
.art-card__media {
  width: 100%;
  height: 0;
  padding-bottom: 62.5%;
  background-size: cover;
  background-position: center;
}
.art-card__body {
  padding: 20px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.art-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #e8c468;
}
.art-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.25;
  margin: 0;
  color: #f5f1e6;
}
.art-card p {
  color: #b9b3a6;
  font-size: 14px;
  margin: 0;
}
.art-card__more {
  margin-top: auto;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  border-bottom: 1px solid #e8c468;
  padding-bottom: 4px;
  text-transform: uppercase;
  color: #f5f1e6;
}

/* ============================================================
   PORTFOLIO PROOF SECTION
   ============================================================ */
.proof__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 6px;
}
.proof__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1a160a;
  color: #e8c468;
  vertical-align: middle;
  margin-right: 4px;
  line-height: 22px;
  text-align: center;
}
.proof__embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #000;
  margin: 40px auto 0;
  max-width: 1100px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
}
.proof__embed iframe {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 100%;
}
.proof__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px auto 0;
  max-width: 780px;
}
.proof__list li {
  text-align: center;
  padding: 20px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: #16161d;
}
.proof__list strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  color: #e8c468;
  line-height: 1;
  margin-bottom: 6px;
}
.proof__list span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #b9b3a6;
}

/* ============================================================
   FOOTER
   ============================================================ */
.foot {
  background: #050507;
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.foot__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.foot__brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
  display: block;
}
.foot__brand strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #f5f1e6;
}
.foot__brand em {
  display: block;
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.28em;
  color: #7a7466;
  text-transform: uppercase;
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b9b3a6;
}
.foot__nav a:hover { color: #e8c468; }
.foot__copy {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #7a7466;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* ============================================================
   CONTACT HERO
   ============================================================ */
.contact-hero {
  background: linear-gradient(180deg, #0d0d12 0%, #0a0a0c 100%);
  padding: 100px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.contact-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.contact-logo {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: inline-block;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
  margin-bottom: 8px;
}
.contact-logo img {
  width: 180px;
  max-width: 100%;
  height: auto;
  display: block;
}
.contact-hero__meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #e8c468;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}
.contact-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  margin: 6px 0 4px;
  color: #f5f1e6;
}
.contact-hero__title em {
  font-style: italic;
  color: #e8c468;
}
.contact-hero__sub {
  max-width: 560px;
  color: #b9b3a6;
  font-size: 17px;
  margin: 0;
}
.contact-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}

/* ============================================================
   REVEAL ANIMATION (on scroll)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE - Tablet (under 980px)
   ============================================================ */
@media (max-width: 980px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0a0a0c;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav.is-open .nav__links {
    max-height: 1000px;
    overflow-y: auto;
  }
  .nav__links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }
  .nav__links a:last-child { border-bottom: 0; }

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

  .about { grid-template-columns: 1fr; gap: 28px; }
  .about__media { max-width: 520px; width: 100%; padding-bottom: 125%; margin: 0 auto; }

  .contact-page { grid-template-columns: 1fr; gap: 20px; }

  .bts-tiles { grid-template-columns: repeat(2, 1fr); }
  .bts-tile--lg { grid-column: span 2; }
  .bts-tile { grid-auto-rows: 200px; }

  .award-list { grid-template-columns: repeat(2, 1fr); }
  .travel-grid { grid-template-columns: repeat(2, 1fr); }
  .art-grid { grid-template-columns: repeat(2, 1fr); }

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

  .title { font-size: 36px; }
  .hero__title { font-size: 56px; }
  .contact-hero__title { font-size: 56px; }
}

/* ============================================================
   RESPONSIVE - Phone (under 720px)
   ============================================================ */
@media (max-width: 720px) {
  .stats__grid {
    flex-direction: column;
    gap: 32px;
  }
  .nav__brand img { width: 56px; height: 56px; padding: 5px; }
  .nav__inner { padding: 10px 16px; gap: 14px; }
  .section { padding: 60px 0; }
  .wrap { padding: 0 16px; }
  .hero__inner { padding: 100px 16px 80px; }
}

/* ============================================================
   RESPONSIVE - Small Phone (under 560px)
   ============================================================ */
@media (max-width: 560px) {
  .grid--four,
  .grid--three,
  .grid--two { grid-template-columns: 1fr; }

  .bts-tiles { grid-template-columns: 1fr; }
  .bts-tile--lg { grid-column: span 1; }
  .travel-grid { grid-template-columns: 1fr; }
  .award-list { grid-template-columns: 1fr; }
  .art-grid { grid-template-columns: 1fr; }
  .proof__list { grid-template-columns: repeat(2, 1fr); }

  .hero { min-height: auto; }
  .hero__inner { gap: 18px; padding-top: 90px; padding-bottom: 70px; }
  .hero__title { font-size: 44px; }
  .hero__sub { font-size: 15px; }

  .contact-card { padding: 24px 20px; }
  .contact-list li { grid-template-columns: 84px 1fr; gap: 12px; font-size: 14px; }

  .about__body p.lead { font-size: 19px; }
  .foot__nav { justify-content: center; }

  .title { font-size: 30px; }
  .contact-hero__title { font-size: 44px; }

  .contact-logo img { width: 140px; }

  #splash .splash-logo { width: 220px; }
  #splash .splash-loader { width: 220px; }
}

/* ============================================================
   RESPONSIVE - Very small phone (under 380px)
   ============================================================ */
@media (max-width: 380px) {
  .nav__brand img { width: 48px; height: 48px; padding: 4px; }
  .hero__meta { font-size: 10px; letter-spacing: 0.22em; }
  .hero__title { font-size: 36px; }
}



