/* ═══════════════════════════════════════════════════
   MISTYRAIN STUDIOS — styles.css
   Cinematic Travel Vlogs & Malayalam Short Films
   ═══════════════════════════════════════════════════ */

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

:root {
  --dark:       #0a0d12;
  --dark2:      #0e1118;
  --dark3:      #131720;
  --gold:       oklch(0.72 0.14 68);
  --gold-light: oklch(0.78 0.14 68);
  --gold-dim:   rgba(180,140,60,0.4);
  --white:      #ffffff;
  --white70:    rgba(255,255,255,0.7);
  --white50:    rgba(255,255,255,0.5);
  --white30:    rgba(255,255,255,0.3);
  --white10:    rgba(255,255,255,0.1);
  --white05:    rgba(255,255,255,0.05);
  --serif:      'Cormorant Garamond', Georgia, serif;
  --cinzel:     'Cinzel', serif;
}

html { scroll-behavior: auto; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
button{ cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ─── LOADING SCREEN ─── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1.5rem;
  transition: opacity 0.8s, visibility 0.8s;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-title {
  font-family: var(--serif); font-size: 3rem; font-weight: 300;
  color: var(--white); opacity: 0;
  animation: loaderFade 1s ease 0.3s forwards;
}
.loader-title span { color: var(--gold); font-style: italic; }
.loader-bar-wrap { width: 120px; height: 1px; background: var(--white10); overflow: hidden; }
.loader-bar {
  height: 100%; width: 0; background: var(--gold);
  animation: loaderBar 2.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
@keyframes loaderFade { to { opacity: 1; } }
@keyframes loaderBar  { to { width: 100%; } }

/* ─── CUSTOM CURSOR ─── */
@media (pointer: fine) {
  * { cursor: none !important; }
  .cursor {
    position: fixed; z-index: 9999; pointer-events: none;
    width: 8px; height: 8px; background: var(--gold);
    border-radius: 50%; transform: translate(-50%,-50%);
    transition: width 0.2s, height 0.2s, opacity 0.2s;
  }
  .cursor-ring {
    position: fixed; z-index: 9998; pointer-events: none;
    width: 32px; height: 32px;
    border: 1px solid rgba(180,140,60,0.4);
    border-radius: 50%; transform: translate(-50%,-50%);
    transition: width 0.3s, height 0.3s, opacity 0.3s;
  }
  .cursor.hover     { width: 14px; height: 14px; }
  .cursor-ring.hover{ width: 50px; height: 50px; opacity: 0.6; }
}

/* ─── RAIN CANVAS ─── */
#rain-canvas {
  position: fixed; inset: 0; z-index: 200;
  pointer-events: none; width: 100%; height: 100%;
  mix-blend-mode: screen;
}

/* ─── FOG / MIST LAYER ─── */
.fog-layer {
  position: fixed; inset: 0; z-index: 199; pointer-events: none;
  background:
    radial-gradient(ellipse 120% 40% at 0% 30%, rgba(100,140,180,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 100% 50% at 100% 70%, rgba(80,120,160,0.06) 0%, transparent 60%);
  animation: fogDrift 18s ease-in-out infinite alternate;
}
@keyframes fogDrift {
  0%   { transform: translateX(-2%) translateY(0);    opacity: 0.6; }
  50%  { transform: translateX(2%)  translateY(-1%);  opacity: 1; }
  100% { transform: translateX(-1%) translateY(1%);   opacity: 0.7; }
}

/* ─── RAIN GLASS TINT ─── */
.rain-glass { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.rain-glass::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(120,160,220,0.03) 0%, rgba(80,120,180,0.06) 40%, rgba(60,100,160,0.04) 100%);
  animation: rainTint 4s ease-in-out infinite alternate;
}
@keyframes rainTint { 0% { opacity: 0.4; } 100% { opacity: 1; } }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 2rem;
  transition: background 1s, backdrop-filter 1s, box-shadow 1s;
}
.navbar.scrolled {
  background: rgba(10,13,18,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 0.85; }
.nav-logo img {
  width: 42px; height: 42px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gold-dim); transition: border-color 0.3s;
}
.nav-logo:hover img { border-color: var(--gold); }
.nav-brand-text { display: none; }
@media (min-width: 480px) { .nav-brand-text { display: block; } }
.nav-brand-name {
  font-family: var(--cinzel); font-size: 13px; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); line-height: 1;
}
.nav-brand-sub {
  font-family: var(--cinzel); font-size: 10px; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--white30); line-height: 1; margin-top: 3px;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  font-family: var(--cinzel); font-size: 11px; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--white50); transition: color 0.6s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-cta {
  display: none; align-items: center; gap: 8px; padding: 8px 18px;
  border: 1px solid rgba(180,140,60,0.5); color: var(--gold);
  font-family: var(--cinzel); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s;
}
@media (min-width: 768px) { .nav-cta { display: flex; } }
.nav-cta:hover { background: var(--gold); color: var(--dark); }
.nav-cta svg { width: 13px; height: 13px; }

