@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0d1117;
  --bg2: #111820;
  --bg3: #161e28;
  --fg: #ede8df;
  --fg2: #a09888;
  --gold: #e6a817;
  --gold2: #c48f10;
  --border: rgba(255, 255, 255, 0.08);
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', sans-serif;
  --btn-radius: 3px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.section-title-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  color: #d4a017;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-title-line::before {
  content: "";
  width: 35px;
  height: 1px;
  background: #d4a017;
  display: block;
}


/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(13, 17, 23, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .logo-main {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.nav-logo .logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg2);
  transition: color 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--gold);
}

/* ─── NAV DROPDOWN ─── */
.nav-links .has-dropdown {
  position: relative;
}

.nav-links .has-dropdown>a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-links .has-dropdown>a::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
  opacity: 0.6;
}

.nav-links .has-dropdown:hover>a::after {
  transform: rotate(-135deg) translateY(-2px);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 17, 23, 0.98);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  backdrop-filter: blur(16px);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  transform: translateX(-50%) translateY(8px);
  z-index: 2000;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 11px 24px;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg2);
  transition: color 0.2s, background 0.2s;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown a:last-child {
  border-bottom: none;
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(230, 168, 23, 0.05);
}

/* ─── NAV RIGHT (logo image + hamburger) ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 6px rgba(230, 168, 23, 0.15));
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--fg);
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.98);
  backdrop-filter: blur(16px);
  padding: 24px 40px 32px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg2);
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

/* ─── HERO ─── */
#home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  cursor: none
}

#home a,
#home button {
  cursor: pointer;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 17, 23, 0.55) 0%, rgba(13, 17, 23, 0.4) 50%, rgba(13, 17, 23, 0.85) 100%);
  z-index: 1;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1117 0%, #1a2540 50%, #0d1117 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 24px;
}

.hero-content,
.hero-overlay,
.scroll-hint {
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.hero-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}

.hero-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--fg);
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 1rem;
  color: var(--fg2);
  max-width: 540px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  border-radius: var(--btn-radius);
}

.btn-gold {
  background: var(--gold);
  color: var(--bg);
}

.btn-gold:hover {
  background: var(--gold2);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--fg2);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-hint::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 70px 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.section-desc {
  color: var(--fg2);
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.85;
}

/* fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-placeholder {
  width: 100%;
  /* aspect-ratio: 4/5; */
  background: linear-gradient(135deg, var(--bg3) 0%, #1e2d40 100%);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='40' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e6a817' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 160px;
  height: 160px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.stat-item {}

.stat-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg2);
  margin-top: 6px;
}

/* ─── SERVICES ─── */
#services {
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 60px;
  border: 1px solid var(--border);
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  transition: background 0.3s;
  cursor: default;
}

.service-card:hover {
  background: var(--bg2);
}

.service-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--fg2);
  line-height: 1.75;
}

/* ─── EVENTS ─── */
#events {
  background: var(--bg2);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.event-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.event-card:hover {
  border-color: rgba(230, 168, 23, 0.4);
  transform: translateY(-4px);
}

.event-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a2540 0%, #0d1117 100%);
  position: relative;
  overflow: hidden;
}

.event-thumb-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  font-weight: 600;
}

.event-body {
  padding: 24px;
}

.event-meta {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.event-card h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.event-venue {
  font-size: 0.8rem;
  color: var(--fg2);
}

/* ─── GALLERY ─── */
#gallery {
  background: var(--bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  margin-top: 60px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  background: var(--bg3);
}

.gallery-item:nth-child(1) {
  grid-column: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item:nth-child(1) .gallery-thumb,
.gallery-item:nth-child(4) .gallery-thumb {
  aspect-ratio: 21/9;
}

.gallery-item:hover .gallery-thumb {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0);
  transition: background 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(13, 17, 23, 0.5);
}

.gallery-caption {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

.gallery-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--bg3) 0%, #1a2d3d 100%);
}

.gallery-item:nth-child(1) .gallery-placeholder,
.gallery-item:nth-child(4) .gallery-placeholder {
  aspect-ratio: 21/9;
}

/* ─── CLIENTS ─── */
#clients {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.client-item {
  border: 1px solid var(--border);
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.3s;
  cursor: default;
}

.client-item:hover {
  border-color: rgba(230, 168, 23, 0.4);
}

.client-item span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.3s;
  text-transform: uppercase;
}

.client-item:hover span {
  color: rgba(230, 168, 23, 0.8);
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 28px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--fg2);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 32px;
  text-align: justify;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bg);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--fg2);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 60px;
}

.contact-info h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--fg2);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(230, 168, 23, 0.1);
  border: 1px solid rgba(230, 168, 23, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.875rem;
  color: var(--fg2);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg2);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
  resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 130px;
}

.form-note {
  font-size: 0.75rem;
  color: var(--fg2);
  margin-top: -8px;
}

.form-success {
  display: none;
  background: rgba(230, 168, 23, 0.1);
  border: 1px solid rgba(230, 168, 23, 0.3);
  padding: 16px 20px;
  color: var(--gold);
  font-size: 0.875rem;
  text-align: center;
}

/* ─── Brand ─── */

body {
  background-color: #121212;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  padding: 50px;
}

.brand-card {
  perspective: 1000px;
}

.brand-inner {
  position: relative;
  width: 100%;
  height: 180px;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

.brand-card:hover .brand-inner {
  transform: rotateY(180deg);
}

.brand-front,
.brand-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  background: #1e1e1e;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.brand-front img,
.brand-back img {
  width: 150px;
  height: auto;
  margin-bottom: 60px;
}

.brand-front p,
.brand-back p {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}

.brand-back {
  transform: rotateY(180deg);
  background: #222;
}

.brand-card:hover .brand-front img,
.brand-card:hover .brand-back img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}



/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 40px 32px;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.footer-brand .logo-main {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer-brand .logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--fg2);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, color 0.3s;
  color: var(--fg2);
  border-radius: var(--btn-radius)
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-social svg {
  width: 15px;
  height: 15px;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.8rem;
  color: var(--fg2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-col ul li span {
  font-size: 0.8rem;
  color: var(--fg2);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.footer-direction-address {
  font-size: 0.82rem;
  color: var(--fg2);
  line-height: 1.75;
  margin-bottom: 14px;
}

.footer-map-wrap {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.footer-map-wrap iframe {
  display: block;
  width: 100%;
  height: 160px;
}

.footer-map-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.25s;
}

.footer-map-btn svg {
  width: 14px;
  height: 14px;
}

.footer-map-btn:hover {
  background: rgba(230, 168, 23, 0.08);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 24px;
  }

  #navbar {
    padding: 0 24px;
  }

  footer {
    padding: 56px 24px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap {
    display: none;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(4) {
    grid-column: span 1;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── WATCH FULL VIDEO CUSTOM CURSOR ─────────────────────── */
#home {
  cursor: none;
}

.watch-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: transform;
}

.watch-cursor.visible {
  opacity: 1;
}

.watch-cursor svg {
  width: 100%;
  height: 100%;
  animation: watch-cursor-rotate 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
}

.watch-cursor.visible .watch-play {
  animation: watch-play-pulse 1.8s ease-in-out infinite;
}

@keyframes watch-cursor-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes watch-play-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    transform-origin: 60px 60px;
  }

  50% {
    opacity: 0.7;
    transform: scale(0.88);
    transform-origin: 60px 60px;
  }
}