/* ============================================================
   FlicksByNick — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ── CSS Variables ── */
:root {
  --black:     #0a0a0a;
  --dark:      #111111;
  --card-bg:   #161616;
  --gold:      #E8B84B;
  --gold-light:#F5D07A;
  --white:     #F8F6F1;
  --muted:     #8a8a8a;
  --navy:      #0D1B2A;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'DM Sans', Arial, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Typography Utilities ── */
.display-font {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 48px;
  text-transform: uppercase;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }

/* ── Buttons ── */
.btn-gold-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-gold-custom:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,184,75,0.35);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(248,246,241,0.35);
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

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

.btn-dark-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-dark-custom:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* ── Navbar ── */
#mainNav {
  background: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent);
  backdrop-filter: blur(2px);
  transition: background 0.3s, border-bottom 0.3s;
  padding: 0 64px;
  min-height: 72px;
}

#mainNav.scrolled {
  background: rgba(10,10,10,0.97) !important;
  border-bottom: 1px solid rgba(232,184,75,0.15);
}

#mainNav .navbar-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

#mainNav .navbar-brand span { color: var(--gold); }

#mainNav .nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248,246,241,0.8);
  padding: 0 0 2px 0 !important;
  margin: 0 20px;
  position: relative;
  transition: color 0.2s;
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active-link {
  color: var(--gold);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active-link::after {
  transform: scaleX(1);
}

#mainNav .navbar-toggler {
  border: none;
  padding: 4px;
  z-index: 1001;
  position: relative;
}

#mainNav .navbar-toggler:focus { box-shadow: none; }

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28248,246,241,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Fix mobile navbar collapse visibility */
@media (max-width: 991px) {
  #mainNav .navbar-collapse {
    justify-content: flex-start;
    background: rgba(10, 10, 10, 0.98);
    margin-top: 12px;
  }
  
  #mainNav .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  
  #mainNav .nav-link {
    margin: 0 !important;
    padding: 12px 0 !important;
  }
}

/* ── Hero ── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0);  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.05) 100%),
    linear-gradient(to top,    rgba(0,0,0,0.60) 0%, transparent 55%);
}

.hero-content {
  position: absolute;
  bottom: 14%;
  left: 64px;
  max-width: 700px;
  animation: fadeUp 1s ease 0.3s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.hero-subtitle {
  font-size: 1rem;
  color: rgba(248,246,241,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.03em;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Featured Work ── */
.featured-section { background: var(--dark); padding: 90px 64px; }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feat-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  cursor: pointer;
}

.feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-card:hover img { transform: scale(1.08); }

.feat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feat-card:hover .feat-card-overlay { opacity: 1; }

.feat-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feat-card:hover .feat-caption { transform: translateY(0); }

.feat-sport {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.feat-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
}

/* ── About Preview ── */
.about-preview-section { background: var(--black); padding: 100px 64px; }

.about-img-frame {
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: -14px; bottom: -14px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.about-img-frame > div {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  background: #1e1e1e;
  border: 1px solid rgba(232,184,75,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.about-img-frame > div span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.5);
}

.about-text-col p {
  color: rgba(248,246,241,0.65);
  line-height: 1.85;
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* ── CTA Strip ── */
.cta-strip {
  background: var(--gold);
  padding: 80px 64px;
  text-align: center;
}

.cta-strip .section-title { color: var(--black); margin-bottom: 14px; }
.cta-strip p { color: rgba(0,0,0,0.6); margin-bottom: 36px; font-size: 1rem; }

/* ── Footer ── */
.site-footer {
  background: #050505;
  padding: 48px 64px;
  border-top: 1px solid rgba(232,184,75,0.12);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-transform: uppercase;
}
.footer-brand span { color: var(--gold); }

.footer-email { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.1em; }

.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(248,246,241,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  margin: 0 4px;
}

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

.footer-copy { font-size: 0.7rem; color: rgba(138,138,138,0.5); letter-spacing: 0.1em; }

/* ── About Page ── */
.about-hero-section {
  position: relative;
  background: var(--dark);
  padding: 100px 64px;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.15);
  z-index: 0;
}

.about-content-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.about-hero-text {
  flex: 1;
  min-width: 300px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}

.about-portrait-section {
  flex: 1;
  min-width: 280px;
}

.portrait-placeholder {
  aspect-ratio: 3 / 4;
  background: #1e1e1e;
  border: 1px solid rgba(232,184,75,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  overflow: hidden;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.5);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

.stat-divider {
  border-top: 1px solid rgba(248,246,241,0.08);
  margin-top: 36px;
  padding-top: 36px;
}

.about-block { margin-bottom: 56px; }

.about-block h3 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.about-block h3 span { color: var(--gold); }

.about-block p {
  color: rgba(248,246,241,0.65);
  line-height: 1.9;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

/* ── Galleries ── */
.galleries-header { padding: 160px 64px 0; text-align: center; }

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 40px;
  padding: 0 64px;
}

.filter-btn {
  padding: 10px 28px;
  background: transparent;
  border: 1px solid rgba(248,246,241,0.15);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 64px 80px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--card-bg);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease-out, filter 0.35s ease-out;
}

.gallery-item.fade-in {
  animation: fadeInGallery 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes fadeInGallery {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.15);
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gallery-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.35s ease-out;
}

.gallery-item:hover .gallery-watermark {
  opacity: 0.3;
}

.gallery-watermark span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.3em;
  color: rgba(248,246,241,0.1);
  transform: rotate(-35deg);
  white-space: nowrap;
}

