/* ===== Classic Theme Variables ===== */
:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f3ede4;
  --color-bg-warm: #f5f0e6;
  --color-bg-card: #ffffff;
  --color-navy: #0b2d5c;
  --color-navy-light: #123d7a;
  --color-navy-dark: #082347;
  --color-primary: #0b2d5c;
  --color-secondary: #7a1f1f;
  --color-maroon: #7a1f1f;
  --color-gold: #c79b2d;
  --color-gold-light: #e8c547;
  --color-accent: #c79b2d;
  --color-text: #2c3e50;
  --color-text-muted: #5a6a7a;
  --color-white: #ffffff;
  --color-border: rgba(11, 45, 92, 0.12);
  --gradient-navy: linear-gradient(135deg, #0b2d5c 0%, #123d7a 100%);
  --gradient-warm: linear-gradient(180deg, #faf8f5 0%, #f3ede4 100%);
  --gradient-hero-overlay: linear-gradient(135deg, rgba(11, 45, 92, 0.88) 0%, rgba(18, 61, 122, 0.75) 55%, rgba(122, 31, 31, 0.8) 100%);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 10px rgba(11, 45, 92, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 45, 92, 0.1);
  --shadow-lg: 0 20px 50px rgba(11, 45, 92, 0.12);
  --radius: 12px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 0.8rem;
  line-height: 1.2;
  padding: 13px 28px;
  min-height: 48px;
  box-sizing: border-box;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
  box-shadow: 0 4px 16px rgba(199, 155, 45, 0.35);
}
.btn-primary:hover {
  background: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(199, 155, 45, 0.45);
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline:hover {
  background: var(--color-navy);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.85);
}
.btn-outline-light:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.72rem;
  min-height: 38px;
  letter-spacing: 0.05em;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.85rem;
  min-height: 54px;
  letter-spacing: 0.07em;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.site-header.scrolled,
.inner-page .site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.site-header.scrolled .main-nav a,
.inner-page .site-header .main-nav a {
  color: var(--color-text-muted);
  font-weight: 600;
}

.site-header.scrolled .main-nav a:hover,
.site-header.scrolled .main-nav a.active,
.inner-page .site-header .main-nav a:hover,
.inner-page .site-header .main-nav a.active {
  color: var(--color-navy);
  font-weight: 700;
  background: none;
}

.site-header.scrolled .nav-toggle span,
.inner-page .site-header .nav-toggle span { background: var(--color-navy); }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-header:not(.scrolled):not(.inner-page) .logo {
  color: var(--color-white);
}

.inner-page .site-header .logo,
.site-header.scrolled .logo {
  color: var(--color-navy);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  padding: 8px 18px 14px;
  border-radius: 0;
  transition: var(--transition);
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: 0.9rem;
  background: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border-radius: 4px;
  transform: translateX(-50%);
  transition: width var(--transition);
}

.main-nav a:hover {
  color: var(--color-white);
  background: none;
  font-weight: 700;
}

.main-nav a.active {
  color: var(--color-white);
  background: none;
  font-weight: 700;
}

.main-nav a.active::after {
  width: 52%;
}

.main-nav a:hover::after {
  width: 0;
}

.header-cta { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: var(--transition);
}

/* ===== Home Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero .hero-img {
  object-position: 88% 0%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.home-page .hero-overlay {
  background: linear-gradient(
    135deg,
    rgba(11, 45, 92, 0.55) 0%,
    rgba(18, 61, 122, 0.38) 50%,
    rgba(122, 31, 31, 0.28) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 620px;
  margin-left: max(32px, calc((100% - 1280px) / 2 + 32px));
  padding: calc(var(--header-height) + 40px) 32px 80px 0;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 20px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
  color: var(--color-gold-light);
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  border-radius: 1px;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
  box-shadow: none;
}

.hero-buttons .btn-primary:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
  box-shadow: 0 6px 24px rgba(199, 155, 45, 0.45);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  animation: fadeUp 1s ease-out 0.5s both;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Page Hero ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
}

.page-hero .hero-bg { position: absolute; inset: 0; }

.page-hero .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px;
  animation: fadeUp 0.8s ease-out;
}

.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 12px;
}

.page-hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

/* ===== Sections ===== */
.page-section { padding: 80px 0; }

.page-section.alt-bg { background: var(--color-bg-alt); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 12px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-gold);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--color-navy);
  margin-bottom: 16px;
  font-weight: 700;
}