.nav-burger { display: flex; flex-direction: column; gap: 5px; padding: 8px; }
@media (min-width: 768px) { .nav-burger { display: none; } }
.nav-burger span { display: block; width: 22px; height: 1px; background: var(--white70); transition: all 0.3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: rgba(10,13,18,0.97); backdrop-filter: blur(20px);
  padding: 0 2rem; max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid var(--white05);
}
.mobile-menu.open { max-height: 360px; padding: 1.5rem 2rem; }
.mobile-menu a {
  display: block; padding: 10px 0;
  font-family: var(--cinzel); font-size: 13px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white50);
  border-bottom: 1px solid var(--white05); transition: color 0.3s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--gold); }

/* ─── DECORATIVE ─── */
.amber-rule { display: inline-block; width: 40px; height: 1px; background: var(--gold); }
.section-tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 1.5rem; }
.tag-text {
  font-family: var(--cinzel); font-size: 10px; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1.4s cubic-bezier(0.16,1,0.3,1), transform 1.4s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── SECTIONS COMMON ─── */
.section-max { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .section-max { padding: 0 3rem; } }
.section-header { margin-bottom: 4rem; }
.section-title {
  font-family: var(--serif); font-size: clamp(2.8rem,5vw,4.5rem);
  font-weight: 300; line-height: 1.1; color: var(--white);
}
.section-title-italic { display: block; font-style: italic; color: var(--gold); }

/* ─── SECTION WET SHEEN ─── */
#about, #portfolio, #travel { position: relative; overflow: hidden; }
#about::after, #portfolio::after, #travel::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(120,180,255,0.15) 30%, rgba(160,200,255,0.25) 50%, rgba(120,180,255,0.15) 70%, transparent 100%);
  animation: sectionSheen 6s linear infinite; background-size: 200% 100%;
}
@keyframes sectionSheen {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── HERO ─── */
#home {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover; background-position: center;
  transform-origin: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,13,18,0.55) 0%, rgba(10,13,18,0.35) 40%, rgba(10,13,18,0.92) 100%);
}
.hero-overlay2 {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,13,18,0.6) 0%, transparent 50%, rgba(10,13,18,0.3) 100%);
}
.hero-top-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--gold); }
#particles  { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 80px 1.5rem 0; max-width: 900px; margin: 0 auto;
}
.hero-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 2rem;
  animation: heroIn 1.8s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}