.gallery-sport-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  padding: 8px 12px;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.35s ease-out;
}

.gallery-item:hover .gallery-sport-tag {
  background: linear-gradient(to top, rgba(232,184,75,0.2) 0%, transparent 100%);
  padding: 12px 12px;
}

.placeholder-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(138,138,138,0.35);
}

/* ── Fullscreen Gallery Modal ── */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.gallery-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: -1;
}

.gallery-modal-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  max-width: 1400px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.gallery-modal-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  animation: scaleIn 0.3s ease-out;
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 3rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  padding: 0;
}

.gallery-modal-close:hover {
  color: var(--gold-light);
}

.gallery-modal-prev,
.gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(232, 184, 75, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 16px;
  transition: all 0.2s;
  z-index: 10;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  background: rgba(232, 184, 75, 0.4);
  color: var(--gold-light);
}

.gallery-modal-prev {
  left: -60px;
}

.gallery-modal-next {
  right: -60px;
}

.gallery-modal-counter {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Gallery modal bottom section */
.gallery-modal-bottom {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  text-align: center;
}

.gallery-modal-description {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.modal-desc-text {
  color: var(--gold);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0;
}

.gallery-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(232, 184, 75, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  font-size: 0.9rem;
  font-weight: 500;
}

.gallery-download-btn:hover {
  background: rgba(232, 184, 75, 0.4);
  color: var(--gold-light);
  border-color: var(--gold-light);
}

/* Scroll to top button */
.gallery-scroll-to-top {
  padding: 40px 0;
  text-align: center;
}

.scroll-to-top-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.15);
  border: 1px solid rgba(232, 184, 75, 0.4);
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.scroll-to-top-btn:hover {
  background: rgba(232, 184, 75, 0.3);
  border-color: var(--gold);
  transform: translateY(-4px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 768px) {
  .gallery-modal-prev,
  .gallery-modal-next {
    position: absolute;
    bottom: -50px;
    top: auto;
    transform: translateY(0);
    font-size: 1.5rem;
    padding: 8px 12px;
  }
  
  .gallery-modal-prev {
    left: 80px;
    right: auto;
  }
  
  .gallery-modal-next {
    right: 80px;
    left: auto;
  }
  
  .gallery-modal-content {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 50px;
  }
  
  .gallery-modal-close {
    top: 10px;
    right: 10px;
  }
  
  .gallery-modal-counter {
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
  }
}

.contact-header { padding: 160px 64px 60px; }

.contact-form-field { margin-bottom: 24px; }

.contact-form-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  background: rgba(248,246,241,0.04);
  border: 1px solid rgba(248,246,241,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
  border-radius: 0;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder { color: rgba(248,246,241,0.25); }

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--gold);
  background: rgba(232,184,75,0.04);
}

.contact-form-field textarea { height: 150px; }

.info-row {
  padding: 26px 0;
  border-bottom: 1px solid rgba(248,246,241,0.07);
}

.info-row:first-child { border-top: 1px solid rgba(248,246,241,0.07); }

.info-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.info-value { font-size: 0.95rem; color: var(--white); }

.social-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid rgba(248,246,241,0.12);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s;
  margin-right: 8px;
  margin-top: 8px;
}

.social-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ── Mobile Preview Page ── */
.mobile-preview-section {
  background: var(--dark);
  padding: 120px 48px 80px;
}

.phone-frame {
  width: 320px;
  border: 2px solid rgba(232,184,75,0.3);
  border-radius: 36px;
  overflow: hidden;
  background: var(--black);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-notch {
  height: 28px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-notch-bar {
  width: 72px; height: 4px;
  background: rgba(248,246,241,0.08);
  border-radius: 2px;
}

.m-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 14px;
  background: rgba(10,10,10,0.97);
}

.m-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.m-brand span { color: var(--gold); }

.m-hamburger { display: flex; flex-direction: column; gap: 4px; }
.m-hamburger span { display: block; width: 19px; height: 1.5px; background: var(--white); }

.m-hero-wrap {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.m-hero-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.m-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.15) 100%);
}