.section-desc {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== Quote ===== */
.quote-section {
  padding: 80px 0;
  background: var(--color-navy);
  position: relative;
}

.quote-section::before,
.quote-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
}

.quote-section::before { top: 0; }
.quote-section::after { bottom: 0; }

.quote-section blockquote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote-section blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 16px;
}

.quote-section cite {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  font-style: normal;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Welcome ===== */
.welcome-section { padding: 100px 0 60px; }

/* ===== Features ===== */
.features-section { padding: 40px 0 100px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
}

.feature-card:nth-child(2) { border-top-color: var(--color-navy); }
.feature-card:nth-child(3) { border-top-color: var(--color-maroon); }

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.feature-card:nth-child(1) .feature-icon { background: rgba(199, 155, 45, 0.12); color: var(--color-gold); }
.feature-card:nth-child(2) .feature-icon { background: rgba(11, 45, 92, 0.08); color: var(--color-navy); }
.feature-card:nth-child(3) .feature-icon { background: rgba(122, 31, 31, 0.08); color: var(--color-maroon); }

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 24px;
}

.feature-icon svg { width: 28px; height: 28px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.feature-link {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
}
.feature-link:hover { color: var(--color-navy); }

/* ===== About Page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 3px solid var(--color-gold);
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
}

.stat-suffix {
  font-size: 0.62em;
  font-weight: 700;
  line-height: 1;
  margin-left: 0.04em;
}

.stat-label {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.work-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.work-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-gold);
  transition: var(--transition);
}

.work-item:nth-child(2) { border-left-color: var(--color-navy); }
.work-item:nth-child(3) { border-left-color: var(--color-maroon); }
.work-item:nth-child(4) { border-left-color: var(--color-gold); }

.work-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.work-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(199, 155, 45, 0.12);
  font-size: 1.2rem;
}

.work-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 4px;
  color: var(--color-navy);
}

.work-item p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ===== Videos Page ===== */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

.video-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.video-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.video-card:hover .video-thumb img { transform: scale(1.05); }

.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 58px;
  height: 58px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-navy-dark);
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.video-card:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--color-gold-light);
}

.video-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-badge.song { background: var(--color-navy); }
.video-badge.speech { background: var(--color-maroon); }
.video-badge.interview { background: var(--color-gold); color: var(--color-navy-dark); }

.video-info { padding: 24px; }

.video-info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.video-info p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
}
.video-link:hover { color: var(--color-navy); gap: 10px; }

/* ===== Gallery Page ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  aspect-ratio: 4/3;
  border: 2px solid transparent;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 45, 92, 0.88) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--color-gold-light);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.cat-btn {
  padding: 8px 22px;
  border-radius: 6px;
  border: 2px solid var(--color-border);
  background: var(--color-bg-card);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cat-btn:hover,
.cat-btn.active {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

/* ===== Contact Page ===== */
.contact-page-section {
  background: var(--color-bg-alt);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-form-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--color-navy);
  margin-bottom: 28px;
  font-weight: 700;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form .form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-alt);
  transition: var(--transition);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: #9aa5b1;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  background: var(--color-white);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.contact-form .form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-block {
  width: 100%;
  margin-top: 8px;
  padding: 16px 28px;
  min-height: 52px;
  font-size: 0.85rem;
  border-radius: 10px;
  text-transform: none;
  letter-spacing: 0.02em;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(199, 155, 45, 0.35);
}

.detail-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.detail-icon svg {
  width: 24px;
  height: 24px;
}

.detail-icon-email {
  background: rgba(11, 45, 92, 0.08);
  color: var(--color-navy);
}

.detail-icon-phone {
  background: rgba(122, 31, 31, 0.1);
  color: var(--color-maroon);
}