.hero-eyebrow-text {
  font-family: var(--cinzel); font-size: 10px; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold);
}
.hero-title {
  font-family: var(--serif); font-size: clamp(4rem,10vw,8rem);
  font-weight: 300; line-height: 0.9; margin-bottom: 1rem; color: var(--white);
  animation: heroIn 2.2s cubic-bezier(0.16,1,0.3,1) 0.4s both;
  text-shadow: none;
}
.hero-title-italic {
  display: block; font-style: italic; color: var(--gold);
  text-shadow: 0 0 60px rgba(180,140,60,0.25), 0 0 120px rgba(180,140,60,0.1);
}
.hero-title-strong { display: block; font-weight: 600; letter-spacing: -0.02em; }
.hero-tagline {
  margin-top: 2rem;
  font-family: var(--cinzel); font-size: clamp(8px,1.5vw,11px);
  letter-spacing: 0.35em; text-transform: uppercase; color: var(--white50);
  animation: heroIn 1.8s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.hero-desc {
  margin-top: 1.5rem; font-size: clamp(0.95rem,2vw,1.1rem);
  color: var(--white70); max-width: 520px; margin-left: auto; margin-right: auto;
  font-weight: 300; line-height: 1.7;
  animation: heroIn 2s cubic-bezier(0.16,1,0.3,1) 0.8s both;
}
.hero-btns {
  margin-top: 2.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem;
  animation: heroIn 1.8s cubic-bezier(0.16,1,0.3,1) 1s both;
}
.hero-stats {
  margin-top: 3.5rem;
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
  animation: heroIn 1.8s cubic-bezier(0.16,1,0.3,1) 1.2s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.hero-stat-num {
  font-family: var(--serif); font-size: 1.8rem; font-weight: 300; color: var(--gold); line-height: 1;
  text-shadow: 0 0 40px rgba(180,140,60,0.2);
}
.hero-stat-label {
  font-family: var(--cinzel); font-size: 9px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--white30); margin-top: 4px;
}
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--white30); transition: color 0.3s; cursor: pointer; z-index: 2;
}
.hero-scroll:hover { color: var(--gold); }
.hero-scroll-label { font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; }
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--white30), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ─── BUTTONS ─── */
.btn-primary {
  padding: 14px 36px; background: var(--gold); color: var(--dark);
  font-family: var(--cinzel); font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: background 0.7s cubic-bezier(0.16,1,0.3,1);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  padding: 13px 36px; border: 1px solid var(--white30); color: var(--white70);
  font-family: var(--cinzel); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.7s cubic-bezier(0.16,1,0.3,1);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── ABOUT ─── */
#about {
  padding: 7rem 0; background: var(--dark);
}
#about::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(30,80,60,0.06) 0%, transparent 60%);
}
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 5rem; } }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 480px; object-fit: cover; }
@media (max-width: 768px) { .about-img { height: 320px; } }
.corner-tl { position: absolute; top: 0; left: 0; width: 48px; height: 48px; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
.corner-br { position: absolute; bottom: 0; right: 0; width: 48px; height: 48px; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
.about-badge { position: absolute; bottom: -24px; right: -24px; display: none; background: var(--dark3); border: 1px solid rgba(180,140,60,0.2); padding: 1.5rem; }
@media (min-width: 768px) { .about-badge { display: block; } }
.about-badge-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-badge-text { font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white30); margin-top: 6px; }
.about-content { display: flex; flex-direction: column; gap: 1.5rem; }
.about-text { font-size: 1rem; color: var(--white50); line-height: 1.8; font-weight: 300; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.about-feature { display: flex; align-items: center; gap: 10px; color: var(--white50); font-size: 0.9rem; font-weight: 300; }
.about-feature-icon { font-size: 1.1rem; }
.about-social { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.social-link { display: flex; align-items: center; gap: 6px; color: var(--white50); font-size: 0.85rem; font-weight: 300; transition: color 0.3s; }
.social-link:hover { color: var(--gold); }
.social-link svg { width: 16px; height: 16px; }

/* ─── PORTFOLIO ─── */
#portfolio { padding: 7rem 0; background: var(--dark2); }
#portfolio::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(180,140,60,0.3), transparent); }
.portfolio-header { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .portfolio-header { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.portfolio-view-all {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  color: var(--white30); font-family: var(--cinzel); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s;
}
.portfolio-view-all:hover { color: var(--gold); }
.portfolio-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .portfolio-grid { grid-template-columns: 1fr 1fr; } }
.portfolio-card { position: relative; overflow: hidden; cursor: pointer; }
.portfolio-card--featured { grid-row: 1 / 3; }
.portfolio-card-img-wrap { overflow: hidden; height: 280px; }
.portfolio-card--featured .portfolio-card-img-wrap { height: 100%; min-height: 420px; }
@media (max-width: 768px) { .portfolio-card--featured .portfolio-card-img-wrap { min-height: 280px; } }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s cubic-bezier(0.16,1,0.3,1); }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,17,24,0.92) 0%, rgba(14,17,24,0.25) 60%, transparent 100%); }
.portfolio-card-corner-tl { position: absolute; top: 16px; left: 16px; width: 28px; height: 28px; border-top: 1px solid rgba(180,140,60,0); border-left: 1px solid rgba(180,140,60,0); transition: border-color 0.5s; }
.portfolio-card:hover .portfolio-card-corner-tl { border-color: rgba(180,140,60,0.8); }
.portfolio-card-corner-br { position: absolute; bottom: 16px; right: 16px; width: 28px; height: 28px; border-bottom: 1px solid rgba(180,140,60,0); border-right: 1px solid rgba(180,140,60,0); transition: border-color 0.5s; }
.portfolio-card:hover .portfolio-card-corner-br { border-color: rgba(180,140,60,0.8); }
.portfolio-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.portfolio-card-tag { font-family: var(--cinzel); font-size: 9px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.portfolio-card-title-lg { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); margin: 6px 0 8px; line-height: 1.15; }
.portfolio-card-title-sm { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--white); margin: 4px 0; line-height: 1.2; }
.portfolio-card-desc { color: var(--white50); font-size: 0.85rem; line-height: 1.6; font-weight: 300; }
.portfolio-card-desc-sm { color: var(--white30); font-size: 0.8rem; line-height: 1.5; font-weight: 300; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.portfolio-cta { display: flex; align-items: center; gap: 8px; color: var(--gold); font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; margin-top: 1rem; opacity: 0; transition: opacity 0.3s; }
.portfolio-card:hover .portfolio-cta { opacity: 1; }
.portfolio-more { margin-top: 3rem; text-align: center; }
.portfolio-more a { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border: 1px solid var(--white10); color: var(--white50); font-family: var(--cinzel); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; transition: all 0.3s; }
.portfolio-more a:hover { border-color: var(--gold); color: var(--gold); }
.portfolio-more svg { width: 16px; height: 16px; }

/* ─── TRAVEL ─── */
#travel { padding: 7rem 0; background: var(--dark); }
#travel::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(180,140,60,0.2), transparent); }
.travel-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .travel-grid { grid-template-columns: repeat(3,1fr); } }
.travel-card { position: relative; overflow: hidden; cursor: pointer; }
.travel-card-img-wrap { height: 320px; overflow: hidden; }
.travel-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.8s cubic-bezier(0.16,1,0.3,1); }
.travel-card:hover img { transform: scale(1.06); }
.travel-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,13,18,0.94) 0%, rgba(10,13,18,0.3) 55%, transparent 100%); }
.travel-badge { position: absolute; top: 16px; right: 16px; background: rgba(180,140,60,0.9); color: var(--dark); font-family: var(--cinzel); font-size: 9px; font-weight: 400; letter-spacing: 0.1em; padding: 4px 10px; }
.travel-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem; }
.travel-subtitle { font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 4px; }
.travel-card-title { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); margin-bottom: 6px; line-height: 1.1; }
.travel-card-desc { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-weight: 300; line-height: 1.6; }
.travel-cta-hover { display: flex; align-items: center; gap: 6px; color: var(--gold); font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; margin-top: 10px; opacity: 0; transition: opacity 0.3s; }
.travel-card:hover .travel-cta-hover { opacity: 1; }
.travel-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; padding-top: 3rem; border-top: 1px solid var(--white05); }
@media (min-width: 768px) { .travel-stats { grid-template-columns: repeat(4,1fr); } }
.travel-stat { text-align: center; }
.travel-stat-num { font-family: var(--serif); font-size: clamp(2.5rem,5vw,3.5rem); font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; text-shadow: 0 0 40px rgba(180,140,60,0.2); }
.travel-stat-label { font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white30); }