.m-hero-text {
  position: absolute;
  bottom: 22px; left: 18px; right: 18px;
}

.m-eyebrow {
  font-size: 0.54rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.m-title {
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 13px;
}

.m-btn {
  display: inline-block;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-section { padding: 22px 18px; }

.m-section-label {
  font-size: 0.54rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.m-section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.m-card { position: relative; margin-bottom: 3px; overflow: hidden; }
.m-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.m-card-tag {
  position: absolute; bottom: 7px; left: 8px;
  background: rgba(0,0,0,0.65);
  padding: 3px 7px;
  font-size: 0.52rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
}

.m-about-thumb {
  width: 74px; height: 74px;
  background: #1e1e1e;
  border: 1px solid rgba(232,184,75,0.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.m-about-text p {
  font-size: 0.68rem;
  line-height: 1.6;
  color: rgba(248,246,241,0.6);
  margin-bottom: 9px;
}

.m-about-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(232,184,75,0.4);
  color: var(--gold);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.m-cta-bar {
  background: var(--gold);
  padding: 20px 18px;
  text-align: center;
}

.m-cta-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 6px;
}

.m-cta-bar p { font-size: 0.63rem; color: rgba(0,0,0,0.52); margin-bottom: 12px; }

.m-cta-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--black);
  color: var(--white);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
}

.m-footer {
  padding: 14px 18px;
  background: #050505;
  text-align: center;
  border-top: 1px solid rgba(232,184,75,0.1);
}

.m-footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.m-footer-brand span { color: var(--gold); }
.m-footer p { font-size: 0.53rem; color: var(--muted); }

/* Dropdown frame */
.m-dropdown {
  background: rgba(10,10,10,0.99);
  border-top: 1px solid rgba(232,184,75,0.14);
}

.m-dropdown ul { list-style: none; padding-bottom: 12px; }

.m-dropdown li { border-bottom: 1px solid rgba(248,246,241,0.05); }

.m-dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.m-dropdown .sub-link a {
  padding-left: 34px;
  font-size: 0.72rem;
  color: var(--muted);
}

.m-dropdown .sub-link a::before { content: '→ '; color: var(--gold); }

.m-hero-dim {
  position: relative; height: 240px; overflow: hidden; opacity: 0.35;
}

.m-hero-dim img { width: 100%; height: 100%; object-fit: cover; }

.phone-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}

/* ── Page visibility ── */
.site-page { display: none; }
.site-page.active { display: block; }

/* ── Page Switcher ── */
#pageSwitcher {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  gap: 4px;
  background: rgba(10,10,10,0.92);
  border: 1px solid rgba(232,184,75,0.2);
  padding: 6px;
  backdrop-filter: blur(10px);
}

.sw-btn {
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--muted);
  transition: all 0.2s;
}

.sw-btn.active,
.sw-btn:hover {
  background: var(--gold);
  color: var(--black);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  #mainNav { padding: 0 24px; }

  .hero-content { left: 24px; right: 24px; }

  .featured-section { padding: 60px 24px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }

  .about-preview-section { padding: 60px 24px; }

  .cta-strip { padding: 60px 24px; }

  .site-footer { padding: 40px 24px; }

  .galleries-header { padding: 140px 24px 0; }
  .filter-bar { padding: 0 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px 60px; }

  .contact-header { padding: 140px 24px 40px; }

  .about-hero { padding: 140px 24px 60px; }

  .about-hero-section { padding: 60px 24px; }
  .about-content-row { flex-direction: column; gap: 40px; }

  .mobile-preview-section { padding: 100px 24px 60px; }
  .mobile-frame-wrap { flex-direction: column; align-items: center; }

  #pageSwitcher { bottom: 12px; padding: 4px; }
  .sw-btn { padding: 6px 10px; font-size: 0.58rem; }
}

@media (max-width: 575px) {
  .feat-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-content-row { flex-direction: column; gap: 30px; }
  .about-hero-section { padding: 40px 24px; }
  .contact-body-section { padding: 0 24px 60px; }
}

/* ── Utility classes to replace inline styles ── */

/* Navbar container */
.nav-container { padding: 0 64px; }

/* About preview row */
.about-preview-row { max-width: 1200px; }

/* CTA label on gold bg */
.cta-label-dark { color: rgba(0,0,0,0.5); }

/* About body section */
.about-body-section {
  background: var(--dark);
  padding: 80px 64px 90px;
}

.about-body-row { width: 100%; }

/* Contact body section */
.contact-body-section { padding: 0 64px 100px; }
.contact-body-row { max-width: 1100px; }