.detail-icon-location {
  background: rgba(199, 155, 45, 0.12);
  color: var(--color-gold);
}

.detail-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.detail-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.detail-card a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.detail-card a:hover {
  color: var(--color-gold);
}

/* Legacy contact styles (kept for compatibility) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-navy);
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(199, 155, 45, 0.4);
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-navy);
  color: var(--color-gold);
}

.contact-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card-icon.icon-email { background: var(--color-maroon); color: var(--color-white); }
.contact-card-icon.icon-location { background: rgba(199, 155, 45, 0.15); color: var(--color-navy); border: 2px solid var(--color-gold); }
.contact-card-icon.icon-booking { background: var(--color-navy); color: var(--color-gold-light); }

.contact-card-body h4 {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-card-body p,
.contact-card-body a {
  font-weight: 600;
  color: var(--color-navy);
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-card-body a:hover { color: var(--color-gold); }

.contact-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding: 18px 20px;
  background: rgba(199, 155, 45, 0.08);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-gold);
}

.contact-note svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-note p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-form-wrap {
  background: var(--color-bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold);
}

.form-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}

.form-header-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--color-navy);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-header-icon svg {
  width: 24px;
  height: 24px;
}

.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 4px;
  color: var(--color-navy);
}

.form-header p {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-form-wrap .btn-primary svg {
  width: 16px;
  height: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(199, 155, 45, 0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ===== CTA ===== */
.cta-section { padding: 0 0 100px; }

.cta-box {
  background: var(--color-navy);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--color-gold);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gold);
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 12px;
  position: relative;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-buttons .btn {
  padding: 15px 36px;
  min-height: 52px;
  min-width: 220px;
  font-size: 0.78rem;
}

.cta-box .btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-gold);
}
.cta-box .btn-outline:hover {
  background: var(--color-gold);
  color: var(--color-navy-dark);
  border-color: var(--color-gold);
}

.cta-box .btn-primary {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* ===== Footer ===== */
.site-footer {
  background: var(--color-navy);
  color: var(--color-white);
  border-top: 3px solid var(--color-gold);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.footer-brand .logo {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 8px;
  color: var(--color-white);
}

.footer-brand > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.footer-brand .footer-social-desktop {
  margin-top: 20px;
}

.footer-social-mobile-wrap {
  display: none;
}

.footer-social-icons.footer-social-mobile {
  display: flex;
}

.footer-heading {
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--color-gold-light);
  margin: 0 0 6px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--color-gold-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact > a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  transition: var(--transition);
}
.footer-contact > a:hover { color: var(--color-gold-light); }

.footer-contact > p:not(.footer-heading) {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.footer-contact .footer-social-icons {
  margin-top: 8px;
}

.footer-social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--color-white);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.06);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.footer-social-link:hover {
  transform: translateY(-3px);
  border-color: transparent;
}

.footer-social-link.fb:hover { background: #1877f2; color: #fff; }
.footer-social-link.yt:hover { background: #cc0000; color: #fff; }
.footer-social-link.ig:hover {
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  color: #fff;
}
.footer-social-link.tw:hover { background: #000; color: #fff; }

/* ===== Social Page ===== */
.social-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}

.social-intro-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--color-navy);
  margin-bottom: 18px;
}