/* ─── CONTACT ─── */
#contact { position: relative; overflow: hidden; }
.contact-hero { position: relative; padding: 8rem 0; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; background-image: url('../images/contact-bg.jpg'); background-size: cover; background-position: center; }
.contact-hero-overlay { position: absolute; inset: 0; background: rgba(10,13,18,0.86); }
.contact-hero-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(180,140,60,0.4), transparent); }
.contact-hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; text-align: center; padding: 0 1.5rem; }
.contact-hero-title { font-family: var(--serif); font-size: clamp(3rem,7vw,5.5rem); font-weight: 300; line-height: 1.05; color: var(--white); margin-bottom: 1.5rem; }
.contact-hero-title-italic { display: block; font-style: italic; color: var(--gold); }
.contact-hero-desc { color: var(--white50); font-size: 1rem; max-width: 480px; margin: 0 auto 2.5rem; font-weight: 300; line-height: 1.8; }
.social-cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .social-cards { grid-template-columns: repeat(3,1fr); } }
.social-card { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 1.5rem 1rem; border: 1px solid var(--white10); background: rgba(10,13,18,0.5); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); cursor: pointer; text-decoration: none; color: inherit; }
.social-card:hover { border-color: rgba(180,140,60,0.5); background: rgba(20,24,35,0.8); }
.social-card-icon { color: var(--white50); transition: color 0.3s; }
.social-card:hover .social-card-icon { color: var(--gold); }
.social-card-icon svg { width: 20px; height: 20px; }
.social-card-name { color: var(--white); font-size: 0.85rem; font-weight: 400; }
.social-card-handle { color: var(--white30); font-size: 0.75rem; }
.social-card-count { font-family: var(--serif); font-size: 0.85rem; font-weight: 300; color: var(--gold); }
.contact-form-section { padding: 7rem 0; background: var(--dark2); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-left h2 { font-family: var(--serif); font-size: clamp(2.5rem,4vw,3.5rem); font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem; }
.contact-left h2 span { display: block; font-style: italic; color: var(--gold); }
.contact-left p { color: var(--white50); font-size: 1rem; line-height: 1.8; font-weight: 300; margin-bottom: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-info-row { display: flex; align-items: center; gap: 14px; color: var(--white50); }
.contact-info-icon { width: 32px; height: 32px; border: 1px solid rgba(180,140,60,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon svg { width: 14px; height: 14px; color: var(--gold); }
.contact-info-text { font-size: 0.9rem; }
.contact-info-text a { transition: color 0.3s; }
.contact-info-text a:hover { color: var(--gold); }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-label { display: block; font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white30); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; padding: 14px 16px; background: rgba(20,24,35,0.8); border: 1px solid var(--white10); color: var(--white); font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color 0.3s; font-family: inherit; }
.form-input::placeholder, .form-textarea::placeholder { color: var(--white30); }
.form-input:focus, .form-textarea:focus { border-color: rgba(180,140,60,0.5); }
.form-textarea { resize: none; height: 140px; }
.form-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--dark); font-family: var(--cinzel); font-size: 10px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.3s; }
.form-submit:hover { background: var(--gold-light); }
.form-success { display: none; padding: 16px; border: 1px solid rgba(180,140,60,0.4); color: var(--gold); font-family: var(--cinzel); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; text-align: center; }

/* ─── FOOTER ─── */
footer { background: var(--dark2); border-top: 1px solid var(--white05); padding: 4rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 1px solid var(--gold-dim); }
.footer-desc { color: var(--white30); font-size: 0.85rem; line-height: 1.7; font-weight: 300; max-width: 260px; }
.footer-col-title { font-family: var(--cinzel); font-size: 9px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--white30); margin-bottom: 1.2rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { display: flex; align-items: center; gap: 6px; color: var(--white30); font-size: 0.85rem; font-weight: 300; transition: color 0.3s; }
.footer-link:hover { color: var(--gold); }
.footer-link-arrow { color: rgba(255,255,255,0.15); font-size: 0.75rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid var(--white05); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }
.footer-copy  { color: rgba(255,255,255,0.15); font-size: 0.8rem; }
.footer-quote { color: rgba(255,255,255,0.15); font-size: 0.8rem; font-style: italic; font-family: var(--serif); }