.contact-image-box {
  aspect-ratio: 3 / 4;
  background: #1e1e1e;
  border: 1px solid rgba(232,184,75,0.2);
  overflow: hidden;
  width: 100%;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Mobile section backgrounds */
.m-section-dark { background: var(--dark); }
.m-section-black { background: var(--black); }

/* Mobile footer copyright spacing */
.m-footer-copy { margin-top: 3px; }

/* Phone frame variant (dropdown) */
.phone-frame-dropdown { border-radius: 36px 36px 12px 12px; }

/* Mobile close button */
.m-close-btn {
  font-size: 1rem;
  color: var(--muted);
}

/* Mobile dropdown active link */
.m-dropdown-active { color: var(--gold); }

/* ── New utility classes (replacing former inline styles) ── */

/* Navbar container padding */
.nav-container { padding: 0 0px; }

/* Featured section header row */
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

/* About preview row max-width */
.about-preview-row { max-width: 1200px; }

/* About img placeholder inner div */
.about-img-placeholder {
  aspect-ratio: 4 / 5;
  background: #1e1e1e;
  border: 1px solid rgba(232,184,75,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  overflow: hidden;
}

.about-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-placeholder span {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,184,75,0.5);
}

/* CTA label colour on gold background */
.cta-label-dark { color: rgba(0,0,0,0.5); }


/* Contact body section */
.contact-body-section { padding: 0 64px 100px; }
.contact-body-row { max-width: 1100px; }

/* Contact socials block */
.contact-socials-wrap { margin-top: 32px; }
.contact-socials { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 10px;  }

/* Full-width button */
.btn-full { width: 100%; justify-content: center; }

/* Footer inner layout */
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand {
  flex: 1;
}
.footer-copy {
  flex: 1;
  text-align: right;
}
.footer-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  text-align: center;
}

@media (max-width: 991px) {
  .nav-container { padding: 0 24px; }
  .about-body-section { padding: 60px 24px 70px; }
  .contact-body-section { padding: 0 24px 60px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

.about-hero {
  position: relative;
  padding: 160px 64px 80px;
  overflow: hidden;
  background: var(--dark);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.15);
  z-index: 0;
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — Full Hero Layout
   Add these styles to your style.css (replace all old about-page rules)
══════════════════════════════════════════════════════════ */

/* Remove old conflicting about-body-section display:none */
.about-body-section {
  display: block !important;
}

/* ── Full-page hero container ── */
.about-full-hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 64px 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background image */
.about-full-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}

/* Dark overlay so text is readable */
.about-full-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}

/* Everything sits above the overlay */
.about-full-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  flex: 1;
}

/* Top label row */
.about-top-label {
  margin-bottom: 36px;
}

/* ── Two-column layout ── */
.about-two-col {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}

/* ── LEFT column ── */
.about-left-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Portrait frame with gold border accent */
.about-portrait-wrap {
  position: relative;
  width: 100%;
}

.about-portrait-wrap::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.about-portrait-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(232,184,75,0.2);
}

/* Stats row below photo */
.about-stats-row {
  display: flex;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid rgba(248,246,241,0.1);
  padding-top: 28px;
}

.about-stat {
  flex: 1;
  padding-right: 16px;
}

.about-stat:not(:last-child) {
  border-right: 1px solid rgba(248,246,241,0.08);
  margin-right: 16px;
}

/* Button below stats in left column */
.about-left-btn {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}

/* ── RIGHT column ── */
.about-right-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

/* Main title */
.about-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 40px;
}

/* Text blocks */
.about-text-block {
  margin-bottom: 32px;
}

.about-block-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.about-block-heading span {
  color: var(--gold);
}

.about-text-block p {
  color: rgba(248,246,241,0.65);
  line-height: 1.85;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .about-full-hero {
    padding: 100px 24px 60px;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-portrait-wrap::before {
    display: none;
  }

  .about-portrait-photo {
    aspect-ratio: 4 / 3;
    max-height: 360px;
    width: 100%;
    object-position: center top;
  }

  .about-stats-row {
    margin-top: 28px;
  }

  .about-main-title {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
    margin-bottom: 28px;
  }
}

@media (max-width: 575px) {
  .about-full-hero {
    padding: 90px 20px 50px;
  }

  .about-stats-row {
    gap: 0;
  }

  .about-two-col {
    gap: 32px;
  }
}

/* ══════════════════════════════════════════════════════════
   CONTACT PAGE — Wider Layout
══════════════════════════════════════════════════════════ */

#page-contact .contact-header {
  padding: 140px 64px 48px;
}

#page-contact .contact-body-section {
  padding: 0 64px 100px;
}

#page-contact .contact-body-row {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 991px) {
  #page-contact .contact-header {
    padding: 120px 24px 40px;
  }
  #page-contact .contact-body-section {
    padding: 0 24px 60px;
  }
}

/* ══════════════════════════════════════════════════════════
   ABOUT PAGE — Hero Scroll Indicator
══════════════════════════════════════════════════════════ */

.about-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  animation: aboutBounce 2s infinite;
}

@keyframes aboutBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.about-hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

.about-hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}