.social-intro-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-quote {
  margin: 0;
  padding: 24px 28px;
  border-left: 4px solid var(--color-gold);
  background: var(--color-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.social-quote p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.social-quote cite {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-style: normal;
  font-weight: 600;
}

.social-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.social-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.social-pillar {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.social-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.social-pillar-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.social-pillar h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.social-pillar p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.social-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 8px;
}

.social-why-item {
  padding: 28px;
  background: var(--color-bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.social-why-item h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.social-why-item p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.social-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.social-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-card-icon svg {
  width: 30px;
  height: 30px;
}

.social-card-fb .social-card-icon { background: rgba(24, 119, 242, 0.1); color: #1877f2; }
.social-card-yt .social-card-icon { background: rgba(204, 0, 0, 0.1); color: #cc0000; }
.social-card-ig .social-card-icon { background: rgba(188, 24, 136, 0.1); color: #bc1888; }
.social-card-tw .social-card-icon { background: rgba(0, 0, 0, 0.08); color: #000; }

.social-card-fb { border-top: 3px solid #1877f2; }
.social-card-yt { border-top: 3px solid #cc0000; }
.social-card-ig { border-top: 3px solid #bc1888; }
.social-card-tw { border-top: 3px solid var(--color-navy); }

.social-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.social-tagline {
  font-size: 0.88rem;
  color: var(--color-gold);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 14px;
}

.social-card-body > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-highlights {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.social-highlights li {
  position: relative;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.social-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .features-grid,
  .gallery-grid,
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .social-pillars { grid-template-columns: repeat(2, 1fr); }
  .social-intro { grid-template-columns: 1fr; }
  .about-grid,
  .contact-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { align-items: center; }
  .footer-contact { display: flex; flex-direction: column; align-items: center; }
  .footer-social-icons.footer-social-desktop { display: none; }
  .footer-social-mobile-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
  }
  .footer-social-icons { justify-content: center; }
}

@media (max-width: 768px) {
  body {
    overflow-x: clip;
  }

  .site-header {
    z-index: 9999;
  }

  .header-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Keep header content visible while scrolling on mobile */
  .site-header.scrolled,
  .inner-page .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--color-white);
  }

  .header-inner {
    position: relative;
    z-index: 2;
  }

  .header-inner > .logo,
  .header-inner > .nav-toggle {
    position: relative;
    z-index: 3;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 2px solid var(--color-gold);
    box-shadow: var(--shadow-md);
    z-index: 9998;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    text-align: center;
    padding: 14px 14px 18px;
    color: var(--color-text-muted);
    font-weight: 600;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--color-navy);
    background: none;
    font-weight: 700;
  }

  .main-nav a.active::after {
    left: 50%;
    right: auto;
    bottom: 6px;
    width: 48px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  }

  .main-nav a:hover::after {
    width: 0;
  }

  .features-grid,
  .gallery-grid,
  .video-grid,
  .social-grid,
  .social-pillars,
  .social-why-grid,
  .social-intro-stats,
  .work-list,
  .stats-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .video-card {
    min-width: 0;
  }

  /* Home hero — stacked layout on mobile (image top, text below) */
  .home-page .hero {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: auto;
    overflow: visible;
  }

  .home-page .hero-bg {
    position: relative;
    height: 45vh;
    min-height: 280px;
    max-height: 420px;
    flex-shrink: 0;
  }

  .home-page .hero-bg .hero-img {
    object-position: 82% 8%;
  }

  .home-page .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(11, 45, 92, 0.1) 0%,
      rgba(11, 45, 92, 0.55) 100%
    );
  }

  .home-page .hero-content {
    position: relative;
    max-width: none;
    width: 100%;
    margin-left: 0;
    padding: 32px 20px 40px;
    background: linear-gradient(180deg, var(--color-navy-dark) 0%, var(--color-navy) 100%);
  }

  .home-page .hero-title {
    text-shadow: none;
    font-size: clamp(1.65rem, 6.5vw, 2.25rem);
    line-height: 1.3;
  }

  .home-page .hero-title-line1 {
    white-space: nowrap;
    display: block;
  }

  .home-page .hero-title br {
    display: none;
  }

  .home-page .hero-title .highlight {
    padding-bottom: 3px;
  }

  .home-page .hero-title .highlight::after {
    bottom: 0;
    height: 2px;
  }

  .home-page .hero-buttons {
    flex-direction: column;
  }

  .home-page .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll { display: none; }
  .about-image img {
    height: auto;
    object-fit: contain;
  }
  .cta-box { padding: 40px 24px; }
  .cta-buttons .btn {
    min-width: 100%;
    width: 100%;
    max-width: 320px;
  }
  .contact-form-card { padding: 28px 24px; }
  .social-card { flex-direction: column; align-items: center; text-align: center; }
  .social-highlights li { padding-left: 0; }
  .social-highlights li::before { display: none; }
  .page-hero { min-height: 35vh; }
}
