/* ── Luxury Palette ──────────────────────────────────────────
   --navy:      #0D1B2A  deep midnight navy
   --gold:      #C9A84C  champagne gold
   --gold-lt:   #E8C97A  light gold / shimmer
   --ivory:     #F5F0E8  warm ivory
   --charcoal:  #2C2C2C  rich charcoal
   --mist:      #E8E2D9  warm mist
─────────────────────────────────────────────────────────── */

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

:root {
  --navy:     #0D1B2A;
  --navy2:    #152236;
  --gold:     #C9A84C;
  --gold-lt:  #E8C97A;
  --ivory:    #F5F0E8;
  --charcoal: #2C2C2C;
  --mist:     #E8E2D9;
  --white:    #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Nav ───────────────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.35s, padding 0.35s, box-shadow 0.35s;
}

.nav.scrolled {
  background: rgba(13,27,42,0.97);
  padding: 16px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 44px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(245,240,232,0.75);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-lt); }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  font-size: 20px;
  cursor: pointer;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy);
  position: fixed;
  top: 0; left: 0; right: 0;
  padding: 100px 40px 48px;
  z-index: 150;
  gap: 8px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-link {
  display: block;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  padding: 16px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--gold); }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #050d15 0%, #0D1B2A 40%, #152a40 70%, #0a1828 100%);
}

/* Subtle grid texture */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,0.6) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
  display: block;
}

.hero-subtitle {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(232,226,217,0.65);
  margin-bottom: 52px;
  max-width: 400px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; transform: scaleY(0.6); transform-origin: top; }
}

.scroll-label {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6);
}

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-block;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover { background: var(--gold-lt); }

.btn-ghost {
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold-lt);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.btn-full { width: 100%; text-align: center; }

/* ── Film Strip ────────────────────────────────────────── */
.filmstrip {
  position: absolute;
  right: 80px;
  top: 0;
  bottom: 0;
  width: 280px;
  overflow: hidden;
  z-index: 1;
  display: flex;
}

.filmstrip-fade {
  position: absolute;
  left: 0; right: 0;
  height: 180px;
  z-index: 2;
  pointer-events: none;
}

.filmstrip-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--navy) 0%, transparent 100%);
}

.filmstrip-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
}

.filmstrip-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: filmScroll 32s linear infinite;
  padding: 10px 0;
}

.filmstrip-track img {
  width: 280px;
  height: auto;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(201,168,76,0.15);
}

@keyframes filmScroll {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@media (max-width: 960px) {
  .filmstrip { display: none; }
}

/* ── Stats ─────────────────────────────────────────────── */
.stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  padding: 36px 60px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 52px;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,226,217,0.5);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* ── Section Shared ────────────────────────────────────── */
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ── Portfolio ─────────────────────────────────────────── */
.portfolio {
  padding: 110px 60px;
  background: var(--ivory);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 48px;
}

.filter-btn {
  background: none;
  border: 1px solid var(--mist);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a7f72;
  padding: 12px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
}

/* Masonry columns — images show at full natural height */
.gallery {
  columns: 3;
  column-gap: 10px;
}

.gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 10px;
  cursor: pointer;
  overflow: hidden;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.gallery-item:hover img { transform: scale(1.03); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

/* hidden filtered items */
.gallery-item.hidden {
  display: none;
}

/* ── About ─────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: 110px 60px;
  background: var(--white);
}

.about-visual {
  position: relative;
  height: 580px;
}

.about-frame {
  position: absolute;
  right: 0; top: 0;
  width: 85%;
  height: 90%;
  border: 1px solid rgba(201,168,76,0.2);
  padding: 12px;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badge {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--gold);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 130px;
}

.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}

.badge-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  text-align: center;
  line-height: 1.5;
}

.about-body {
  font-size: 14px;
  font-weight: 300;
  color: #5a5248;
  margin-bottom: 20px;
  line-height: 1.95;
}

.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
}

.skill-tag {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 8px 16px;
}

/* ── Services ──────────────────────────────────────────── */
.services {
  background: var(--navy);
  padding: 110px 60px;
}

.services .section-title { color: var(--ivory); }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  padding: 52px 40px;
  position: relative;
  transition: background 0.25s;
}

.service-card:hover { background: rgba(201,168,76,0.06); }

.service-card-featured {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.35);
}

.service-badge {
  position: absolute;
  top: -1px; right: 32px;
  background: var(--gold);
  color: var(--navy);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}

.service-icon {
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
  line-height: 1;
}

.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 16px;
}

.service-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(232,226,217,0.6);
  line-height: 1.8;
  margin-bottom: 28px;
}

.service-detail {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 24px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.services-intro {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 13px;
  font-weight: 300;
  color: rgba(232,226,217,0.5);
  line-height: 1.85;
  letter-spacing: 0.02em;
}

.services-footer {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  font-weight: 300;
  color: rgba(232,226,217,0.4);
}

.services-footer a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  transition: color 0.2s, border-color 0.2s;
}

.services-footer a:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}

/* ── Contact ───────────────────────────────────────────── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding: 110px 60px;
  background: var(--ivory);
}

.contact-body {
  font-size: 14px;
  font-weight: 300;
  color: #5a5248;
  line-height: 1.9;
  margin: 24px 0 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #6a6058;
}

.contact-icon {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 52px;
  border: 1px solid var(--mist);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a7f72;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--ivory);
  border: 1px solid var(--mist);
  padding: 14px 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.05em;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 64px 60px;
}

.footer-inner {
  text-align: center;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
  opacity: 0.9;
}

.footer-name {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232,226,217,0.35);
  margin-bottom: 36px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 36px;
}

.footer-links a {
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(232,226,217,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-lt); }

.footer-copy {
  font-size: 11px;
  color: rgba(232,226,217,0.2);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav { padding: 20px 28px; }
  .nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .mobile-menu { display: flex; }

  .hero { padding: 0 28px; }
  .hero-scroll { left: 28px; }

  .stats { padding: 28px; flex-wrap: wrap; gap: 20px; }
  .stat { padding: 0 24px; }
  .stat-divider { display: none; }

  .portfolio { padding: 80px 28px; }
  .gallery { columns: 2; }

  .about {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 60px;
  }
  .about-visual { height: 380px; }

  .services { padding: 80px 28px; }
  .service-cards { grid-template-columns: 1fr; gap: 12px; }

  .contact {
    grid-template-columns: 1fr;
    padding: 80px 28px;
    gap: 48px;
  }
  .contact-form { padding: 36px 28px; }

  .footer { padding: 48px 28px; }
}

@media (max-width: 500px) {
  .gallery { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn { text-align: center; }
}
